This commit is contained in:
Vos
2025-11-11 00:35:31 -06:00
parent 40b8500fee
commit 8582abbf4e
22 changed files with 439 additions and 73 deletions
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_green_dye": {
"conditions": {
"items": [
{
"items": "minecraft:green_dye"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:lizard_planks"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_green_dye"
]
],
"rewards": {
"recipes": [
"acesbs:lizard_planks"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_lizard_planks": {
"conditions": {
"items": [
{
"items": "acesbs:lizard_planks"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:lizard_button"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_lizard_planks"
]
],
"rewards": {
"recipes": [
"acesbs:lizard_button"
]
}
}
@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"category": "redstone",
"ingredients": [
{
"item": "acesbs:lizard_planks"
}
],
"result": {
"count": 1,
"id": "acesbs:lizard_button"
}
}
@@ -0,0 +1,28 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
{
"item": "minecraft:birch_planks"
},
{
"item": "minecraft:birch_planks"
},
{
"item": "minecraft:birch_planks"
},
{
"item": "minecraft:birch_planks"
},
{
"item": "acesbs:raw_entropy"
},
{
"item": "minecraft:green_dye"
}
],
"result": {
"count": 4,
"id": "acesbs:lizard_planks"
}
}