Bleach: Difference between revisions

From PZwiki
No edit summary
(-- +Category:Poison, added effects, now has a use, updated code)
Line 2: Line 2:
|image = Bleach.png
|image = Bleach.png
|weight = 0.3
|weight = 0.3
|thirst = -60
}}
}}
A jug of bleach once used to remove stains from clothing and other surfaces. No use in game currently.
A jug of bleach once used to remove stains from clothing and other surfaces. You can drink bleach, but it is a poison. You will die if you do so.
 
==Effects==
[[Unhappy]]: -10 (seems to be a bug, it's listed twice [build 11])
 
[[Thirst]]: -60
 
[[Poison]]


== Code ==
== Code ==
  <nowiki>item Bleach
  <nowiki>
{
item Bleach
Weight = 0.3,
{
Type = Normal,
HungerChange = -0,
UnhappyChange = 1000,
Weight = 0.3,
Type = Food,
UnhappyChange = -10,
ThirstChange = -60,
DisplayName = Bleach,
DisplayName = Bleach,
Icon = Bleach,
Icon = Bleach,
Poison = true,
}
</nowiki>
</nowiki>


[[category:Items]]
[[Category:Items]]
[[Category:Poison]]

Revision as of 23:34, 12 November 2013

Template:Items A jug of bleach once used to remove stains from clothing and other surfaces. You can drink bleach, but it is a poison. You will die if you do so.

Effects

Unhappy: -10 (seems to be a bug, it's listed twice [build 11])

Moodles: -60

Poison

Code

	item Bleach
	{
		HungerChange	=	-0,
		UnhappyChange	=	1000,		
		Weight		=	0.3,
		Type		=	Food,
		UnhappyChange	=	-10,
		ThirstChange	=	-60,
		DisplayName	=	Bleach,
		Icon		=	Bleach,
		Poison 		= 	true,
	}