package de.ellpeck.naturesaura.recipes; import de.ellpeck.naturesaura.NaturesAura; import de.ellpeck.naturesaura.blocks.ModBlocks; import de.ellpeck.naturesaura.items.ModItems; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; public final class ModRecipes { public static void init() { new TreeRitualRecipe(new ResourceLocation(NaturesAura.MOD_ID, "eye"), new ItemStack(Blocks.SAPLING), new ItemStack(ModItems.EYE), 250, new ItemStack(Items.SPIDER_EYE), new ItemStack(Items.GOLD_INGOT), new ItemStack(ModItems.GOLD_LEAF), new ItemStack(ModItems.GOLD_LEAF)).add(); new TreeRitualRecipe(new ResourceLocation(NaturesAura.MOD_ID, "nature_altar"), new ItemStack(Blocks.SAPLING), new ItemStack(ModBlocks.NATURE_ALTAR), 500, new ItemStack(Blocks.STONE), new ItemStack(Blocks.STONE), new ItemStack(Blocks.STONE), new ItemStack(ModItems.GOLD_LEAF), new ItemStack(Items.DIAMOND)).add(); new TreeRitualRecipe(new ResourceLocation(NaturesAura.MOD_ID, "ancient_sapling"), new ItemStack(Blocks.SAPLING), new ItemStack(ModBlocks.ANCIENT_SAPLING), 200, new ItemStack(Blocks.SAPLING), new ItemStack(Blocks.YELLOW_FLOWER), new ItemStack(Blocks.RED_FLOWER), new ItemStack(Items.WHEAT_SEEDS), new ItemStack(Items.REEDS), new ItemStack(ModItems.GOLD_LEAF)).add(); new AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_iron"), new ItemStack(Items.IRON_INGOT), new ItemStack(ModItems.INFUSED_IRON), 300, 80).add(); new AltarRecipe(new ResourceLocation(NaturesAura.MOD_ID, "infused_stone"), new ItemStack(Blocks.STONE), new ItemStack(ModBlocks.INFUSED_STONE), 150, 40).add(); } }