Added Smaragdant Crystal recipe

This commit is contained in:
Necrontyr 2022-10-27 03:55:37 +02:00
parent 486d5b5acf
commit a417d42a9e
2 changed files with 8 additions and 1 deletions

View file

@ -489,6 +489,12 @@ public class CraftingRecipes {
.setOutputCount(4) .setOutputCount(4)
.addMaterial('#', EndBlocks.DRAGON_BONE_BLOCK) .addMaterial('#', EndBlocks.DRAGON_BONE_BLOCK)
.build(); .build();
BCLRecipeBuilder.crafting(BetterEnd.makeID("smaragdant_block"), EndBlocks.SMARAGDANT_CRYSTAL)
.checkConfig(Configs.RECIPE_CONFIG)
.setShape("##", "##")
.addMaterial('#', EndBlocks.SMARAGDANT_CRYSTAL_SHARD)
.build();
} }
private static void registerLantern(String name, Block lantern, Block slab) { private static void registerLantern(String name, Block lantern, Block slab) {

View file

@ -349,6 +349,7 @@
"betterend:aeternium_ingot", "betterend:aeternium_ingot",
"betterend:sulphuric_rock_flower_pot", "betterend:sulphuric_rock_flower_pot",
"betterend:umbrella_tree_gate", "betterend:umbrella_tree_gate",
"betterend:jellyshroom_composter" "betterend:jellyshroom_composter",
"betterend:smaragdant_crystal"
] ]
} }