Skip to main content

Microwave (Heating)

The Microwave is a block that allows you to heat items. It acts very similar to a furnace, but does not inherit the recipes. The Microwave requires electrical power in order for it to function. It currently has limited recipes in the base mod.

Recipe Managerโ€‹

<recipetype:refurbished_furniture:microwave_heating>

Custom Functionsโ€‹

addRecipe(name, ingredient, result[, time])โ€‹

Adds a new heating recipe to the microwave

ParamaterTypeRequiredDescription
namestringYesThe name of the recipe, must be unique.
ingredientIIngredientYesThe ingredient to freeze
resultIItemStackYesThe resulting item from heating the ingredient, can have an amount.
timeintNoThe duration in ticks to heat the item. Default 200

Exampleโ€‹

%gamedir%/scripts/example.zs
<recipetype:refurbished_furniture:microwave_heating>.addRecipe(
"heating/easy_diamonds",
<item:minecraft:apple>,
<item:minecraft:diamond> * 64,
250
);

Learn Moreโ€‹

See Recipe Managers on the CraftTweaker documentation for all inbuilt functions.