2015-11-07 16:51:41 +00:00
|
|
|
package WayofTime.bloodmagic.registry;
|
|
|
|
|
|
|
|
import WayofTime.bloodmagic.api.altar.AltarRecipe;
|
|
|
|
import WayofTime.bloodmagic.api.altar.EnumAltarTier;
|
|
|
|
import WayofTime.bloodmagic.api.registry.AltarRecipeRegistry;
|
2015-11-29 02:25:46 +00:00
|
|
|
import WayofTime.bloodmagic.api.registry.OrbRegistry;
|
|
|
|
import net.minecraft.init.Blocks;
|
2015-11-07 16:51:41 +00:00
|
|
|
import net.minecraft.init.Items;
|
2015-11-28 01:15:19 +00:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-11-07 16:51:41 +00:00
|
|
|
|
|
|
|
public class ModRecipes {
|
|
|
|
public static void init() {
|
|
|
|
addAltarRecipes();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void addAltarRecipes() {
|
2015-11-29 02:25:46 +00:00
|
|
|
AltarRecipeRegistry.registerRecipe(new AltarRecipe(new ItemStack(Items.diamond), OrbRegistry.getOrbStack(ModItems.orbWeak), EnumAltarTier.ONE, 2000, 2, 1, false));
|
|
|
|
AltarRecipeRegistry.registerRecipe(new AltarRecipe(new ItemStack(Items.emerald), OrbRegistry.getOrbStack(ModItems.orbApprentice), EnumAltarTier.TWO, 5000, 2, 1, false));
|
|
|
|
AltarRecipeRegistry.registerRecipe(new AltarRecipe(new ItemStack(Blocks.gold_block), OrbRegistry.getOrbStack(ModItems.orbMagician), EnumAltarTier.THREE, 25000, 2, 1, false));
|
2015-11-07 16:51:41 +00:00
|
|
|
}
|
|
|
|
}
|