Thallasium additional blocks, metal material class prototype, lang text

This commit is contained in:
paulevsGitch 2021-01-21 06:15:35 +03:00
parent dce84e13a5
commit 302db402c1
26 changed files with 327 additions and 38 deletions

View file

@ -37,16 +37,10 @@ public class AlloyingRecipes {
.setSmeltTime(600)
.build();
AlloyingRecipe.Builder.create("terminite_ingot_thallasium")
.setInput(EndItems.THALLASIUM_INGOT, EndItems.ENDER_DUST)
.setInput(EndBlocks.THALLASIUM.ingot, EndItems.ENDER_DUST)
.setOutput(EndItems.TERMINITE_INGOT, 1)
.setExpiriense(2.5F)
.setSmeltTime(450)
.build();
AlloyingRecipe.Builder.create("thallasium_ingot")
.setInput(EndBlocks.THALLASIUM_ORE, EndBlocks.THALLASIUM_ORE)
.setOutput(EndItems.THALLASIUM_INGOT, 3)
.setExpiriense(2.1F)
.setSmeltTime(600)
.build();
}
}

View file

@ -189,14 +189,6 @@ public class CraftingRecipes {
.build();
GridRecipe.make("fiber_string", Items.STRING).setOutputCount(6).setShape("#", "#", "#").addMaterial('#', EndItems.SILK_FIBER).build();
GridRecipe.make("thallasium_block", EndBlocks.THALLASIUM_BLOCK).setShape("###", "###", "###").addMaterial('#', EndItems.THALLASIUM_INGOT).build();
GridRecipe.make("thallasium_ingot_from_block", EndItems.THALLASIUM_INGOT).setOutputCount(9).setList("#").addMaterial('#', EndBlocks.THALLASIUM_BLOCK).build();
GridRecipe.make("thallasium_axe", EndItems.THALLASIUM_AXE).setShape("##", "#I", " I").addMaterial('#', EndItems.THALLASIUM_INGOT).addMaterial('I', Items.STICK).build();
GridRecipe.make("thallasium_hoe", EndItems.THALLASIUM_HOE).setShape("##", " I", " I").addMaterial('#', EndItems.THALLASIUM_INGOT).addMaterial('I', Items.STICK).build();
GridRecipe.make("thallasium_pickaxe", EndItems.THALLASIUM_PICKAXE).setShape("###", " I ", " I ").addMaterial('#', EndItems.THALLASIUM_INGOT).addMaterial('I', Items.STICK).build();
GridRecipe.make("thallasium_sword", EndItems.THALLASIUM_SWORD).setShape("#", "#", "I").addMaterial('#', EndItems.THALLASIUM_INGOT).addMaterial('I', Items.STICK).build();
}
private static void registerLantern(String name, Block lantern, Block slab) {

View file

@ -13,6 +13,5 @@ public class FurnaceRecipes {
FurnaceRecipe.make("end_berry", EndItems.SHADOW_BERRY_RAW, EndItems.SHADOW_BERRY_COOKED).build();
FurnaceRecipe.make("end_fish", EndItems.END_FISH_RAW, EndItems.END_FISH_COOKED).build();
FurnaceRecipe.make("slime_ball", EndBlocks.JELLYSHROOM_CAP_PURPLE, Items.SLIME_BALL).build();
FurnaceRecipe.make("thallasium_ingot_furnace", EndBlocks.THALLASIUM_ORE, EndItems.THALLASIUM_INGOT).build();
}
}