Added spellbook and alicorn amulet recipes

This commit is contained in:
Sollace 2022-01-12 11:32:13 +02:00
parent 57d43c8413
commit 10af9e6f49
3 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"unicopia:spellbook"
]
},
"criteria": {
"has_ingredients": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{ "items": [ "unicopia:gemstone" ] }
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "unicopia:spellbook"
}
}
},
"requirements": [
[
"has_ingredients",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,13 @@
{
"type": "unicopia:spellbook/crafting",
"material": {
"item": { "item": "unicopia:gemstone" },
"spell": "unicopia:dark_vortex"
},
"traits": {
"darkness": 30, "power": 30, "blood": 30
},
"result": {
"item": "unicopia:alicorn_amulet"
}
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{ "item": "unicopia:gemstone" },
{ "item": "minecraft:book" }
],
"result": { "item": "unicopia:spellbook" }
}