Peanut Butter Sandwich: Difference between revisions

From PZwiki
No edit summary
m (Just found one in a restaurant. Updated info and code.)
Line 2: Line 2:
{{Consumables
{{Consumables
|image = Peanut Butter Sandwich.png
|image = Peanut Butter Sandwich.png
|hunger = -84
|hunger = -40
|weight = 1
|weight = 0.4
}}
}}


A food item that is randomly found in kitchen drawers of a house. It is nonperishable, and it reduces a good deal of hunger, as well as unhappiness and boredom. As of 0.2.0q, it is impossible to make.
A food item that is randomly found in kitchen drawers of a houses or restaurants. It is nonperishable, and it reduces a good amount of hunger, as well as unhappiness and boredom. As of 0.2.0q, it is impossible to make.


== Effects ==
== Effects ==
[[Boredom]]: -5<br>
[[Hunger]]: -40<br>
[[Hunger]]: -84<br>
[[Unhappy]]: -10
[[Unhappy]]: -15




Line 19: Line 18:


== Code ==
== Code ==
  <nowiki>item PeanutButter
  <nowiki>item PeanutButterSandwich
{
{
Type = Food,
HungerChange = -40,
DisplayName = Peanut Butter Sandwich,
Weight = 0.4,
Icon = Sandwich_Peanut,
Type = Food,
Weight = 1,
UnhappyChange = -10,
HungerChange = -84,
DisplayName = Peanut Butter Sandwich,
BoredomChange = -5,
Icon = Sandwich_peanut,
UnhappyChange = -15,
}</nowiki>
}</nowiki>


{{Navbox/Consumables}}
{{Navbox/Consumables}}

Revision as of 17:16, 28 July 2014


A food item that is randomly found in kitchen drawers of a houses or restaurants. It is nonperishable, and it reduces a good amount of hunger, as well as unhappiness and boredom. As of 0.2.0q, it is impossible to make.

Effects

Hungry: -40
Unhappy: -10




Code

item PeanutButterSandwich
	{
		HungerChange	=	-40,
		Weight	=	0.4,
		Type	=	Food,
		UnhappyChange	=	-10,
		DisplayName	=	Peanut Butter Sandwich,
		Icon	=	Sandwich_peanut,
	}

Template:Navbox/Consumables