Entangler Recipe stuff

This commit is contained in:
Vos
2026-02-01 00:32:40 -06:00
parent 1db879dbf6
commit 44663e8b3e
15 changed files with 343 additions and 15 deletions
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_raw_entropy": {
"conditions": {
"items": [
{
"items": "acesbs:raw_entropy"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:entropic_entangler"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_raw_entropy"
]
],
"rewards": {
"recipes": [
"acesbs:entropic_entangler"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_stonecutter": {
"conditions": {
"items": [
{
"items": "minecraft:stonecutter"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:entropic_eviscerator"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_stonecutter"
]
],
"rewards": {
"recipes": [
"acesbs:entropic_eviscerator"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_raw_entropy": {
"conditions": {
"items": [
{
"items": "acesbs:raw_entropy"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:entropic_stabilizer"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_raw_entropy"
]
],
"rewards": {
"recipes": [
"acesbs:entropic_stabilizer"
]
}
}
@@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"B": {
"item": "minecraft:bucket"
},
"G": {
"item": "minecraft:gold_block"
},
"I": {
"item": "minecraft:iron_ingot"
},
"S": {
"item": "acesbs:stable_entropy"
}
},
"pattern": [
"ISI",
"BGB",
"ISI"
],
"result": {
"count": 1,
"id": "acesbs:entropic_entangler"
}
}
@@ -0,0 +1,24 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"E": {
"item": "acesbs:stable_entropy"
},
"I": {
"item": "minecraft:iron_ingot"
},
"S": {
"item": "minecraft:stonecutter"
}
},
"pattern": [
"III",
"SES",
"III"
],
"result": {
"count": 1,
"id": "acesbs:entropic_eviscerator"
}
}
@@ -0,0 +1,24 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"B": {
"item": "minecraft:blue_ice"
},
"I": {
"item": "minecraft:iron_ingot"
},
"R": {
"item": "acesbs:raw_entropy"
}
},
"pattern": [
"IRI",
"IBI",
"III"
],
"result": {
"count": 1,
"id": "acesbs:entropic_stabilizer"
}
}