Skip to main content

Grill (Cooking)

The Grill is a block that allows the player to cook up two four items at a time. It is "powered" by placing charcoal into the block. Similar to the Frying Pan, half way through the cooking process, the items will need to be flipped with a Spatula. Items are cooked independantly from others.

warning

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

Recipe Managerโ€‹

<recipetype:refurbished_furniture:grill_cooking>

Custom Functionsโ€‹

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

Adds a new cooking recipe to the grill

ParamaterTypeRequiredDescription
namestringYesThe name of the recipe, must be unique.
ingredientIIngredientYesThe ingredient to freeze
resultIItemStackYesThe resulting item from cooking the ingredient, can have an amount.
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:grill_cooking>.addRecipe(
"cooking/easy_diamonds",
<item:minecraft:apple> | <item:minecraft:potato>,
<item:minecraft:diamond> * 64,
400
);

Learn Moreโ€‹

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