Microwave
Link to microwave
The Microwave heats up food items.
Default Microwave Recipes
Link to default-microwave-recipes
- Beef -> Cooked Beef
- Porkchop -> Cooked Porkchop
- Potato -> Baked Potato
- Chicken -> Cooked Chicken
- Fish -> Cooked Fish
- Salmon -> Cooked Salmon
- Flesh -> Cooked Flesh
Removing
Link to removing
Remove matching oven recipes.
Link to remove-matching-oven-recipes
ZenScript Copymods.cfm.Oven.remove(@Optional final IIngredient output, @Optional final IIngredient input);
// Remove recipes that result in Cooked Flesh
mods.cfm.Oven.remove(<cfm:item_flesh_cooked>);
// Remove recipes that require a Potato
mods.cfm.Oven.remove(null,<minecraft:potato>);
// Remove all recipes
mods.cfm.Oven.remove();
Adding
Link to adding
Add an oven recipe.
Link to add-an-oven-recipe
ZenScript Copymods.cfm.Oven.addRecipe(@Nonnull final IItemStack output, @Nonnull final IItemStack input);
// Add a recipe that makes two apples from one stick
mods.cfm.Oven.addRecipe(<minecraft:apple>.withAmount(2),<minecraft:stick>);