-
Notifications
You must be signed in to change notification settings - Fork 31
Blast Furnace and Smoker CraftTweaker Functions
thedarkcolour edited this page Jul 21, 2021
·
14 revisions
Add and remove recipes for the Blast Furnace and Smoker. If you want to change the output for a specific item like sand, you can remove its recipe and then add a new one.
// mods.futuremc.Smoker.addRecipe(IItemStack input, IItemStack output);
mods.futuremc.Smoker.addRecipe(<minecraft:pumpkin>, <minecraft:seeds>); // Pumpkin -> Seeds
// mods.futuremc.BlastFurnace.addRecipe(IItemStack input, IItemStack output);
mods.futuremc.BlastFurnace.addRecipe(<minecraft:cobblestone>, <futuremc>); // Cobblestone -> Smooth Stone
// mods.futuremc.Smoker.removeRecipe(IItemStack input);
mods.futuremc.Smoker.removeRecipe(<minecraft:beef>); // Removes the recipe for cooking steak
// mods.futuremc.BlastFurnace.removeRecipe(IItemStack input);
mods.futuremc.BlastFurnace.removeRecipe(<minecraft:diamond_ore>); // Removes the recipe for smelting diamonds