Add Bio Reactor recipe

This commit is contained in:
Mrbysco 2024-03-12 17:04:22 +01:00
parent 5a9f7d9168
commit 8abfa2415e
3 changed files with 33 additions and 1 deletions

View file

@ -1,6 +1,7 @@
// 1.20.4 2024-03-12T16:39:18.4273951 Recipes
// 1.20.4 2024-03-12T17:03:47.7860358 Recipes
4d3128b37a7153882a9324cda49b5069207561c5 data/actuallyadditions/recipes/atomic_reconstructor.json
b0367f5012651764931e8b8fd0c5bcca4e8614c0 data/actuallyadditions/recipes/battery_box.json
dba5d4a1a79489d5766fad32f912ab1a64618854 data/actuallyadditions/recipes/bio_reactor.json
7e05cd54092b998dfdbd2221235dd52576ec79eb data/actuallyadditions/recipes/black_quartz_block.json
fe704716268e01ca8aeeb92196d9f660b9e08640 data/actuallyadditions/recipes/black_quartz_brick_slab.json
9780dfc94589fc5c804c0df86eddbb9db3f61c08 data/actuallyadditions/recipes/black_quartz_brick_stair.json

View file

@ -0,0 +1,23 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"E": {
"item": "actuallyadditions:empowered_enori_crystal"
},
"I": {
"item": "actuallyadditions:iron_casing"
},
"S": {
"tag": "minecraft:saplings"
}
},
"pattern": [
"EIE",
"ESE",
"EIE"
],
"result": {
"item": "actuallyadditions:bio_reactor"
}
}

View file

@ -461,6 +461,14 @@ public class BlockRecipeGenerator extends RecipeProvider {
.define('B', ActuallyItems.BASIC_COIL)
.define('C', ActuallyBlocks.WOOD_CASING.getItem())
.save(recipeOutput);
// Bio Reactor
Recipe.shaped(ActuallyBlocks.BIOREACTOR.getItem())
.pattern("EIE", "ESE", "EIE")
.define('E', ActuallyItems.EMPOWERED_ENORI_CRYSTAL)
.define('I', ActuallyBlocks.IRON_CASING.getItem())
.define('S', ItemTags.SAPLINGS)
.save(recipeOutput);
}
public static class Recipe {