/RecipeRegistry.java Secret
Created
August 20, 2015 17:30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.szernex.usc.recipes; | |
import cpw.mods.fml.common.registry.GameRegistry; | |
import net.minecraft.item.Item; | |
import net.minecraft.item.ItemStack; | |
import org.szernex.usc.init.ModItems; | |
public class RecipeRegistry | |
{ | |
public static void init() | |
{ | |
ItemStack goldenApple = new ItemStack((Item) Item.itemRegistry.getObject("golden_apple")); | |
ItemStack potionRegen = new ItemStack((Item) Item.itemRegistry.getObject("potion"), 1, 10); | |
GameRegistry.addRecipe(new ItemStack(ModItems.fruitOfRejuvenation), | |
" A ", | |
"APA", | |
" A ", | |
'A', goldenApple, | |
'P', potionRegen); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment