GT5-Unofficial/src/main/java/gregtech/loaders/oreprocessing/ProcessingWire16.java

28 lines
1.3 KiB
Java
Raw Normal View History

2015-06-23 22:29:05 +00:00
package gregtech.loaders.oreprocessing;
2015-10-03 13:23:52 +00:00
import appeng.api.config.TunnelType;
import appeng.core.Api;
import gregtech.GT_Mod;
2015-06-23 22:29:05 +00:00
import gregtech.api.enums.Materials;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.util.GT_ModHandler;
import gregtech.api.util.GT_OreDictUnificator;
import gregtech.api.util.GT_Utility;
import net.minecraft.item.ItemStack;
2015-10-22 02:06:25 +00:00
public class ProcessingWire16 implements gregtech.api.interfaces.IOreRecipeRegistrator {
public ProcessingWire16() {
OrePrefixes.wireGt16.add(this);
}
2015-10-22 00:47:13 +00:00
2015-10-22 02:06:25 +00:00
public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDictName, String aModName, ItemStack aStack) {
GT_ModHandler.addShapelessCraftingRecipe(GT_OreDictUnificator.get(OrePrefixes.wireGt01, aMaterial, 16L), new Object[]{aOreDictName});
GT_ModHandler.addShapelessCraftingRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), new Object[]{OrePrefixes.wireGt08.get(aMaterial), OrePrefixes.wireGt08.get(aMaterial)});
GT_ModHandler.addShapelessCraftingRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), new Object[]{OrePrefixes.wireGt12.get(aMaterial), OrePrefixes.wireGt04.get(aMaterial)});
if (GT_Mod.gregtechproxy.mAE2Integration) {
Api.INSTANCE.registries().p2pTunnel().addNewAttunement(aStack, TunnelType.IC2_POWER);
}
}
2015-06-23 22:29:05 +00:00
}