Added toasts for crafting_table/solar_panel

This commit is contained in:
Ayutac 2022-01-02 21:51:13 +01:00
parent 580a8b54f1
commit 9a2dfd746e
8 changed files with 267 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/advanced_solar_panel"
]
},
"criteria": {
"has_basic_solar_panel": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:basic_solar_panel"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/advanced_solar_panel"
}
}
},
"requirements": [
[
"has_basic_solar_panel",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/advanced_solar_panel_alt"
]
},
"criteria": {
"has_basic_machine_frame": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:basic_machine_frame"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/advanced_solar_panel_alt"
}
}
},
"requirements": [
[
"has_basic_machine_frame",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/basic_solar_panel"
]
},
"criteria": {
"has_solid_fuel_generator": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:solid_fuel_generator"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/basic_solar_panel"
}
}
},
"requirements": [
[
"has_solid_fuel_generator",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/industrial_solar_panel"
]
},
"criteria": {
"has_advanced_solar_panel": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:advanced_solar_panel"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/industrial_solar_panel"
}
}
},
"requirements": [
[
"has_advanced_solar_panel",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/industrial_solar_panel_alt"
]
},
"criteria": {
"has_advanced_circuit": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:advanced_circuit"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/industrial_solar_panel_alt"
}
}
},
"requirements": [
[
"has_advanced_circuit",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,43 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/quantum_solar_panel"
]
},
"criteria": {
"has_ultimate_solar_panel": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:ultimate_solar_panel"]
}
]
}
},
"has_uu_matter": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:uu_matter"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/quantum_solar_panel"
}
}
},
"requirements": [
[
"has_ultimate_solar_panel",
"has_uu_matter",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/ultimate_solar_panel"
]
},
"criteria": {
"has_industrial_solar_panel": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:industrial_solar_panel"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/ultimate_solar_panel"
}
}
},
"requirements": [
[
"has_industrial_solar_panel",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/solar_panel/ultimate_solar_panel_alt"
]
},
"criteria": {
"has_advanced_machine_frame": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:advanced_machine_frame"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/solar_panel/ultimate_solar_panel_alt"
}
}
},
"requirements": [
[
"has_advanced_machine_frame",
"has_the_recipe"
]
]
}