TechReborn/src/main/java/techreborn/compat/minetweaker/MTAlloySmelter.java

33 lines
1.1 KiB
Java
Raw Normal View History

2015-07-02 21:23:01 +02:00
package techreborn.compat.minetweaker;
import minetweaker.api.item.IIngredient;
import minetweaker.api.item.IItemStack;
import net.minecraft.item.ItemStack;
2015-07-02 21:23:01 +02:00
import stanhebben.zenscript.annotations.ZenClass;
import stanhebben.zenscript.annotations.ZenMethod;
import techreborn.api.recipe.machines.AlloySmelterRecipe;
import techreborn.lib.Reference;
2015-07-02 21:23:01 +02:00
2015-07-03 09:40:38 +02:00
/**
* mods.techreborn.alloySmelter.addRecipe(<minecraft:gold_ingot>, <minecraft:iron_ingot>, <minecraft:diamond>, 20, 100);
2015-07-03 09:40:38 +02:00
*/
@ZenClass("mods.techreborn.alloySmelter")
2015-11-13 14:18:48 +01:00
public class MTAlloySmelter extends MTGeneric {
2015-11-08 13:15:45 +01:00
@ZenMethod
public static void addRecipe(IItemStack output, IIngredient input1, IIngredient input2, int ticktime, int euTick) {
ItemStack oInput1 = (ItemStack) MinetweakerCompat.toObject(input1);
ItemStack oInput2 = (ItemStack) MinetweakerCompat.toObject(input2);
AlloySmelterRecipe r = new AlloySmelterRecipe(oInput1, oInput2, MinetweakerCompat.toStack(output), ticktime, euTick);
2015-11-13 14:18:48 +01:00
addRecipe(r);
2015-11-08 13:15:45 +01:00
}
2015-11-13 14:18:48 +01:00
@Override
public String getMachineName() {
return Reference.alloySmelteRecipe;
2015-11-08 13:15:45 +01:00
}
2015-07-02 21:23:01 +02:00
}