Wallet: Difference between revisions

From PZwiki
No edit summary
No edit summary
Line 3: Line 3:
|weight = 0.2
|weight = 0.2
}}
}}
A Wallet. Found on corpses.  
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.  


<!--== Crafting ==
<!--== Crafting ==
Line 14: Line 14:
| Ingredient + [[Ingredient]] || None || [[What the recipe makes]] || Brief description of what it makes.
| Ingredient + [[Ingredient]] || None || [[What the recipe makes]] || Brief description of what it makes.
|}-->
|}-->
== Code ==
<nowiki>
        item Wallet
{
Weight = 0.2,
Type = Normal,
DisplayName = Wallet,
Icon = Wallet_01,
}
item Wallet2
{
Weight = 0.2,
Type = Normal,
DisplayName = Wallet,
Icon = Wallet_02,
}
item Wallet3
{
Weight = 0.2,
Type = Normal,
DisplayName = Wallet,
Icon = Wallet_03,
}
item Wallet4
{
Weight = 0.2,
Type = Normal,
DisplayName = Wallet,
Icon = Wallet_04,
}
}</nowiki>


[[Category:items]]
[[Category:items]]

Revision as of 10:28, 31 July 2013

Template:Items 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.


Code

        item Wallet
	{
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_01,
	}

	item Wallet2
	{
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_02,
	}

	item Wallet3
	{
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_03,
	}

	item Wallet4
	{
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wallet,
		Icon	=	Wallet_04,
	}
}