2.1.0 Block Fixes

This commit is contained in:
Vos
2026-03-25 20:31:55 -05:00
parent f4666e99b2
commit a7d7ae3782
23 changed files with 291 additions and 5 deletions
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "acesbs:block/fractal_diamond_block"
}
}
}
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "acesbs:block/hellfire_diamond_block"
}
}
}
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "acesbs:block/fractal_diamond_block"
}
}
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "acesbs:block/hellfire_diamond_block"
}
}
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "acesbs:block/fractal_diamond_block"
}
}
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "acesbs:block/hellfire_diamond_block"
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_fractal_diamond_block": {
"conditions": {
"items": [
{
"items": "acesbs:fractal_diamond_block"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:fractal_diamond"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_fractal_diamond_block"
]
],
"rewards": {
"recipes": [
"acesbs:fractal_diamond"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_hellfire_diamond_block": {
"conditions": {
"items": [
{
"items": "acesbs:hellfire_diamond_block"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:hellfire_diamond"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_hellfire_diamond_block"
]
],
"rewards": {
"recipes": [
"acesbs:hellfire_diamond"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_fractal_diamond": {
"conditions": {
"items": [
{
"items": "acesbs:fractal_diamond"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:fractal_diamond_block"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_fractal_diamond"
]
],
"rewards": {
"recipes": [
"acesbs:fractal_diamond_block"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_hellfire_diamond": {
"conditions": {
"items": [
{
"items": "acesbs:hellfire_diamond"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:hellfire_diamond_block"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_hellfire_diamond"
]
],
"rewards": {
"recipes": [
"acesbs:hellfire_diamond_block"
]
}
}
@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "acesbs:ashen_steel_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:fractal_diamond_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:hellfire_diamond_block"
}
],
"rolls": 1.0
}
]
}
@@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
"acesbs:fractal_diamond_block"
],
"result": {
"count": 9,
"id": "acesbs:fractal_diamond"
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": "acesbs:fractal_diamond"
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "acesbs:fractal_diamond_block"
}
}
@@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
"acesbs:hellfire_diamond_block"
],
"result": {
"count": 9,
"id": "acesbs:hellfire_diamond"
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": "acesbs:hellfire_diamond"
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "acesbs:hellfire_diamond_block"
}
}
@@ -2,6 +2,8 @@
"values": [ "values": [
"acesbs:prisma_steel_block", "acesbs:prisma_steel_block",
"acesbs:ashen_steel_block", "acesbs:ashen_steel_block",
"acesbs:fractal_diamond_block",
"acesbs:hellfire_diamond_block",
"acesbs:raw_entropy_block", "acesbs:raw_entropy_block",
"acesbs:infernal_ashes_block", "acesbs:infernal_ashes_block",
"acesbs:raw_endtropy_block" "acesbs:raw_endtropy_block"
@@ -6,6 +6,8 @@
"acesbs:stable_endtropy_block", "acesbs:stable_endtropy_block",
"acesbs:prisma_steel_block", "acesbs:prisma_steel_block",
"acesbs:ashen_steel_block", "acesbs:ashen_steel_block",
"acesbs:fractal_diamond_block",
"acesbs:hellfire_diamond_block",
"acesbs:entropy_ore", "acesbs:entropy_ore",
"acesbs:deepslate_entropy_ore", "acesbs:deepslate_entropy_ore",
"acesbs:infernal_ashes_ore", "acesbs:infernal_ashes_ore",
@@ -8,6 +8,8 @@
"acesbs:raw_endtropy_block", "acesbs:raw_endtropy_block",
"acesbs:stable_endtropy_block", "acesbs:stable_endtropy_block",
"acesbs:prisma_steel_block", "acesbs:prisma_steel_block",
"acesbs:ashen_steel_block" "acesbs:ashen_steel_block",
"acesbs:fractal_diamond_block",
"acesbs:hellfire_diamond_block"
] ]
} }
@@ -22,6 +22,4 @@
# Known Issues # Known Issues
- The Command Core Item does not display the correct texture when activated. - The Command Core Item does not display the correct texture when activated.
- The Command Core Item does not offer any functionality - The Command Core Item does not offer any functionality
- Fractal Diamonds have no use and no translation
- Hellfire Diamonds have no use and no translation
- The Combustible Lemon does not render when thrown. - The Combustible Lemon does not render when thrown.
@@ -205,7 +205,7 @@ public class ModBlocks {
.instrument(NoteBlockInstrument.CHIME) .instrument(NoteBlockInstrument.CHIME)
.requiresTool() .requiresTool()
.strength(5.0F, 6.0F) .strength(5.0F, 6.0F)
.sounds(BlockSoundGroup.NETHERITE) .sounds(BlockSoundGroup.METAL)
) )
); );
@@ -217,7 +217,7 @@ public class ModBlocks {
.instrument(NoteBlockInstrument.CHIME) .instrument(NoteBlockInstrument.CHIME)
.requiresTool() .requiresTool()
.strength(5.0F, 6.0F) .strength(5.0F, 6.0F)
.sounds(BlockSoundGroup.NETHERITE) .sounds(BlockSoundGroup.METAL)
) )
); );
@@ -159,6 +159,8 @@
"block.acesbs.infernal_ashes_block": "Block of Infernal Ashes", "block.acesbs.infernal_ashes_block": "Block of Infernal Ashes",
"block.acesbs.prisma_steel_block": "Block of Prisma Steel", "block.acesbs.prisma_steel_block": "Block of Prisma Steel",
"block.acesbs.ashen_steel_block": "Block of Ashen Steel", "block.acesbs.ashen_steel_block": "Block of Ashen Steel",
"block.acesbs.fractal_diamond_block": "Block of Fractal Diamond",
"block.acesbs.hellfire_diamond_block": "Block of Hellfire Diamond",
"block.acesbs.entropy_ore": "Entropic Ore", "block.acesbs.entropy_ore": "Entropic Ore",
"block.acesbs.deepslate_entropy_ore": "Deepslate Entropic Ore", "block.acesbs.deepslate_entropy_ore": "Deepslate Entropic Ore",
"block.acesbs.infernal_ashes_ore": "Infernal Ashes Ore", "block.acesbs.infernal_ashes_ore": "Infernal Ashes Ore",