-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add blood infused iron storage blocks as base
- Loading branch information
1 parent
73f2037
commit 1d03696
Showing
67 changed files
with
1,708 additions
and
6 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/generated/resources/assets/vampirism/blockstates/blood_infused_enhanced_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "vampirism:block/blood_infused_enhanced_iron_block" | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/generated/resources/assets/vampirism/blockstates/blood_infused_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "vampirism:block/blood_infused_iron_block" | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/generated/resources/assets/vampirism/blockstates/vampire_beacon.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "vampirism:block/vampire_beacon" | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/vampirism/models/block/blood_infused_enhanced_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "minecraft:block/cube_all", | ||
"textures": { | ||
"all": "vampirism:block/blood_infused_enhanced_iron_block" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/vampirism/models/block/blood_infused_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "minecraft:block/cube_all", | ||
"textures": { | ||
"all": "vampirism:block/blood_infused_iron_block" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/generated/resources/assets/vampirism/models/block/vampire_beacon.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "minecraft:block/beacon", | ||
"render_type": "minecraft:cutout", | ||
"textures": { | ||
"beacon": "vampirism:block/vampire_beacon" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/vampirism/models/item/blood_infused_enhanced_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"parent": "vampirism:block/blood_infused_enhanced_iron_block" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/vampirism/models/item/blood_infused_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"parent": "vampirism:block/blood_infused_iron_block" | ||
} |
5 changes: 4 additions & 1 deletion
5
src/generated/resources/assets/vampirism/models/item/cursed_hanging_roots.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{ | ||
"parent": "vampirism:block/cursed_hanging_roots" | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "vampirism:block/cursed_hanging_roots" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/vampirism/models/item/vampire_beacon.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"parent": "vampirism:block/vampire_beacon" | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/data/forge/tags/blocks/storage_blocks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"values": [ | ||
"vampirism:blood_infused_iron_block", | ||
"vampirism:blood_infused_enhanced_iron_block" | ||
] | ||
} |
35 changes: 35 additions & 0 deletions
35
...ata/minecraft/advancements/recipes/building_blocks/blood_infused_enhanced_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_blood_infused_enhanced_iron_ingot": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"vampirism:blood_infused_enhanced_iron_ingot" | ||
] | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "minecraft:blood_infused_enhanced_iron_block" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_blood_infused_enhanced_iron_ingot", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"minecraft:blood_infused_enhanced_iron_block" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
35 changes: 35 additions & 0 deletions
35
...ata/minecraft/advancements/recipes/building_blocks/blood_infused_enhanced_iron_ingot.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_blood_infused_enhanced_iron_block": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"vampirism:blood_infused_enhanced_iron_block" | ||
] | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "minecraft:blood_infused_enhanced_iron_ingot" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_blood_infused_enhanced_iron_block", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"minecraft:blood_infused_enhanced_iron_ingot" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
35 changes: 35 additions & 0 deletions
35
...sources/data/minecraft/advancements/recipes/building_blocks/blood_infused_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_blood_infused_iron_ingot": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"vampirism:blood_infused_iron_ingot" | ||
] | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "minecraft:blood_infused_iron_block" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_blood_infused_iron_ingot", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"minecraft:blood_infused_iron_block" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
35 changes: 35 additions & 0 deletions
35
...sources/data/minecraft/advancements/recipes/building_blocks/blood_infused_iron_ingot.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_blood_infused_iron_block": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"vampirism:blood_infused_iron_block" | ||
] | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "minecraft:blood_infused_iron_ingot" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_blood_infused_iron_block", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"minecraft:blood_infused_iron_ingot" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
18 changes: 18 additions & 0 deletions
18
src/generated/resources/data/minecraft/recipes/blood_infused_enhanced_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "building", | ||
"key": { | ||
"#": { | ||
"item": "vampirism:blood_infused_enhanced_iron_ingot" | ||
} | ||
}, | ||
"pattern": [ | ||
"###", | ||
"###", | ||
"###" | ||
], | ||
"result": { | ||
"item": "vampirism:blood_infused_enhanced_iron_block" | ||
}, | ||
"show_notification": true | ||
} |
13 changes: 13 additions & 0 deletions
13
src/generated/resources/data/minecraft/recipes/blood_infused_enhanced_iron_ingot.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"category": "building", | ||
"ingredients": [ | ||
{ | ||
"item": "vampirism:blood_infused_enhanced_iron_block" | ||
} | ||
], | ||
"result": { | ||
"count": 9, | ||
"item": "vampirism:blood_infused_enhanced_iron_ingot" | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/generated/resources/data/minecraft/recipes/blood_infused_iron_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "building", | ||
"key": { | ||
"#": { | ||
"item": "vampirism:blood_infused_iron_ingot" | ||
} | ||
}, | ||
"pattern": [ | ||
"###", | ||
"###", | ||
"###" | ||
], | ||
"result": { | ||
"item": "vampirism:blood_infused_iron_block" | ||
}, | ||
"show_notification": true | ||
} |
13 changes: 13 additions & 0 deletions
13
src/generated/resources/data/minecraft/recipes/blood_infused_iron_ingot.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"category": "building", | ||
"ingredients": [ | ||
{ | ||
"item": "vampirism:blood_infused_iron_block" | ||
} | ||
], | ||
"result": { | ||
"count": 9, | ||
"item": "vampirism:blood_infused_iron_ingot" | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...ents/recipes/alchemical_cauldron/blood_infused_enhanced_iron_ingot_from_pure_blood_4.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "vampirism:alchemical_cauldron/blood_infused_enhanced_iron_ingot_from_pure_blood_4" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"vampirism:alchemical_cauldron/blood_infused_enhanced_iron_ingot_from_pure_blood_4" | ||
] | ||
}, | ||
"sends_telemetry_event": true | ||
} |
22 changes: 22 additions & 0 deletions
22
.../advancements/recipes/alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "vampirism:alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_0" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"vampirism:alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_0" | ||
] | ||
}, | ||
"sends_telemetry_event": true | ||
} |
22 changes: 22 additions & 0 deletions
22
.../advancements/recipes/alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "vampirism:alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_1" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"vampirism:alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_1" | ||
] | ||
}, | ||
"sends_telemetry_event": true | ||
} |
22 changes: 22 additions & 0 deletions
22
.../advancements/recipes/alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "vampirism:alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_2" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"vampirism:alchemical_cauldron/blood_infused_iron_ingot_from_pure_blood_2" | ||
] | ||
}, | ||
"sends_telemetry_event": true | ||
} |
Oops, something went wrong.