2018-10-16 01:36:30 +02:00
|
|
|
package de.ellpeck.naturesaura.recipes;
|
|
|
|
|
2018-10-22 00:14:52 +02:00
|
|
|
import de.ellpeck.naturesaura.NaturesAura;
|
2018-10-16 17:48:36 +02:00
|
|
|
import de.ellpeck.naturesaura.blocks.ModBlocks;
|
|
|
|
import de.ellpeck.naturesaura.items.ModItems;
|
2018-10-16 01:36:30 +02:00
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2018-10-22 00:14:52 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2018-10-16 01:36:30 +02:00
|
|
|
|
|
|
|
public final class ModRecipes {
|
|
|
|
|
|
|
|
public static void init() {
|
2018-10-22 00:14:52 +02:00
|
|
|
new TreeRitualRecipe(new ResourceLocation(NaturesAura.MOD_ID, "eye"),
|
|
|
|
new ItemStack(Blocks.SAPLING), new ItemStack(ModItems.EYE), 250,
|
2018-10-16 17:48:36 +02:00
|
|
|
new ItemStack(Items.SPIDER_EYE),
|
|
|
|
new ItemStack(Items.GOLD_INGOT),
|
|
|
|
new ItemStack(ModItems.GOLD_LEAF),
|
|
|
|
new ItemStack(ModItems.GOLD_LEAF)).add();
|
2018-10-22 00:14:52 +02:00
|
|
|
new TreeRitualRecipe(new ResourceLocation(NaturesAura.MOD_ID, "nature_altar"),
|
|
|
|
new ItemStack(Blocks.SAPLING), new ItemStack(ModBlocks.NATURE_ALTAR), 500,
|
2018-10-16 17:48:36 +02:00
|
|
|
new ItemStack(Blocks.STONE),
|
|
|
|
new ItemStack(Blocks.STONE),
|
|
|
|
new ItemStack(Blocks.STONE),
|
|
|
|
new ItemStack(ModItems.GOLD_LEAF),
|
2018-10-27 01:49:57 +02:00
|
|
|
new ItemStack(Items.GOLD_INGOT)).add();
|
2018-10-22 00:14:52 +02:00
|
|
|
new TreeRitualRecipe(new ResourceLocation(NaturesAura.MOD_ID, "ancient_sapling"),
|
|
|
|
new ItemStack(Blocks.SAPLING), new ItemStack(ModBlocks.ANCIENT_SAPLING), 200,
|
2018-10-19 15:05:12 +02:00
|
|
|
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();
|
2018-10-26 15:01:48 +02:00
|
|
|
new TreeRitualRecipe(new ResourceLocation(NaturesAura.MOD_ID, "furnace_heater"),
|
|
|
|
new ItemStack(Blocks.SAPLING), new ItemStack(ModBlocks.FURNACE_HEATER), 600,
|
|
|
|
new ItemStack(ModBlocks.INFUSED_STONE),
|
|
|
|
new ItemStack(ModBlocks.INFUSED_STONE),
|
|
|
|
new ItemStack(ModItems.INFUSED_IRON),
|
|
|
|
new ItemStack(ModItems.INFUSED_IRON),
|
|
|
|
new ItemStack(Items.FIRE_CHARGE),
|
|
|
|
new ItemStack(Items.FLINT),
|
|
|
|
new ItemStack(Blocks.MAGMA)).add();
|
2018-10-18 13:34:37 +02:00
|
|
|
|
2018-10-22 00:14:52 +02:00
|
|
|
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();
|
2018-10-16 01:36:30 +02:00
|
|
|
}
|
|
|
|
}
|