mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-21 12:24:22 +01:00
Add an advancement for brewing cider
This commit is contained in:
parent
86d9e3a2d8
commit
f970950bd4
2 changed files with 34 additions and 1 deletions
|
@ -410,5 +410,7 @@
|
||||||
"advancements.unicopia.juice.title": "Refreshing",
|
"advancements.unicopia.juice.title": "Refreshing",
|
||||||
"advancements.unicopia.juice.description": "Finally a use for all these apples",
|
"advancements.unicopia.juice.description": "Finally a use for all these apples",
|
||||||
"advancements.unicopia.sweet_apple_acres.title": "Sweet Apple Acres",
|
"advancements.unicopia.sweet_apple_acres.title": "Sweet Apple Acres",
|
||||||
"advancements.unicopia.sweet_apple_acres.description": "Obtain one of every apple"
|
"advancements.unicopia.sweet_apple_acres.description": "Obtain one of every apple",
|
||||||
|
"advancements.unicopia.brew_cider.title": "Applejack's Finest",
|
||||||
|
"advancements.unicopia.brew_cider.description": "Brew some cider"
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"parent": "unicopia:unicopia/burned_juice",
|
||||||
|
"display": {
|
||||||
|
"icon": {
|
||||||
|
"item": "unicopia:cider"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.unicopia.brew_cider.title"
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.unicopia.brew_cider.description"
|
||||||
|
},
|
||||||
|
"frame": "task",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_cider": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{ "item": "unicopia:cider" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[ "has_cider" ]
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue