Added Implosion Compressor Recipe toasts w/o alt

alt being End Crystal instead of TNT, which doesn't really change the toast
This commit is contained in:
Ayutac 2021-12-21 22:40:59 +01:00
parent 1b83168ca2
commit 145427db0b
9 changed files with 288 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/diamond"
]
},
"criteria": {
"has_diamond_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:diamond_dusts"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/diamond"
}
}
},
"requirements": [
[
"has_diamond_dust",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/emerald"
]
},
"criteria": {
"has_emerald_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:emerald_dust"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/emerald"
}
}
},
"requirements": [
[
"has_emerald_dust",
"has_the_recipe"
]
]
}

View file

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

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/peridot_gem"
]
},
"criteria": {
"has_peridot_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:peridot_dusts"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/peridot_gem"
}
}
},
"requirements": [
[
"has_peridot_dust",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/red_garnet_dust"
]
},
"criteria": {
"has_redstone_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:redstone_block"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/red_garnet"
}
}
},
"requirements": [
[
"has_redstone_block",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/red_garnet_gem"
]
},
"criteria": {
"has_red_garnet_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:red_garnet_dust"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/red_garnet_gem"
}
}
},
"requirements": [
[
"has_red_garnet_dust",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/ruby_gem"
]
},
"criteria": {
"has_ruby_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:ruby_dusts"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/ruby_gem"
}
}
},
"requirements": [
[
"has_ruby_dust",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/sapphire_gem"
]
},
"criteria": {
"has_sapphire_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "c:sapphire_dusts"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/sapphire_gem"
}
}
},
"requirements": [
[
"has_sapphire_dust",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:implosion_compressor/yellow_garnet_gem"
]
},
"criteria": {
"has_yellow_garnet_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:yellow_garnet_dust"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:implosion_compressor/yellow_garnet_gem"
}
}
},
"requirements": [
[
"has_yellow_garnet_dust",
"has_the_recipe"
]
]
}