Add wooden paxel recipe unlock

* This serves as another hint for players of what to do
* Behaviour mirrored from vanilla wooden tools unlock
This commit is contained in:
Sergeant Acoustic 2025-09-04 05:24:51 +01:00
parent 955d5ddcc1
commit 3a05b2edfc

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_stick": {
"conditions": {
"items": [
{
"items": [
"minecraft:stick"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "paxelsfordummies:wooden_paxel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_stick",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"paxelsfordummies:wooden_paxel"
]
},
"sends_telemetry_event": false
}