Empty Bottle (Water): Difference between revisions

From PZwiki
Empty Bottle (Water)
mNo edit summary
(Added basic description)
Line 2: Line 2:
{{Items  
{{Items  
|image = Water Bottle Empty.png
|image = Water Bottle Empty.png
|weight = 0.5
|weight = 0.1
}}
}}
The rarer of the 2 types of "normal" water bottles. It is commonly found in trash cans and in refrigerators. This water bottle is drunken out of automatically.
== Code ==
== Code ==
  <nowiki>item WaterBottleEmpty
  <nowiki>item WaterBottleEmpty
{
{
Type = Normal,
Type = Normal,
DisplayName = Empty Bottle,
DisplayName = Empty Bottle,
Icon = WaterBottle_Empty,
Icon = WaterBottle_Empty,
Weight = .5,
Weight = 0.1,
ReplaceOnUseOn  = WaterSource-WaterBottleFull,
ReplaceOnUseOn  = WaterSource-WaterBottleFull,
CanStoreWater = true
CanStoreWater = true
}</nowiki>
}</nowiki>
[[Category:Version 0.2.0p]]
[[Category:Version 0.2.0p]]
[[Category:Tools]]
[[Category:Tools]]

Revision as of 07:51, 5 May 2013

Template:Items

The rarer of the 2 types of "normal" water bottles. It is commonly found in trash cans and in refrigerators. This water bottle is drunken out of automatically.

Code

item WaterBottleEmpty
{
Type				=			Normal,
		DisplayName			=			Empty Bottle,
		Icon				=			WaterBottle_Empty,
		Weight				=			0.1,
		ReplaceOnUseOn  	=			WaterSource-WaterBottleFull,
		CanStoreWater		=			true
}