Wallet: Difference between revisions

From PZwiki
No edit summary
m (Insert empty line above each {{Navbox}})
 
(27 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{languages|Wallet}}
{{Header|Project Zomboid|Items|Miscellaneous items|Junk}}
{{Items
{{Page version|41.78.16}}
|image = Wallet.png  
{{Infobox item
|weight = 0.2
|name=Wallet
|model=Wallet_Model.png
|icon=Wallet_01.png
|icon_name=Wallet
|model2=Wallet2_Model.png
|icon2=Wallet_02.png
|icon_name2=Wallet
|model3=Wallet3_Model.png
|icon3=Wallet_03.png
|icon_name3=Wallet
|model4=Wallet4_Model.png
|icon4=Wallet_04.png
|icon_name4=Wallet
|category=Junk
|weight=0.2
|function=''None''
|item_id=''See [[#Item IDs|Item IDs]]
}}
}}
A Wallet that comes in 4 designs, which are all usually found on corpses. Currently, they do not contain any money since money isn't included in the game.  
A '''wallet''' is a useless [[Items|item]] with 4 different variants.


<!--== Crafting ==
==Usage==
ITEM NAME can be used in the following recipes:
Wallets are currently useless, and do not contain any money or form of identification.


{| class="wikitable" width="550" style="text-align:center;"
==Distribution==
Wallets are commonly found on [[corpse]]s.
 
==Gallery==
<gallery>
File:Wallet_Model.png|Wallet1 model [[File:Wallet_01.png]]
File:Wallet2_Model.png|Wallet2 model [[File:Wallet_02.png]]
File:Wallet3_Model.png|Wallet3 model [[File:Wallet_03.png]]
File:Wallet4_Model.png|Wallet4 model [[File:Wallet_04.png]]
</gallery>
 
==Item IDs==
{| class="wikitable theme-red" style="text-align:center;"
! style="width:50px" | Icon
! style="width:200px" | Name
! style="width:220px" | Item ID
|-
| [[File:Wallet_01.png]]
| Wallet
| {{ID|Base.Wallet}}
|-
| [[File:Wallet_02.png]]
| Wallet
| {{ID|Base.Wallet2}}
|-
|-
! Ingredients || Other Items || Output || Description
| [[File:Wallet_03.png]]
| Wallet
| {{ID|Base.Wallet3}}
|-
|-
| Ingredient + [[Ingredient]] || None || [[What the recipe makes]] || Brief description of what it makes.
| [[File:Wallet_04.png]]
|}-->
| Wallet
| {{ID|Base.Wallet4}}
|-
|}


== Code ==
== Code ==
<nowiki>
{{CodeBox|
        item Wallet
''Wallet'' [[File:Wallet_01.png]]<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1881
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Wallet
{
{
    DisplayCategory = Junk,
Weight = 0.2,
Weight = 0.2,
Type = Normal,
Type = Normal,
DisplayName = Wallet,
DisplayName = Wallet,
Icon = Wallet_01,
Icon = Wallet_01,
WorldStaticModel = Wallet,
}
}
}}


item Wallet2
''Wallet'' [[File:Wallet_02.png]]<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1891
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Wallet2
{
{
    DisplayCategory = Junk,
Weight = 0.2,
Weight = 0.2,
Type = Normal,
Type = Normal,
DisplayName = Wallet,
DisplayName = Wallet,
Icon = Wallet_02,
Icon = Wallet_02,
WorldStaticModel = Wallet2,
}
}
}}


item Wallet3
''Wallet'' [[File:Wallet_03.png]]<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1901
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Wallet3
{
{
    DisplayCategory = Junk,
Weight = 0.2,
Weight = 0.2,
Type = Normal,
Type = Normal,
DisplayName = Wallet,
DisplayName = Wallet,
Icon = Wallet_03,
Icon = Wallet_03,
WorldStaticModel = Wallet3,
}
}
}}


item Wallet4
''Wallet'' [[File:Wallet_04.png]]<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1911
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Wallet4
{
{
    DisplayCategory = Junk,
Weight = 0.2,
Weight = 0.2,
Type = Normal,
Type = Normal,
DisplayName = Wallet,
DisplayName = Wallet,
Icon = Wallet_04,
Icon = Wallet_04,
WorldStaticModel = Wallet4,
}
}
}</nowiki>
}}
}}
 
==See also==
* [[Purse]]
* [[Money]]


[[Category:items]]
{{Navbox items|junk}}

Latest revision as of 16:02, 25 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]
Wallet
Wallet Model.png
Wallet2 Model.png
Wallet3 Model.png
Wallet4 Model.png
General
Category
Junk
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
None
Technical
Item ID

A wallet is a useless item with 4 different variants.

Usage

Wallets are currently useless, and do not contain any money or form of identification.

Distribution

Wallets are commonly found on corpses.

Gallery

Item IDs

Icon Name Item ID
Wallet 01.png Wallet Base.Wallet
Wallet 02.png Wallet Base.Wallet2
Wallet 03.png Wallet Base.Wallet3
Wallet 04.png Wallet Base.Wallet4

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Wallet Wallet 01.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Wallet
	{
	    DisplayCategory = Junk,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_01,
		WorldStaticModel = Wallet,
	}

Wallet Wallet 02.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Wallet2
	{
	    DisplayCategory = Junk,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_02,
		WorldStaticModel = Wallet2,
	}

Wallet Wallet 03.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Wallet3
	{
	    DisplayCategory = Junk,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_03,
		WorldStaticModel = Wallet3,
	}

Wallet Wallet 04.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Wallet4
	{
	    DisplayCategory = Junk,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_04,
		WorldStaticModel = Wallet4,
	}

See also