2.1.0 Fixes 1
This commit is contained in:
@@ -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": [
|
||||
"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)
|
||||
.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)
|
||||
.add(PrismaSteelItems.PRISMA_STEEL_SHOVEL)
|
||||
|
||||
Reference in New Issue
Block a user