Search in sources :

Example 6 with ShapelessBloodOrbRecipe

use of WayofTime.alchemicalWizardry.api.items.ShapelessBloodOrbRecipe in project BloodMagic by WayofTime.

the class ItemIncense method registerIncenseRecipes.

public static void registerIncenseRecipes() {
    int WILDCARD = OreDictionary.WILDCARD_VALUE;
    ItemStack woodStack = new ItemStack(Blocks.log, 1, WILDCARD);
    ItemStack charcoalStack = new ItemStack(Items.coal, 1, 1);
    ItemStack leavesStack = new ItemStack(Blocks.leaves, 1, WILDCARD);
    ItemStack goldNuggetStack = new ItemStack(Items.gold_nugget, 1, WILDCARD);
    ItemStack stringStack = new ItemStack(Items.string, 1, WILDCARD);
    ItemStack glowstoneStack = new ItemStack(Items.glowstone_dust, 1, WILDCARD);
    ItemStack soulSandStack = new ItemStack(Blocks.soul_sand);
    ItemStack gunpowderStack = new ItemStack(Items.gunpowder);
    ItemStack fermentedEyeStack = new ItemStack(Items.fermented_spider_eye);
    ItemStack quartzStack = new ItemStack(Items.quartz, 1, WILDCARD);
    ItemStack blazePowderStack = new ItemStack(Items.blaze_powder);
    ItemStack netherwartStack = new ItemStack(Items.nether_wart);
    ItemStack fracturedBoneStack = new ItemStack(ModItems.baseAlchemyItems, 1, 5);
    ItemStack woodashStack = new ItemStack(ModItems.itemIncense, 1, 0);
    // WOODASH
    GameRegistry.addRecipe(woodashStack, "WWW", "WCW", "WWW", 'W', woodStack, 'C', charcoalStack);
    GameRegistry.addRecipe(new ShapelessBloodOrbRecipe(new ItemStack(ModItems.itemIncense, 1, 1), woodashStack, "dyeRed", "dyeRed", new ItemStack(Items.redstone), leavesStack, leavesStack, new ItemStack(ModItems.apprenticeBloodOrb)));
    GameRegistry.addRecipe(new ShapelessBloodOrbRecipe(new ItemStack(ModItems.itemIncense, 1, 2), woodashStack, "dyeBlue", "dyeBlue", goldNuggetStack, goldNuggetStack, glowstoneStack, stringStack, stringStack, new ItemStack(ModItems.magicianBloodOrb)));
    GameRegistry.addRecipe(new ShapelessBloodOrbRecipe(new ItemStack(ModItems.itemIncense, 1, 3), woodashStack, "dyeGreen", "dyeGreen", soulSandStack, gunpowderStack, fermentedEyeStack, new ItemStack(ModItems.masterBloodOrb)));
    GameRegistry.addRecipe(new ShapelessBloodOrbRecipe(new ItemStack(ModItems.itemIncense, 1, 4), woodashStack, "dyePurple", "dyePurple", quartzStack, netherwartStack, blazePowderStack, fracturedBoneStack, goldNuggetStack, new ItemStack(ModItems.archmageBloodOrb)));
}
Also used : ItemStack(net.minecraft.item.ItemStack) ShapelessBloodOrbRecipe(WayofTime.alchemicalWizardry.api.items.ShapelessBloodOrbRecipe)

Aggregations

ShapelessBloodOrbRecipe (WayofTime.alchemicalWizardry.api.items.ShapelessBloodOrbRecipe)6 ItemStack (net.minecraft.item.ItemStack)3 IRecipe (net.minecraft.item.crafting.IRecipe)3 ShapedBloodOrbRecipe (WayofTime.alchemicalWizardry.api.items.ShapedBloodOrbRecipe)2 AlchemicalWizardryFuelHandler (WayofTime.alchemicalWizardry.common.AlchemicalWizardryFuelHandler)1 ModLivingDropsEvent (WayofTime.alchemicalWizardry.common.ModLivingDropsEvent)1 ItemRitualDiviner (WayofTime.alchemicalWizardry.common.items.ItemRitualDiviner)1 PotionAmphibian (WayofTime.alchemicalWizardry.common.potion.PotionAmphibian)1 PotionBoost (WayofTime.alchemicalWizardry.common.potion.PotionBoost)1 PotionDeaf (WayofTime.alchemicalWizardry.common.potion.PotionDeaf)1 PotionDemonCloak (WayofTime.alchemicalWizardry.common.potion.PotionDemonCloak)1 PotionDrowning (WayofTime.alchemicalWizardry.common.potion.PotionDrowning)1 PotionFeatherFall (WayofTime.alchemicalWizardry.common.potion.PotionFeatherFall)1 PotionFireFuse (WayofTime.alchemicalWizardry.common.potion.PotionFireFuse)1 PotionFlameCloak (WayofTime.alchemicalWizardry.common.potion.PotionFlameCloak)1 PotionFlight (WayofTime.alchemicalWizardry.common.potion.PotionFlight)1 PotionHeavyHeart (WayofTime.alchemicalWizardry.common.potion.PotionHeavyHeart)1 PotionIceCloak (WayofTime.alchemicalWizardry.common.potion.PotionIceCloak)1 PotionInhibit (WayofTime.alchemicalWizardry.common.potion.PotionInhibit)1 PotionPlanarBinding (WayofTime.alchemicalWizardry.common.potion.PotionPlanarBinding)1