Money: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
m (Automated Formatting)
(23 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|version=Version 41|incver=50}}{{Infobox item
{{Header|Project Zomboid|Items|Miscellaneous items|Junk}}
| display_name = Money
{{Page version|41.78.16}}
| name_colour =  
{{Infobox item
| name_text_colour =
|name=Money
| model = Money.png
|model=Money_Model.png
| model_width = 128px
|icon=Money.png
| weight = 0.01
|model_width=128px
| function = ''None''
|weight=0.01
| class_name = Base.Money
|function=''None''
}}'''Money''' is a mostly useless item, serving mainly as clutter to make the {{T|player}}'s looting experience more realistic. It has no other current uses other than fire starting/fuel and is often considered ''junk''.
|item_id=Base.Money
}}
'''Money''' is a mostly useless item, serving mainly as clutter to make the player's looting experience more realistic. It has no other current uses other than fire starting/fuel and is often considered ''junk''.


==Usage==
==Usage==
Line 15: Line 17:


===Fuel===
===Fuel===
It can be used as a fuel for [[Heat source|fires]], and lasts for 5 minutes if done so.  
It can be used as a fuel for [[Heat source|fires]], and lasts for 5 minutes if done so.


==Distribution==
==Distribution==
Money can be found in [[Containers#Shop Counter|cash registers]] in stores and in [[Containers#Stashes|stashes]].
The loot distributions can be found in the table(s) below.


It can also be found in [[Duffel Bag]]s that are marked as Money Bags (which may replace Duffel bag stashes).
{| 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
|-
|rowspan="6"|all
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|rowspan="4"|laundry
|[[clothingdryer]]
|4
|0.5
|-
|[[clothingdryer]]
|4
|0.2
|-
|[[clothingdryer]]
|4
|0.2
|-
|[[clothingdryer]]
|4
|0.2
|}


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=50}}
| {{CodeSnip
<pre> item Money
  | lang = java
Weight = 0.01,
  | line = true
Type = Normal,
  | start = 5
DisplayName = Money,
  | source = newitems.txt
Icon = Money,
  | retrieved = true
</pre>
  | version = 41.78.16
  | code =
item Money
    {
        DisplayCategory = Junk,
        Weight = 0.01,
        Type = Normal,
        DisplayName = Money,
        Icon = Money,
        WorldStaticModel = Money,
    }
}}
}}
 
==See also==
{{Navbox items|junk}}

Revision as of 10:21, 14 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]
Money
Money Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.01
Function
None
Technical
Item ID
Base.Money

Money is a mostly useless item, serving mainly as clutter to make the player's looting experience more realistic. It has no other current uses other than fire starting/fuel and is often considered junk.

Usage

Fire starting

Money can be used as kindling for fire starting.

Fuel

It can be used as a fuel for fires, and lasts for 5 minutes if done so.

Distribution

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

Containers
Building/Room Container Rolls Chance
all plankstash 4 1
plankstash 4 1
plankstash 4 1
plankstash 4 1
plankstash 4 1
plankstash 4 1
laundry clothingdryer 4 0.5
clothingdryer 4 0.2
clothingdryer 4 0.2
clothingdryer 4 0.2

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

See also