mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Add Bio Reactor recipe
This commit is contained in:
parent
5a9f7d9168
commit
8abfa2415e
3 changed files with 33 additions and 1 deletions
|
@ -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
|
4d3128b37a7153882a9324cda49b5069207561c5 data/actuallyadditions/recipes/atomic_reconstructor.json
|
||||||
b0367f5012651764931e8b8fd0c5bcca4e8614c0 data/actuallyadditions/recipes/battery_box.json
|
b0367f5012651764931e8b8fd0c5bcca4e8614c0 data/actuallyadditions/recipes/battery_box.json
|
||||||
|
dba5d4a1a79489d5766fad32f912ab1a64618854 data/actuallyadditions/recipes/bio_reactor.json
|
||||||
7e05cd54092b998dfdbd2221235dd52576ec79eb data/actuallyadditions/recipes/black_quartz_block.json
|
7e05cd54092b998dfdbd2221235dd52576ec79eb data/actuallyadditions/recipes/black_quartz_block.json
|
||||||
fe704716268e01ca8aeeb92196d9f660b9e08640 data/actuallyadditions/recipes/black_quartz_brick_slab.json
|
fe704716268e01ca8aeeb92196d9f660b9e08640 data/actuallyadditions/recipes/black_quartz_brick_slab.json
|
||||||
9780dfc94589fc5c804c0df86eddbb9db3f61c08 data/actuallyadditions/recipes/black_quartz_brick_stair.json
|
9780dfc94589fc5c804c0df86eddbb9db3f61c08 data/actuallyadditions/recipes/black_quartz_brick_stair.json
|
||||||
|
|
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
|
@ -461,6 +461,14 @@ public class BlockRecipeGenerator extends RecipeProvider {
|
||||||
.define('B', ActuallyItems.BASIC_COIL)
|
.define('B', ActuallyItems.BASIC_COIL)
|
||||||
.define('C', ActuallyBlocks.WOOD_CASING.getItem())
|
.define('C', ActuallyBlocks.WOOD_CASING.getItem())
|
||||||
.save(recipeOutput);
|
.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 {
|
public static class Recipe {
|
||||||
|
|
Loading…
Reference in a new issue