Frog: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
(→‎Code: CodeBox update)
Line 53: Line 53:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.78.16}}
| {{CodeSnip
<pre>
  | lang = java
    item Frog
  | line = false
    {
  | source = newitems.txt
        DisplayCategory = Food,
  | retrieved = true
        Weight = 0.4,
  | version = 41
        Type = Normal,
  | incver = 78.16
        DisplayName = Frog,
  | code =
        Icon = Frog,
item Frog
        WorldStaticModel = Frog_Ground,
{
    }
  DisplayCategory = Food,
</pre>
  Weight       = 0.4,
  Type         = Normal,
  DisplayName   = Frog,
  Icon         = Frog,
  WorldStaticModel = Frog_Ground,
}
  }}
}}


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

Revision as of 09:09, 31 January 2024

Template:Header/sandbox2

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frog
Frog Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.4
Technical
Item ID
Base.Frog

A frog is an animal which is found via foraging. A high level of foraging is required to find frogs. Currently due to being a live animal, frogs do not spoil and can be slaughtered for frog meat at any time and currently don't need anything to survive. It is inedible in non-butchered form.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Frogmeat.png
Frog Meat
2.5 Cooking none
(keep)
Frog.png
Frog
(consumed)

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 Frog
{
  DisplayCategory = Food,
  Weight        = 0.4,
  Type          = Normal,
  DisplayName   = Frog,
  Icon          = Frog,
  WorldStaticModel = Frog_Ground,
}

See also