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
Paramater | Type | Required | Description |
---|---|---|---|
name | string | Yes | The name of the recipe, must be unique. |
ingredient | IIngredient | Yes | The ingredient to freeze |
result | IItemStack | Yes | The resulting item from slicing the ingredient , can have an amount. |
time | int | No | The duration in ticks to freeze the item. Default 200 |
Exampleโ
- ZenScript
- Datapack Equivelant
%gamedir%/scripts/example.zs
<recipetype:refurbished_furniture:freezer_solidifying>.addRecipe(
"freezing/easy_diamonds",
<item:minecraft:apple> | <item:minecraft:potato>,
<item:minecraft:diamond> * 64,
500
);
(ZIP File) ๐กข /data/[namespace]/recipes/freezing/easy_diamonds.json
{
"type": "refurbished_furniture:freezer_solidifying",
"ingredient": {
"item": [
"minecraft:apple",
"minecraft:potato"
]
},
"result": {
"item": "minecraft:diamond",
"count": 64
},
"time": 500
}
Learn Moreโ
See Recipe Managers on the CraftTweaker documentation for all inbuilt functions.