Added toasts for crafting_table/upgrade

This commit is contained in:
Ayutac 2022-01-02 21:34:17 +01:00
parent 9a2dfd746e
commit 1c1ed7c3eb
6 changed files with 192 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/upgrade/energy_storage_upgrade"
]
},
"criteria": {
"has_red_cell_battery": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:red_cell_battery"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/upgrade/energy_storage_upgrade"
}
}
},
"requirements": [
[
"has_red_cell_battery",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/upgrade/overclocker_upgrade"
]
},
"criteria": {
"has_water_coolant_cell_10k": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:water_coolant_cell_10k"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/upgrade/overclocker_upgrade"
}
}
},
"requirements": [
[
"has_water_coolant_cell_10k",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/upgrade/overclocker_upgrade_alt"
]
},
"criteria": {
"has_helium_coolant_cell_180k": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:helium_coolant_cell_180k"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/upgrade/overclocker_upgrade_alt"
}
}
},
"requirements": [
[
"has_helium_coolant_cell_180k",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/upgrade/overclocker_upgrade_alt_alt"
]
},
"criteria": {
"has_nak_coolant_cell_60k": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:nak_coolant_cell_60k"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/upgrade/overclocker_upgrade_alt_alt"
}
}
},
"requirements": [
[
"has_nak_coolant_cell_60k",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/upgrade/superconductor_upgrade"
]
},
"criteria": {
"has_superconductor": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:superconductor"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/upgrade/superconductor_upgrade"
}
}
},
"requirements": [
[
"has_superconductor",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/upgrade/transformer_upgrade"
]
},
"criteria": {
"has_mv_transformer": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:mv_transformer"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/upgrade/transformer_upgrade"
}
}
},
"requirements": [
[
"has_mv_transformer",
"has_the_recipe"
]
]
}