Added non-datagen toasts for crafting_table/storage_block

This commit is contained in:
Ayutac 2022-02-11 17:27:34 +01:00
parent 1b578c096c
commit 559f32200e
5 changed files with 182 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/storage_block/copper_wall"
]
},
"criteria": {
"has_copper": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:copper"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/storage_block/copper_wall"
}
}
},
"requirements": [
[
"has_copper",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/storage_block/copper_wall_stonecutting"
]
},
"criteria": {
"has_copper": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:copper"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/storage_block/copper_wall_stonecutting"
}
}
},
"requirements": [
[
"has_copper",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/storage_block/iridium_reinforced_stone_storage_block"
]
},
"criteria": {
"has_iridium_alloy_plate": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:iridium_alloy_plate"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/storage_block/iridium_reinforced_stone_storage_block"
}
}
},
"requirements": [
[
"has_iridium_alloy_plate",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,43 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/storage_block/iridium_reinforced_stone_storage_block"
]
},
"criteria": {
"has_iridium_plate": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:iridium_plates"
}
]
}
},
"has_tungstensteel_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:tungstensteel_blocks"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/storage_block/iridium_reinforced_stone_storage_block"
}
}
},
"requirements": [
[
"has_iridium_plate",
"has_tungstensteel_block",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,43 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/storage_ingot/iridium_reinforced_stone_storage_ingot_alt"
]
},
"criteria": {
"has_iridium_reinforced_stone_ingot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:iridium_reinforced_stone_ingots"
}
]
}
},
"has_tungstensteel_ingot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:tungstensteel_ingots"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/storage_ingot/iridium_reinforced_stone_storage_ingot_alt"
}
}
},
"requirements": [
[
"has_iridium_reinforced_stone_ingot",
"has_tungstensteel_ingot",
"has_the_recipe"
]
]
}