Roasting Pan: Difference between revisions

From PZwiki
m (Automated Formatting)
(31 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Equipment|Tools|Cooking tools}}
{{Items
{{Page version|41.78.16}}
|image = Roasting Pan.png
{{Infobox item
|weight = 1.3
|name=Roasting Pan
|model=RoastingPan_Model.png
|icon=Roastingpan.png
|icon_name=Roasting Pan
|category=Cooking
|weight=1.3
|function=[[Cooking]] utensil
|material=Metal
|material_value=60
|item_id=Base.RoastingPan
}}
}}
A '''roasting pan''' is a tool used in [[cooking]].


A kitchen tool used to make a broccoli chicken cheese casserole.  
==Usage==
A roasting pan is used in the preparation of [[Roasted Vegetables|roasted vegetables]], which is a customisable recipe.


== Crafting ==
==Crafting==
{| class="wikitable sortable" style="text-align:center;"  
 
|-  
===Cooking===
! Name
{{Main|Cooking}}
! class="unsortable" | Recipe
{{Crafting/sandbox2
! class="unsortable" | Description
|roasted_vegetables
{{RecipeLookup|2001}}
}}
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="2"|bakerykitchen
|[[counter]]
|4
|8
|-
|[[counter]]
|4
|1
|-
|departmentstorage
|[[metal_shelves]]
|4
|1
|-
|dinerbackroom
|[[counter]]
|4
|1
|}
|}


== Code ==
==Code==
<nowiki>item RoastingPan
{{CodeBox|
{
{{CodeSnip
Type = Normal,
  | lang = java
DisplayName = Roasting Pan,
  | line = true
Icon = Roastingpan,
  | start = 452
Weight = 1.3,
  | source = items.txt
} </nowiki>
  | retrieved = true
  | version = 41.78.16
  | code =
item RoastingPan
{
    DisplayCategory = Cooking,
Weight = 1.3,
Type = Normal,
DisplayName = Roasting Pan,
Icon = Roastingpan,
MetalValue = 60,
WorldStaticModel = RoastingPan,
}
}}
}}
 
==See also==
*[[Cooking]]
*[[Baking Pan]]
*[[Frying Pan]]
 
{{Navbox items|tools}}
 
 
[[Category:Tools]]
[[Category:Tools]]
[[Category:Version 0.2.0p]]

Revision as of 11:37, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Roasting Pan
RoastingPan Model.png
General
Category
Cooking
Encumbrance
Moodle Icon HeavyLoad.png
1.3
Function
Cooking utensil
Properties
Material
Metal
Metal quantity
60
Technical
Item ID
Base.RoastingPan

A roasting pan is a tool used in cooking.

Usage

A roasting pan is used in the preparation of roasted vegetables, which is a customisable recipe.

Crafting

Cooking

Main article: Cooking
Product Ingredients Tools Requirements Workstation XP
RoastingpanFull.png
Roasted Vegetables
Roastingpan.png Roasting Pan ×1
Soup Ingredients.png Roasted Vegetables Ingredients ×(1−6)
none none none 0.75 Cooking

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
bakerykitchen counter 4 8
counter 4 1
departmentstorage metal_shelves 4 1
dinerbackroom counter 4 1

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item RoastingPan
	{
	    DisplayCategory = Cooking,
		Weight	=	1.3,
		Type	=	Normal,
		DisplayName	=	Roasting Pan,
		Icon	=	Roastingpan,
		MetalValue = 60,
		WorldStaticModel = RoastingPan,
	}

See also