Dog Chew Toy: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
m (Distribution table update)
(25 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|version=Version 40|incver=43}}{{Infobox item
{{Header|Project Zomboid|Items|Miscellaneous items|Junk}}
| display_name = Dog Chew Toy
{{Page version|41.78.16}}
| name_colour =  
{{Infobox item
| name_text_colour =
|name=Dog Chew Toy
| model = DogChew.png
|model=DogChewToy_Model.png
| model_width = 128px
|icon=DogChew.png
| weight = 0.1
|weight=0.1
| function = ''None''
|function=''None''
| class_name = Base.DogChew
|item_id=Base.DogChew
}}A '''dog chew toy''' is currently a useless {{T|item}}, and often considered as ''junk''.
}}
A '''dog chew toy''' is currently a useless {{ll|item}}, and often considered as ''junk''.


==Usage==
==Usage==
A dog chew toy has no use, being added purely for the purpose of clutter, creating more realism for the {{T|player}} when looting.  
A dog chew toy has no use, being added purely for the purpose of clutter, creating more realism for the {{ll|player}} when looting.


==Distribution==
==Distribution==
Dog chew toys can be found in glove boxes and on seats in [[vehicles]].
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|DogChew|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>DogChew distribution
        <span class="mw-customtoggle-togglebox-DogChew" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-DogChew">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | Not referenced
    | {{ll|PetShopShelf}}
    | 4
    | 6.0
    |-
    | bedroom
    | {{ll|crate}}
    | 1
    | 0.6
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 6.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-DogChew" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|DogChew|41.78.16-->


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


==See also==
==See also==
*[[Cat Toy]]
*[[Cat Toy]]
*[[Tennis Ball]]
*[[Tennis Ball]]
{{Navbox items|junk}}

Revision as of 15:22, 24 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]
Dog Chew Toy
DogChewToy Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
None
Technical
Item ID
Base.DogChew

A dog chew toy is currently a useless item, and often considered as junk.

Usage

A dog chew toy 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.

DogChew distribution Show / Hide
Containers
Building / Room Container Rolls Chance
Not referenced PetShopShelf 4 6.0
bedroom crate 1 0.6
closet crate 4 6.0

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 DogChew
    {
        DisplayCategory = Junk,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Dog Chew Toy,
        Icon	=	DogChew,
        WorldStaticModel = DogChewToy,
    }

See also