Baking Tray: Difference between revisions

From PZwiki
m (→‎top: category project: "The Game World")
(→‎Code: CodeBox update)
Line 19: Line 19:


==Code==
==Code==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=78.16}}
| {{CodeSnip
<pre>
  | lang = java
item BakingTray
  | line = false
    {
  | start =
        DisplayCategory = Cooking,
  | source = items.txt
        Weight = 0.5,
  | retrieved = true
        Type = Normal,
  | version = 41
        DisplayName =   Baking Tray,
  | incver = 78.16
        Icon = BakingTray,
  | code =
        MetalValue = 60,
item BakingTray
        WorldStaticModel = BakingTray,
{
    }
    DisplayCategory = Cooking,
</pre>
    Weight = 0.5,
    Type = Normal,
    DisplayName = Baking Tray,
    Icon = BakingTray,
    MetalValue = 60,
    WorldStaticModel = BakingTray,
}
  }}
}}


==See also==
==See also==

Revision as of 08:23, 31 January 2024

Project ZomboidItemsToolsBaking Tray
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.

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