Baking Pan: Difference between revisions

From PZwiki
(New infobox + new layout)
m (Remove lines))
(32 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages|Baking Pan}}
{{Header|Project Zomboid|Items|Equipment|Tools|Cooking tools}}
{{header|The Game World|Items|Tools|type=Tool|version=Version 40|incver=8}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Baking Pan
{{Infobox item
|name_colour = Tool
|name=Baking Pan
|name_text_colour = Tool
|model=BakingPan_Model.png
|image = BakingPan_120px.png
|icon=BakingPan.png
|category = Item
|icon_name=Baking Pan
|weight = 0.1
|category=Item
|primary_use = [[Cooking]] utensil
|weight=0.1
|class_name = Base.BakingPan
|primary_use=[[Cooking]] utensil
}}A '''baking pan''' is a tool used in [[cooking]].
|item_id=Base.BakingPan
}}
A '''baking pan''' is a tool used in [[cooking]].


==Usage==
==Usage==
A baking pan is used in the preparation of [[cake]]s and [[pie]]s.
A baking pan is used in the preparation of [[cake]]s and [[pie]]s.


== Crafting ==
==Crafting==
===Cooking===
===Cooking===
{{Main|Cooking}}
{{Main|Cooking}}
{{Cooking table header}}
{{Crafting/sandbox2
{{RecipeLookup|2036}}
|cake_preparation
{{RecipeLookup|2037}}
|pie_preparation}}
{{Crafting table footer}}


==Distribution==
==Distribution==
Baking pans are commonly found in kitchens, both in houses and restaurants.
The loot distributions can be found in the table(s) below.


== Code ==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
! colspan="4" | Containers
{{Retrieved|version=40|incver=8}}
|-
<pre> item BakingPan
! Building/Room
Type = Normal,
! Container
DisplayName = Baking Pan,
! style="width: 3.2em;" | Rolls
Icon = BakingPan,
! style="width: 3.2em;" | Chance
Weight = 0.1,
|-
MetalValue = 60,</pre>
|rowspan="2"|bakerykitchen
|[[counter]]
|4
|8
|-
|[[counter]]
|4
|1
|-
|burgerkitchen
|[[counter]]
|4
|1
|-
|departmentstorage
|[[metal_shelves]]
|4
|1
|-
|dinerbackroom
|[[counter]]
|4
|1
|}
 
==Trivia==
*The baking pan is expected to be craftable in [[build 42]] as part of the smithing additions. It already has a crafting recipe requiring the [[blacksmith]] skill.
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 1429
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item BakingPan
{
    DisplayCategory = Cooking,
Type = Normal,
DisplayName =     Baking Pan,
Icon = BakingPan,
Weight = 0.1,
MetalValue = 60,
WorldStaticModel = BakingPan,
}
}}
}}


==See also==
==See also==
*[[Cooking|Cooking Guide]]
*[[Cooking]]
*[[Roasting Pan]]
*[[Roasting Pan]]
*[[Frying Pan]]
{{Navbox items|tools}}
[[Category:Tools]]

Revision as of 06:28, 15 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]
Baking Pan
BakingPan Model.png
General
Category
Item
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Cooking utensil
Technical
Item ID
Base.BakingPan

A baking pan is a tool used in cooking.

Usage

A baking pan is used in the preparation of cakes and pies.

Crafting

Cooking

Main article: Cooking
Product Ingredients Tools Requirements Workstation XP
Cake.png
Cake Preparation
BakingPan.png Baking Pan ×1
CakeBatter.png Cake Batter ×1
none none none 0.75 Cooking
PieWhole.png
Pie Preparation
RollingPin.png Rolling Pin ×1
BakingPan.png Baking Pan ×1
Dough.png Pie Dough ×1
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
burgerkitchen counter 4 1
departmentstorage metal_shelves 4 1
dinerbackroom counter 4 1

Trivia

  • The baking pan is expected to be craftable in build 42 as part of the smithing additions. It already has a crafting recipe requiring the blacksmith skill.

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item BakingPan
	{
	    DisplayCategory = Cooking,
		Type				=			Normal,
		DisplayName			=		    Baking Pan,
		Icon				=			BakingPan,
		Weight				=			0.1,
		MetalValue = 60,
		WorldStaticModel = BakingPan,
	}

See also