Microwave
Link to microwave
The Microwave heats up food items.
Default Microwave Recipes
Link to default-microwave-recipes
- Beef -> Cooked Beef
- Potato -> Baked Potato
Removing
Link to removing
Remove matching microwave recipes.
Link to remove-matching-microwave-recipes
ZenScript Copymods.cfm.Microwave.remove(@Optional final IIngredient output, @Optional final IIngredient input);
// Remove recipes that require a Potato
mods.cfm.Microwave.remove(null,<minecraft:potato>);
// Remove recipes that result in Cooked Beef
mods.cfm.Microwave.remove(<minecraft:cooked_beef>);
// Remove all recipes
mods.cfm.Microwave.remove();
Adding
Link to adding
Add a microwave recipe.
Link to add-a-microwave-recipe
ZenScript Copymods.cfm.Microwave.addRecipe(@Nonnull final IItemStack output, @Nonnull final IItemStack input);
// Add a recipe that makes a 4 sticks from one sugar cane
mods.cfm.Microwave.addRecipe(<minecraft:stick>.withAmount(4),<minecraft:reeds>);