-
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.
- Loading branch information
1 parent
cc8eb47
commit 6d23b3f
Showing
35 changed files
with
1,095 additions
and
2 deletions.
There are no files selected for viewing
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" | ||
} | ||
} | ||
} |
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/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" | ||
} |
57 changes: 57 additions & 0 deletions
57
src/generated/resources/data/vampirism/advancements/recipes/misc/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,57 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_glass": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"tag": "forge:glass" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_mother_core": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"vampirism:mother_core" | ||
] | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_obsidian": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"tag": "forge:obsidian" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "vampirism:vampire_beacon" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_mother_core", | ||
"has_obsidian", | ||
"has_glass", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"vampirism:vampire_beacon" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
27 changes: 27 additions & 0 deletions
27
src/generated/resources/data/vampirism/loot_tables/blocks/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,27 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"bonus_rolls": 0.0, | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
], | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"functions": [ | ||
{ | ||
"function": "minecraft:copy_name", | ||
"source": "block_entity" | ||
} | ||
], | ||
"name": "vampirism:vampire_beacon" | ||
} | ||
], | ||
"rolls": 1.0 | ||
} | ||
], | ||
"random_sequence": "vampirism:blocks/vampire_beacon" | ||
} |
24 changes: 24 additions & 0 deletions
24
src/generated/resources/data/vampirism/recipes/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,24 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"C": { | ||
"item": "vampirism:mother_core" | ||
}, | ||
"G": { | ||
"tag": "forge:glass" | ||
}, | ||
"O": { | ||
"tag": "forge:obsidian" | ||
} | ||
}, | ||
"pattern": [ | ||
"GGG", | ||
"GCG", | ||
"OOO" | ||
], | ||
"result": { | ||
"item": "vampirism:vampire_beacon" | ||
}, | ||
"show_notification": true | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/data/vampirism/tags/blocks/vampire_beacon_base_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" | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
src/generated/resources/data/vampirism/tags/items/vampire_beacon_payment_item.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 @@ | ||
{ | ||
"values": [ | ||
"#vampirism:pure_blood", | ||
"#vampirism:heart", | ||
"vampirism:soul_orb_vampire" | ||
] | ||
} |
Oops, something went wrong.