Skip to content

Instantly share code, notes, and snippets.

Created August 20, 2015 17:30
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