mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-08 06:26:43 +01:00
Added imported oats advancement
This commit is contained in:
parent
635d77041c
commit
a393a9137a
2 changed files with 37 additions and 0 deletions
|
@ -566,6 +566,8 @@
|
||||||
"advancements.unicopia.feed_trick_apple.description": "Feed a zap apple to a mob",
|
"advancements.unicopia.feed_trick_apple.description": "Feed a zap apple to a mob",
|
||||||
"advancements.unicopia.eat_trick_apple.title": "Crunchy",
|
"advancements.unicopia.eat_trick_apple.title": "Crunchy",
|
||||||
"advancements.unicopia.eat_trick_apple.description": "Bite into a zap apple",
|
"advancements.unicopia.eat_trick_apple.description": "Bite into a zap apple",
|
||||||
|
"advancements.unicopia.imported_oats.title": "As Delicious As They Are Expensive",
|
||||||
|
"advancements.unicopia.imported_oats.description": "Send of receive fancy imported oats",
|
||||||
|
|
||||||
"advancements.unicopia.burn_juice.title": "That doesn't seem right",
|
"advancements.unicopia.burn_juice.title": "That doesn't seem right",
|
||||||
"advancements.unicopia.burn_juice.description": "Burn the juice",
|
"advancements.unicopia.burn_juice.description": "Burn the juice",
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "unicopia:unicopia/root",
|
||||||
|
"display": {
|
||||||
|
"icon": {
|
||||||
|
"item": "unicopia:imported_oats"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.unicopia.imported_oats.title"
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.unicopia.imported_oats.description"
|
||||||
|
},
|
||||||
|
"frame": "task",
|
||||||
|
"show_toast": true,
|
||||||
|
"announce_to_chat": true,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"send_oats": {
|
||||||
|
"trigger": "unicopia:custom",
|
||||||
|
"conditions": {
|
||||||
|
"event": "send_oats"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"receive_oats": {
|
||||||
|
"trigger": "unicopia:custom",
|
||||||
|
"conditions": {
|
||||||
|
"event": "receive_oats"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[ "send_oats", "receive_oats" ]
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue