2.1.0 Fixes 1

This commit is contained in:
Vos
2026-03-22 16:02:56 -05:00
parent 540cfcf510
commit aaf04d5e0b
6 changed files with 97 additions and 2 deletions
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_ashen_steel_block": {
"conditions": {
"items": [
{
"items": "acesbs:ashen_steel_block"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:ashen_steel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_ashen_steel_block"
]
],
"rewards": {
"recipes": [
"acesbs:ashen_steel"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_ashen_steel": {
"conditions": {
"items": [
{
"items": "acesbs:ashen_steel"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:ashen_steel_block"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_ashen_steel"
]
],
"rewards": {
"recipes": [
"acesbs:ashen_steel_block"
]
}
}
@@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
"acesbs:ashen_steel_block"
],
"result": {
"count": 9,
"id": "acesbs:ashen_steel"
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": "acesbs:ashen_steel"
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "acesbs:ashen_steel_block"
}
}
@@ -1,6 +1,8 @@
{ {
"values": [ "values": [
"acesbs:prisma_steel_pickaxe", "acesbs:prisma_steel_pickaxe",
"acesbs:ashen_steel_pickaxe" "acesbs:ashen_steel_pickaxe",
"acesbs:prisma_steel_hammer",
"acesbs:ashen_steel_hammer"
] ]
} }
@@ -61,7 +61,9 @@ public class ModItemTagProvider extends FabricTagProvider.ItemTagProvider {
valueLookupBuilder(ItemTags.PICKAXES) valueLookupBuilder(ItemTags.PICKAXES)
.add(PrismaSteelItems.PRISMA_STEEL_PICKAXE) .add(PrismaSteelItems.PRISMA_STEEL_PICKAXE)
.add(AshenSteelItems.ASHEN_STEEL_PICKAXE); .add(AshenSteelItems.ASHEN_STEEL_PICKAXE)
.add(PrismaSteelItems.PRISMA_STEEL_HAMMER)
.add(AshenSteelItems.ASHEN_STEEL_HAMMER);
valueLookupBuilder(ItemTags.SHOVELS) valueLookupBuilder(ItemTags.SHOVELS)
.add(PrismaSteelItems.PRISMA_STEEL_SHOVEL) .add(PrismaSteelItems.PRISMA_STEEL_SHOVEL)