Ghost block fix

Fixed the ClientHandler method for rendering the Ritual's ghost block.
This commit is contained in:
WayofTime 2020-10-25 11:28:44 -04:00
parent 3f158b8908
commit 9a274186b7
5 changed files with 72 additions and 16 deletions
src/generated/resources/data/bloodmagic
advancements/recipes/bloodmagictab
recipes

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"bloodmagic:lava_crystal"
]
},
"criteria": {
"has_weak_orb": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "bloodmagic:weakbloodorb"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "bloodmagic:lava_crystal"
}
}
},
"requirements": [
[
"has_weak_orb",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,29 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"aba",
"bcb",
"ded"
],
"key": {
"a": {
"tag": "forge:glass"
},
"b": {
"item": "minecraft:lava_bucket"
},
"c": {
"type": "bloodmagic:bloodorb",
"orb_tier": 1
},
"d": {
"tag": "forge:obsidian"
},
"e": {
"tag": "forge:gems/diamond"
}
},
"result": {
"item": "bloodmagic:lavacrystal"
}
}