mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 03:26:44 +01:00
Update some unlock conditions for certain recipes
This commit is contained in:
parent
6db30ff693
commit
ea9b0a02d6
3 changed files with 11 additions and 7 deletions
|
@ -2,7 +2,8 @@
|
|||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"unicopia:cider"
|
||||
"unicopia:cider",
|
||||
"unicopia:easy_cider"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
|
@ -19,12 +20,15 @@
|
|||
"conditions": {
|
||||
"recipe": "unicopia:cider"
|
||||
}
|
||||
},
|
||||
"has_the_easy_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "unicopia:easy_cider"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_ingredients",
|
||||
"has_the_recipe"
|
||||
]
|
||||
[ "has_ingredients", "has_the_recipe", "has_the_easy_recipe" ]
|
||||
]
|
||||
}
|
|
@ -10,7 +10,7 @@
|
|||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "items": [ "minecraft:leather" ] }
|
||||
{ "items": [ "minecraft:leather", "minecraft:string" ] }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "items": [ "unicopia:gemstone" ] }
|
||||
{ "items": [ "unicopia:gemstone", "unicopia:botched_gem" ] }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue