Added some toasts for rolling machine

not for the vanilla items, those are probably cursed or something
This commit is contained in:
Ayutac 2022-02-11 18:37:41 +01:00
parent 04290d2182
commit 4d78b616d5
3 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:rolling_machine/cupronickel_heating_coil"
]
},
"criteria": {
"has_nickel_ingot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:nickel_ingots"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:rolling_machine/cupronickel_heating_coil"
}
}
},
"requirements": [
[
"has_nickel_ingot",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:rolling_machine/magnalium_plate"
]
},
"criteria": {
"has_magnesium_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:magnesium_dusts"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:rolling_machine/magnalium_plate"
}
}
},
"requirements": [
[
"has_magnesium_dust",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:rolling_machine/nichrome_heating_coil"
]
},
"criteria": {
"has_chrome_ingot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:chrome_ingots"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:rolling_machine/nichrome_heating_coil"
}
}
},
"requirements": [
[
"has_chrome_ingot",
"has_the_recipe"
]
]
}