mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Added some more advancements
This commit is contained in:
parent
7abd4cbae6
commit
f59c1833e3
7 changed files with 125 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"parent": "unicopia:just_the_beginning",
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "unicopia:bag_of_holding"
|
||||
|
@ -11,7 +12,6 @@
|
|||
},
|
||||
"frame": "challenge"
|
||||
},
|
||||
"parent": "minecraft:adventure/root",
|
||||
"criteria": {
|
||||
"death_by_bag_of_holding": {
|
||||
"trigger": "unicopia:death_by_bag_of_holding",
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"parent": "unicopia:just_the_beginning",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"unicopia:spellbook"
|
||||
]
|
||||
},
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "unicopia:staff_meadow_brook"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.adventure.first_staff.title"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancements.adventure.first_staff.description"
|
||||
}
|
||||
},
|
||||
"criteria": {
|
||||
"meadow_brook": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "item": "unicopia:staff_meadow_brook" }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [ [ "meadow_brook" ] ]
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"parent": "unicopia:first_staff",
|
||||
"rewards": {
|
||||
"experience": 10
|
||||
},
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "unicopia:staff_meadow_brook"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.adventure.just_a_stick.title"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancements.adventure.just_a_stick.description"
|
||||
}
|
||||
},
|
||||
"criteria": {
|
||||
"break_brook": {
|
||||
"trigger": "minecraft:item_durability_changed",
|
||||
"conditions": {
|
||||
"item": {
|
||||
"item": "minecraft:diamond_hoe"
|
||||
},
|
||||
"durability": -1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"parent": "minecraft:adventure/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"unicopia:spellbook"
|
||||
]
|
||||
},
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "unicopia:spellbook"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.adventure.unicopia_beginning.title"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancements.adventure.unicopia_beginning.description"
|
||||
}
|
||||
},
|
||||
"criteria": {
|
||||
"gem": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "item": "unicopia:gem" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"curse": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "item": "unicopia:corrupted_gem" }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [ [ "gem", "curse" ] ]
|
||||
}
|
|
@ -246,4 +246,13 @@ advancements.adventure.bag_of_holding_2.description=Die by the Bag of Holding a
|
|||
advancements.adventure.bag_of_holding_3.title=Oh come on!
|
||||
advancements.adventure.bag_of_holding_3.description=-_-
|
||||
|
||||
effect.food_poisoning=Food Poisoning
|
||||
advancements.adventure.first_staff.title=Baby Steps
|
||||
advancements.adventure.first_staff.description=Craft your first staff
|
||||
|
||||
advancements.adventure.just_a_stick.title=Old 'n Busted
|
||||
advancements.adventure.just_a_stick.description=It's a stick. What did you expect?
|
||||
|
||||
advancements.adventure.unicopia_beginning.title=Just the beginning...
|
||||
advancements.adventure.unicopia_beginning.description=Found your first gem, but what can it do?
|
||||
|
||||
effect.food_poisoning=Food Poisoning
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
{ "item": "minecraft:stick" }
|
||||
],
|
||||
"#": [
|
||||
{ "item": "unicopia:gem" }
|
||||
{ "item": "unicopia:gem", "nbt": { "spell": "light" } }
|
||||
]
|
||||
},
|
||||
"result": { "item": "unicopia:enchanted_torch", "count": 1 }
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" /*",
|
||||
" / ",
|
||||
"/ "
|
||||
],
|
||||
"key": {
|
||||
"/": [
|
||||
{ "item": "minecraft:stick" }
|
||||
],
|
||||
"*": [
|
||||
{ "item": "unicopia:gem" }
|
||||
]
|
||||
},
|
||||
"result": { "item": "unicopia:staff_meadow_brook", "count": 1 }
|
||||
}
|
Loading…
Reference in a new issue