Finally added endtopy blocks and made the raw entropy block have a consistant name

This commit is contained in:
Vos
2026-03-10 17:51:42 -05:00
parent b9d5ede404
commit bb6f0c34cf
42 changed files with 486 additions and 47 deletions
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_raw_endtropy_block": {
"conditions": {
"items": [
{
"items": "acesbs:raw_endtropy_block"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:raw_endtropy"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_raw_endtropy_block"
]
],
"rewards": {
"recipes": [
"acesbs:raw_endtropy"
]
}
}
@@ -1,11 +1,11 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_entropy_block": {
"has_raw_entropy_block": {
"conditions": {
"items": [
{
"items": "acesbs:entropy_block"
"items": "acesbs:raw_entropy_block"
}
]
},
@@ -21,7 +21,7 @@
"requirements": [
[
"has_the_recipe",
"has_entropy_block"
"has_raw_entropy_block"
]
],
"rewards": {
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_stable_endtropy_block": {
"conditions": {
"items": [
{
"items": "acesbs:stable_endtropy_block"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:stable_endtropy"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_stable_endtropy_block"
]
],
"rewards": {
"recipes": [
"acesbs:stable_endtropy"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_raw_endtropy": {
"conditions": {
"items": [
{
"items": "acesbs:raw_endtropy"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:raw_endtropy_block"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_raw_endtropy"
]
],
"rewards": {
"recipes": [
"acesbs:raw_endtropy_block"
]
}
}
@@ -13,7 +13,7 @@
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:entropy_block"
"recipe": "acesbs:raw_entropy_block"
},
"trigger": "minecraft:recipe_unlocked"
}
@@ -26,7 +26,7 @@
],
"rewards": {
"recipes": [
"acesbs:entropy_block"
"acesbs:raw_entropy_block"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_stable_endtropy": {
"conditions": {
"items": [
{
"items": "acesbs:stable_endtropy"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:stable_endtropy_block"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_stable_endtropy"
]
],
"rewards": {
"recipes": [
"acesbs:stable_endtropy_block"
]
}
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "acesbs:raw_endtropy_block"
}
],
"rolls": 1.0
}
]
}
@@ -11,7 +11,7 @@
"entries": [
{
"type": "minecraft:item",
"name": "acesbs:entropy_block"
"name": "acesbs:raw_entropy_block"
}
],
"rolls": 1.0
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "acesbs:stable_endtropy_block"
}
],
"rolls": 1.0
}
]
}
@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
{
"item": "acesbs:raw_endtropy_block"
}
],
"result": {
"count": 9,
"id": "acesbs:raw_endtropy"
}
}
@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "acesbs:raw_endtropy"
}
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "acesbs:raw_endtropy_block"
}
}
@@ -3,7 +3,7 @@
"category": "building",
"ingredients": [
{
"item": "acesbs:entropy_block"
"item": "acesbs:raw_entropy_block"
}
],
"result": {
@@ -13,6 +13,6 @@
],
"result": {
"count": 1,
"id": "acesbs:entropy_block"
"id": "acesbs:raw_entropy_block"
}
}
@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
{
"item": "acesbs:stable_endtropy_block"
}
],
"result": {
"count": 9,
"id": "acesbs:stable_endtropy"
}
}
@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "acesbs:stable_endtropy"
}
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "acesbs:stable_endtropy_block"
}
}
@@ -1,7 +1,9 @@
{
"values": [
"acesbs:entropy_block",
"acesbs:raw_entropy_block",
"acesbs:stable_entropy_block",
"acesbs:raw_endtropy_block",
"acesbs:stable_endtropy_block",
"acesbs:prisma_steel_block",
"acesbs:entropy_ore",
"acesbs:deepslate_entropy_ore",
@@ -3,8 +3,10 @@
"acesbs:entropy_ore",
"acesbs:deepslate_entropy_ore",
"acesbs:endtropy_ore",
"acesbs:entropy_block",
"acesbs:raw_entropy_block",
"acesbs:stable_entropy_block",
"acesbs:raw_endtropy_block",
"acesbs:stable_endtropy_block",
"acesbs:prisma_steel_block",
"acesbs:entropic_stabilizer",
"acesbs:entropic_eviscerator",