Roasting Pan: Difference between revisions

From PZwiki
m (Automated Formatting for Infobox and Section Headers)
m (Distribution table update)
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Equipment|Tools|Cooking tools}}
{{Header|Project Zomboid|Items|Equipment|Tools|Cooking tools}}
{{Page version|40.8}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Roasting Pan
|name=Roasting Pan
|model=RoastingPan_Model.png
|model=RoastingPan_Model.png
|icon=Roastingpan.png
|icon=Roastingpan.png
Line 11: Line 11:
|material=Metal
|material=Metal
|material_value=60
|material_value=60
|class_name=Base.RoastingPan
|item_id=Base.RoastingPan
}}
}}
A '''roasting pan''' is a tool used in [[cooking]].
A '''roasting pan''' is a tool used in [[cooking]].


Line 23: Line 22:
===Cooking===
===Cooking===
{{Main|Cooking}}
{{Main|Cooking}}
{{Crafting header|ing=2}}
{{Crafting/sandbox2
{{Crafting cooking|313|ing=2}}
|roasted_vegetables
|}
}}


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
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;"
<!--BOT FLAG|RoastingPan|41.78.16-->
! colspan="4" | Containers
{{clear}}
|-
<div class="togglebox theme-red">
!Building/Room
    <div>RoastingPan distribution
!Container
        <span class="mw-customtoggle-togglebox-RoastingPan" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
! style="width: 3.2em;" |Rolls
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-RoastingPan">
! style="width: 3.2em;" |Chance
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
|-
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
| rowspan="1"|bakerykitchen
    |+ {{ll|Containers}}
| [[counter]]
    ! Building / Room
| 4
    ! Container
| 1
    ! Rolls
|-
    ! Chance
| rowspan="1"|departmentstorage
    |-
| [[metal_shelves]]
    | bakerykitchen
| 4
    | {{ll|counter}}
| 1
    | 4
|-
    | 10.0
| rowspan="1"|dinerbackroom
    |-
| [[counter]]
    | departmentstorage
| 4
    | {{ll|metal_shelves}}
| 1
    | 4
|}
    | 10.0
    |-
    | dinerbackroom
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | kitchen
    | {{ll|counter}}
    | 4
    | 8.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-RoastingPan" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|RoastingPan|41.78.16-->


==Code==
==Code==
(ProjectZomboid\media\scripts\items.txt)
{{CodeBox|
<pre>
{{CodeSnip
item RoastingPan
  | lang = java
  | line = true
  | start = 452
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item RoastingPan
{
{
    DisplayCategory = Cooking,
    DisplayCategory = Cooking,
Line 67: Line 88:
WorldStaticModel = RoastingPan,
WorldStaticModel = RoastingPan,
}
}
</pre>
}}
}}


==See also==
==See also==
Line 74: Line 96:
*[[Frying Pan]]
*[[Frying Pan]]


{{Navbox equipment}}
{{Navbox items|tools}}
 
 
[[Category:Tools]]
[[Category:Tools]]

Revision as of 16:28, 24 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.

RoastingPan distribution Show / Hide
Containers
Building / Room Container Rolls Chance
bakerykitchen counter 4 10.0
departmentstorage metal_shelves 4 10.0
dinerbackroom counter 4 10.0
kitchen counter 4 8.0

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