Ashes and Endtropy

This commit is contained in:
Vos
2025-11-18 21:49:08 -06:00
parent f931d2f5e2
commit e8b1d8cc55
26 changed files with 245 additions and 14 deletions
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "acesbs:block/infernal_ashes_block"
}
}
}
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "acesbs:block/infernal_ashes_block"
}
}
@@ -0,0 +1,3 @@
{
"parent": "acesbs:block/infernal_ashes_block"
}
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "acesbs:item/raw_endtropy"
}
}
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "acesbs:item/stable_endtropy"
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_infernal_ashes_block": {
"conditions": {
"items": [
{
"items": "acesbs:infernal_ashes_block"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:infernal_ashes"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_infernal_ashes_block"
]
],
"rewards": {
"recipes": [
"acesbs:infernal_ashes"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_infernal_ashes": {
"conditions": {
"items": [
{
"items": "acesbs:infernal_ashes"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:infernal_ashes_block"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_infernal_ashes"
]
],
"rewards": {
"recipes": [
"acesbs:infernal_ashes_block"
]
}
}
@@ -13,7 +13,7 @@
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:stable_entropy_from_blasting_endtropy_ore"
"recipe": "acesbs:stable_endtropy_from_blasting_endtropy_ore"
},
"trigger": "minecraft:recipe_unlocked"
}
@@ -26,7 +26,7 @@
],
"rewards": {
"recipes": [
"acesbs:stable_entropy_from_blasting_endtropy_ore"
"acesbs:stable_endtropy_from_blasting_endtropy_ore"
]
}
}
@@ -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:stable_endtropy_from_blasting_raw_endtropy"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_raw_endtropy"
]
],
"rewards": {
"recipes": [
"acesbs:stable_endtropy_from_blasting_raw_endtropy"
]
}
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "acesbs:infernal_ashes_block"
}
],
"rolls": 1.0
}
]
}
@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
{
"item": "acesbs:infernal_ashes_block"
}
],
"result": {
"count": 9,
"id": "acesbs:infernal_ashes"
}
}
@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "acesbs:infernal_ashes"
}
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "acesbs:infernal_ashes_block"
}
}
@@ -3,11 +3,11 @@
"category": "misc",
"cookingtime": 2000,
"experience": 0.5,
"group": "stable_entropy",
"group": "stable_endtropy",
"ingredient": {
"item": "acesbs:endtropy_ore"
},
"result": {
"id": "acesbs:stable_entropy"
"id": "acesbs:stable_endtropy"
}
}
@@ -0,0 +1,13 @@
{
"type": "minecraft:blasting",
"category": "misc",
"cookingtime": 2000,
"experience": 0.5,
"group": "stable_endtropy",
"ingredient": {
"item": "acesbs:raw_endtropy"
},
"result": {
"id": "acesbs:stable_endtropy"
}
}
@@ -0,0 +1,5 @@
{
"values": [
"acesbs:infernal_ashes_block"
]
}