Skip to main content

Freezer (Solidifying)

Solidifying/Freezing is a feature of the Fridge in MrCrayfish's Furniture Mod: Refurbished. It can be used by the player to freeze an item, like converting water into ice. The Freezer requires electrical power in order for it to function.

Recipe Managerโ€‹

<recipetype:refurbished_furniture:freezer_solidifying>

Custom Functionsโ€‹

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

Adds a new solidifying recipe to the freezer

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

Exampleโ€‹

%gamedir%/scripts/example.zs
<recipetype:refurbished_furniture:freezer_solidifying>.addRecipe(
"freezing/easy_diamonds",
<item:minecraft:apple> | <item:minecraft:potato>,
<item:minecraft:diamond> * 64,
500
);

Learn Moreโ€‹

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