Skip to content

Commit

Permalink
introduce pure blood infusion
Browse files Browse the repository at this point in the history
- infuse material to craft pure blood infused vampire sword
  • Loading branch information
Cheaterpaul committed Jan 26, 2025
1 parent 639c02b commit f5db9c4
Show file tree
Hide file tree
Showing 335 changed files with 9,339 additions and 515 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ forge_version=21.4.46-beta
forge_version_range=[21.4.46-beta,)
loader_version_range=[4,)
pack_format_number=18
neogradle.subsystems.parchment.minecraftVersion=1.21
neogradle.subsystems.parchment.mappingsVersion=2024.07.07
neogradle.subsystems.parchment.minecraftVersion=1.21.4
neogradle.subsystems.parchment.mappingsVersion=2025.01.19

# mod
mod_id=vampirism
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@ public static class Keys {
public static final ResourceLocation FACTION_RESTRICTION = VResourceLocation.mod("faction_restriction");
public static final ResourceLocation FACTION_SLAYER = VResourceLocation.mod("faction_slayer");
public static final ResourceLocation DROP_VAMPIRE_SOUL = VResourceLocation.mod("drop_vampire_soul");
public static final ResourceLocation PURE_LEVEL = VResourceLocation.mod("pure_level");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"multipart": [
{
"apply": {
"model": "vampirism:block/blood_infuser/infuser"
}
},
{
"apply": {
"model": "vampirism:block/blood_infuser/infuser_blood"
},
"when": {
"active": "true"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/blood_infused_diamond"
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/blood_infused_gold_ingot"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/blood_infused_netherite_ingot"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/blood_infused_raw_gold"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/blood_infused_raw_iron"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:block/blood_infuser/infuser"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/heart_striker_normal"
"model": "vampirism:item/diamond_heart_seeker"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/diamond_heart_striker"
}
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/heart_seeker_normal"
"model": "vampirism:item/iron_heart_seeker"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/iron_heart_striker"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/netherite_heart_seeker"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "vampirism:item/netherite_heart_striker"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "vampirism:item/blood_infused_diamond"
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "vampirism:item/blood_infused_gold_ingot"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "vampirism:item/blood_infused_netherite_ingot"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "vampirism:item/blood_infused_raw_gold"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "vampirism:item/blood_infused_raw_iron"
}
}
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_heart_seeker": {
"has_blood_infused_diamond": {
"conditions": {
"items": [
{
"items": "vampirism:heart_seeker_enhanced"
"items": "vampirism:blood_infused_diamond"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "vampirism:vampire/heart_seeker_enhanced_repair"
"recipe": "minecraft:heart_seeker_enhanced_pure_0"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_heart_seeker"
"has_blood_infused_diamond"
]
],
"rewards": {
"recipes": [
"vampirism:vampire/heart_seeker_enhanced_repair"
"minecraft:heart_seeker_enhanced_pure_0"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_blood_infused_diamond": {
"conditions": {
"items": [
{
"items": "vampirism:blood_infused_diamond"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:heart_seeker_enhanced_pure_1"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_blood_infused_diamond"
]
],
"rewards": {
"recipes": [
"minecraft:heart_seeker_enhanced_pure_1"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_blood_infused_diamond": {
"conditions": {
"items": [
{
"items": "vampirism:blood_infused_diamond"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:heart_seeker_enhanced_pure_2"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_blood_infused_diamond"
]
],
"rewards": {
"recipes": [
"minecraft:heart_seeker_enhanced_pure_2"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_blood_infused_diamond": {
"conditions": {
"items": [
{
"items": "vampirism:blood_infused_diamond"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:heart_seeker_enhanced_pure_3"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_blood_infused_diamond"
]
],
"rewards": {
"recipes": [
"minecraft:heart_seeker_enhanced_pure_3"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_blood_infused_diamond": {
"conditions": {
"items": [
{
"items": "vampirism:blood_infused_diamond"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:heart_seeker_enhanced_pure_4"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_blood_infused_diamond"
]
],
"rewards": {
"recipes": [
"minecraft:heart_seeker_enhanced_pure_4"
]
}
}
Loading

0 comments on commit f5db9c4

Please sign in to comment.