Doll: Difference between revisions

From PZwiki
m (128px)
m (Automated CodeBox update)
(22 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|version=Version 40|incver=43}}{{Infobox normal
{{Header|Project Zomboid|Items|Miscellaneous items|Junk}}
| display_name = Doll
{{Page version|41.78.16}}
| name_colour =  
{{Infobox item
| name_text_colour =
|name=Doll
| image = Doll.png
|model=Doll_Model.png
| image_width = 128px
|icon=Doll.png
| weight = 0.1
|icon_text=Doll
| function = ''None''
|weight=0.1
| class_name = Base.Doll
|function=''None''
}}'''Dolls''' are currently a useless {{T|item}}, and often considered as ''junk''.
|item_id=Base.Doll
}}
 
A '''doll''' is currently a useless [[Items|item]], labeled as ''junk''.


==Usage==
==Usage==
Dolls have no use, being added purely for the purpose of clutter, creating more realism for the {{T|player}} when looting.  
A doll has no use, being added purely for the purpose of clutter, creating more realism for the [[player]] when looting.


==Distribution==
==Distribution==
Dolls can be found in a number of places including wardrobes, desks, and stores.  
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
|-
|bedroom
|[[wardrobe]]
|4
|6
|-
|rowspan="3"|closet
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|rowspan="3"|daycare
|[[counter]]
|4
|4
|-
|[[desk]]
|4
|4
|-
|[[metal_shelves]]
|4
|4
|-
|rowspan="2"|garagestorage
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|rowspan="2"|generalstore
|[[shelves]]
|4
|1
|-
|[[shelves]]
|4
|2
|-
|prisoncells
|[[wardrobe]]
|4
|4
|}


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


==See also==
==See also==
*[[Toy Bear]]
*[[Toy Bear]]
*[[Toy Car]]
*[[Toy Car]]
*[[Plush toys]]
{{Navbox miscellaneous items|junk}}

Revision as of 10:34, 26 March 2024

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

A doll is currently a useless item, labeled as junk.

Usage

A doll has no use, being added purely for the purpose of clutter, creating more realism for the player when looting.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
bedroom wardrobe 4 6
closet crate 4 1
crate 4 1
crate 4 1
daycare counter 4 4
desk 4 4
metal_shelves 4 4
garagestorage crate 4 1
crate 4 2
generalstore shelves 4 1
shelves 4 2
prisoncells wardrobe 4 4

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

Template:Navbox miscellaneous items