Skip to main content

Workbench (Constructing)

The Workbench is a new crafting system introduced in MrCrayfish's Furniture Mod: Refurbished. It is the new method of constructing all furniture in the mod. Unlike the crafting table, the workbench doesn't work of a crafting grid, it instead simple requires materials be present in the player inventory. Materials can be any number of items with support for an amount. Recipes can also be the exact same without conflicting. The Workbench requires electrical power in order for it to function.

Recipe Managerโ€‹

<recipetype:refurbished_furniture:workbench_constructing>

Custom Functionsโ€‹

addRecipe(name, result, materials[][, notification])โ€‹

Adds a new constructing recipe to the workbench

ParamaterTypeRequiredDescription
namestringYesThe name of the recipe, must be unique.
resultIItemStackYesThe resulting item from constructing the recipe, can have an amount.
materialsStackedIngredient[]YesThe ingredients required to construct the result, can have a amount.
notificationbooleanNoShow notifcation when player unlocks the recipe. CURRENTLY UNUSED.

Exampleโ€‹

%gamedir%/scripts/example.zs
<recipetype:refurbished_furniture:workbench_constructing>.addRecipe(
"heating/easy_diamonds",
<item:minecraft:diamond> * 64,
[<item:minecraft:apple> * 3, <item:minecraft:stick> * 4],
false
);

Learn Moreโ€‹

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