mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-17 10:24:23 +01:00
Change recipe and add advancement for crafting the unicorn amulet
This commit is contained in:
parent
67c54cf644
commit
bee6d39a96
5 changed files with 69 additions and 5 deletions
|
@ -899,7 +899,9 @@
|
|||
"advancements.unicopia.love_is_power.description": "Banish King Sombra with a Crystal Heart",
|
||||
"advancements.unicopia.save_the_day.title": "Save the Day",
|
||||
"advancements.unicopia.save_the_day.description": "Defeat King Sombra once and for all",
|
||||
"advancements.unicopia.doctor_sombrero.title": "Doctor Sombrero",
|
||||
"advancements.unicopia.ascension.title": "Ascension",
|
||||
"advancements.unicopia.ascension.description": "Ascension",
|
||||
"advancements.unicopia.doctor_sombrero.title": "Complete Sombra's Work",
|
||||
"advancements.unicopia.doctor_sombrero.description": "That's not mare-iachi!",
|
||||
|
||||
"unicopia.toast.discoveries.title": "New Discoveries!",
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"unicopia:unicorn_amulet"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_ingredients": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "items": [ "unicopia:broken_alicorn_amulet" ] }
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "unicopia:broken_alicorn_amulet"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_ingredients",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"parent": "unicopia:unicopia/save_the_day",
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "unicopia:alicorn_amulet"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.unicopia.ascension.title"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancements.unicopia.ascension.description"
|
||||
},
|
||||
"frame": "goal",
|
||||
"show_toast": true,
|
||||
"announce_to_chat": true,
|
||||
"hidden": false
|
||||
},
|
||||
"criteria": {
|
||||
"obtain_the_thing": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "items": [ "unicopia:unicorn_amulet" ] }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[ "obtain_the_thing" ]
|
||||
]
|
||||
}
|
|
@ -10,7 +10,7 @@
|
|||
"description": {
|
||||
"translate": "advancements.unicopia.save_the_day.description"
|
||||
},
|
||||
"frame": "goal",
|
||||
"frame": "challenge",
|
||||
"show_toast": true,
|
||||
"announce_to_chat": true,
|
||||
"hidden": false
|
||||
|
|
|
@ -5,9 +5,10 @@
|
|||
},
|
||||
"traits": {},
|
||||
"ingredients": [
|
||||
{ "item": "unicopia:crystal_shard" },
|
||||
{ "item": "unicopia:crystal_shard" },
|
||||
{ "item": "unicopia:crystal_shard" }
|
||||
{ "item": "unicopia:pegasus_amulet" },
|
||||
{ "item": "unicopia:crystal_heart" },
|
||||
{ "item": "unicopia:grogars_bell" },
|
||||
{ "item": "minecraft:totem_of_undying" }
|
||||
],
|
||||
"result": {
|
||||
"item": "unicopia:unicorn_amulet"
|
||||
|
|
Loading…
Reference in a new issue