Skip to main content

Frying Pan (Frying)

The Frying Pan is a new block in the MrCrayfish's Furniture Mod: Refurbished and it allows you to fry food. It is placed on top of a powered Stove. Items need to be flipped half way through the cooking process with a Spatula. Along with the frying pan comes the new frying pan recipe type so you can add custom recipes. The Stove that heats the Frying Pan requires electrical power in order for it to function.

warning

The frying pan inherits all campfire recipes. You cannot modify those recipes through the frying pan recipe manager.

Recipe Managerโ€‹

<recipetype:refurbished_furniture:frying_pan_frying>

Custom Functionsโ€‹

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

Adds a new frying recipe to the frying pan

ParamaterTypeRequiredDescription
namestringYesThe name of the recipe, must be unique.
ingredientIIngredientYesThe ingredient to fry
resultIItemStackYesThe resulting item from frying the ingredient, can have a tag.
timeintNoThe duration in ticks to fully cook the item. The item will cook for half this time, the player will then flip it with a Spatula, then it will complete cooking for the remaining time. Default 200

Exampleโ€‹

%gamedir%/scripts/example.zs
<recipetype:refurbished_furniture:frying_pan_frying>.addRecipe(
"frying/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.