Baking Tray: Difference between revisions

From PZwiki
(→‎Code: CodeBox update)
m (Remove lines))
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Equipment|Tools|Cooking tools}}
{{Header|Project Zomboid|Items|Tools|type=Tool|version=Version 41|incver=71}}
{{Page version|41.78.16}}
{{Stub}}
{{Stub}}
{{Infobox item
{{Infobox item
|display_name=Baking Tray
|name=Baking Tray
|name_colour=Tool
|model=BakingTray_Model.png
|name_text_colour=Tool
|model=BakingTray_Model.png  
|icon=BakingTray.png
|icon=BakingTray.png
|icon_name=Baking Tray
|icon_name=Baking Tray
Line 14: Line 12:
|material=Metal
|material=Metal
|material_value=60
|material_value=60
|class_name=Base.BakingTray
|item_id=Base.BakingTray
}}
}}
A '''baking tray''' is a tool used in cooking.
A '''baking tray''' is a tool used in cooking.
==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
|-
|burgerkitchen
|[[counter]]
|4
|1
|-
|departmentstorage
|[[metal_shelves]]
|4
|8
|-
|dinerbackroom
|[[counter]]
|4
|1
|-
|druglab
|[[counter]]
|4
|1
|-
|rowspan="2"|pizzakitchen
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|2
|}


==Code==
==Code==
Line 22: Line 72:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
   | start =  
   | start = 32
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 78.16
   | code =
   | code =
item BakingTray
item BakingTray
{
    {
    DisplayCategory = Cooking,
        DisplayCategory = Cooking,
    Weight = 0.5,
        Weight = 0.5,
    Type = Normal,
        Type = Normal,
    DisplayName = Baking Tray,
        DisplayName =   Baking Tray,
    Icon = BakingTray,
        Icon = BakingTray,
    MetalValue = 60,
        MetalValue = 60,
    WorldStaticModel = BakingTray,
        WorldStaticModel = BakingTray,
}
    }
  }}
}}
}}
}}


Line 45: Line 94:
*[[Baking Pan]]
*[[Baking Pan]]


{{Navbox equipment}}
{{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]
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Baking Tray
BakingTray Model.png
General
Category
Cooking
Encumbrance
Moodle Icon HeavyLoad.png
0.5
Function
Cooking utensil
Properties
Material
Metal
Metal quantity
60
Technical
Item ID
Base.BakingTray

A baking tray is a tool used in 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 8
dinerbackroom counter 4 1
druglab counter 4 1
pizzakitchen counter 4 1
counter 4 2

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 BakingTray
    {
        DisplayCategory = Cooking,
        Weight	=	0.5,
        Type	=	Normal,
        DisplayName	=   Baking Tray,
        Icon	=	BakingTray,
        MetalValue = 60,
        WorldStaticModel = BakingTray,
    }

See also