Doll: Difference between revisions

From PZwiki
(Added model. Removed image improvement tag. Retrieved code for Build 41.78.16 (was 40.43).)
(→‎Code: code box update)
Line 19: Line 19:


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


==See also==
==See also==
*[[Toy Bear]]
*[[Toy Bear]]
*[[Toy Car]]
*[[Toy Car]]

Revision as of 08:42, 8 January 2024

Doll
Doll Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
None
Technical
Item ID
Base.Doll

Dolls are currently a useless item, and often considered as junk.

Usage

Dolls have no use, being added purely for the purpose of clutter, creating more realism for the player when looting.

Distribution

Dolls can be found in a number of places including wardrobes, desks, and stores.

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 Doll
{
  DisplayCategory   = Junk,
  Type              = Normal,
  DisplayName       = Doll,
  Icon              = Doll,
  Weight            = 0.1,
  WorldStaticModel  = Doll,
}

See also