TechReborn/ToAddBack/compat/minetweaker/MTPlateCuttingMachine.java

37 lines
1.3 KiB
Java
Raw Normal View History

package techreborn.compat.minetweaker;
2015-11-21 09:54:26 +01:00
import minetweaker.MineTweakerAPI;
import minetweaker.api.item.IIngredient;
import minetweaker.api.item.IItemStack;
import net.minecraft.item.ItemStack;
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import techreborn.api.recipe.machines.PlateCuttingMachineRecipe;
import techreborn.lib.Reference;
@ZenClass("mods.techreborn.plateCuttingMachine")
2015-11-15 21:51:47 +01:00
public class MTPlateCuttingMachine extends MTGeneric {
@ZenMethod
public static void addRecipe(IItemStack output, IIngredient input1, int ticktime, int euTick) {
ItemStack oInput1 = (ItemStack) MinetweakerCompat.toObject(input1);
2015-10-07 12:15:55 +02:00
PlateCuttingMachineRecipe r = new PlateCuttingMachineRecipe(oInput1, MinetweakerCompat.toStack(output), ticktime, euTick);
2015-11-15 21:51:47 +01:00
addRecipe(r);
}
2015-11-21 09:54:26 +01:00
@ZenMethod
public static void removeInputRecipe(IIngredient iIngredient) {
MineTweakerAPI.apply(new RemoveInput(iIngredient, getMachineName()));
}
@ZenMethod
public static void removeRecipe(IItemStack output) {
MineTweakerAPI.apply(new Remove(MinetweakerCompat.toStack(output), getMachineName()));
}
public static String getMachineName() {
2015-11-15 21:51:47 +01:00
return Reference.plateCuttingMachineRecipe;
}
}