26 lines
No EOL
1.2 KiB
Java
26 lines
No EOL
1.2 KiB
Java
/* */ package gregtech.loaders.oreprocessing;
|
|
/* */
|
|
/* */ import gregtech.api.enums.Materials;
|
|
/* */ import gregtech.api.enums.OrePrefixes;
|
|
/* */ import gregtech.api.util.GT_ModHandler;
|
|
/* */ import gregtech.common.items.GT_MetaGenerated_Tool_01;
|
|
/* */ import net.minecraft.item.ItemStack;
|
|
/* */
|
|
/* */ public class ProcessingToolHeadPlow implements gregtech.api.interfaces.IOreRecipeRegistrator
|
|
/* */ {
|
|
/* */ public ProcessingToolHeadPlow()
|
|
/* */ {
|
|
/* 13 */ OrePrefixes.toolHeadPlow.add(this);
|
|
/* */ }
|
|
/* */
|
|
/* */ public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack)
|
|
/* */ {
|
|
/* 18 */ GT_ModHandler.addShapelessCraftingRecipe(GT_MetaGenerated_Tool_01.INSTANCE.getToolWithStats(42, 1, aMaterial, aMaterial.mHandleMaterial, null), new Object[] { aOreDictName, OrePrefixes.stick.get(aMaterial.mHandleMaterial) });
|
|
/* */ }
|
|
/* */ }
|
|
|
|
|
|
/* Location: F:\Torrent\minecraft\jdgui test\gregtech_1.7.10-5.07.07-dev.jar!\gregtech\loaders\oreprocessing\ProcessingToolHeadPlow.class
|
|
* Java compiler version: 6 (50.0)
|
|
* JD-Core Version: 0.7.1-SNAPSHOT-20140817
|
|
*/ |