Skip to content

Commit

Permalink
Dragon bone crafting recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulevsGitch committed Nov 30, 2021
1 parent 191c907 commit 2f9c131
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/ru/betterend/recipe/CraftingRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,18 @@ public static void register() {
.addMaterial('#', Blocks.BONE_BLOCK)
.addMaterial('D', Items.DRAGON_BREATH)
.build();
GridRecipe.make(BetterEnd.MOD_ID, "dragon_bone_slab", EndBlocks.DRAGON_BONE_SLAB)
.checkConfig(Configs.RECIPE_CONFIG)
.setShape("###")
.setOutputCount(6)
.addMaterial('#', EndBlocks.DRAGON_BONE_BLOCK)
.build();
GridRecipe.make(BetterEnd.MOD_ID, "dragon_bone_stairs", EndBlocks.DRAGON_BONE_STAIRS)
.checkConfig(Configs.RECIPE_CONFIG)
.setShape("# ", "## ", "###")
.setOutputCount(4)
.addMaterial('#', EndBlocks.DRAGON_BONE_BLOCK)
.build();
}

private static void registerLantern(String name, Block lantern, Block slab) {
Expand Down

0 comments on commit 2f9c131

Please sign in to comment.