Money: Difference between revisions

From PZwiki
(Automated update of distribution header)
m (Automated Formatting)
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Miscellaneous items|Junk}}
{{header/sandbox2|Project Zomboid|Items|Miscellaneous items|Junk}}
{{Page version|41.78.16}}
{{page version|41.50}}
{{Infobox item
{{Infobox item
| display_name = Money
|name=Money
| name_colour =
|model=Money_Model.png
| name_text_colour =
|icon=Money.png
| model=Money_Model.png
|model_width=128px
| icon=Money.png
|weight=0.01
| model_width = 128px
|function=''None''
| weight = 0.01
|item_id=Base.Money
| function = ''None''
| class_name = 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''.
'''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''.
Line 20: 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.


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 29: Line 25:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="5"|all  
|rowspan="6"|all
| [[plankstash]]  
|[[plankstash]]
| 4  
|4
| 1
|1
|-
|-
|[[plankstash]]
|[[plankstash]]
Line 55: Line 51:
|1
|1
|-
|-
| rowspan="4"|laundry  
|[[plankstash]]
| [[clothingdryer]]  
|4
| 4  
|1
| 0.5
|-
|rowspan="4"|laundry
|[[clothingdryer]]
|4
|0.5
|-
|-
|[[clothingdryer]]
|[[clothingdryer]]
Line 78: Line 78:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 5
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 50
   | code =
   | code =
item Money
item Money
{
    {
  Weight     = 0.01,
        DisplayCategory = Junk,
  Type       = Normal,
        Weight = 0.01,
  DisplayName = Money,
        Type = Normal,
  Icon       = Money,
        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