TV Dinner: Difference between revisions

From PZwiki
No edit summary
(Updated to the latest version)
Line 2: Line 2:
{{Consumables
{{Consumables
|image = TV Dinner.png
|image = TV Dinner.png
|hunger = -30
|hunger = -20
|weight = 2
|weight = 0.4
}}
}}


Line 10: Line 10:
== Effects ==
== Effects ==
[[Boredom]]: 30<br>
[[Boredom]]: 30<br>
[[Hunger]]: -30<br>
[[Hunger]]: -20<br>
[[Unhappy]]: 25
[[Unhappy]]: 25


== Code ==
== Code ==
  <nowiki>item TVDinner
  <nowiki>
{
item TVDinner
Type = Food,
{
DisplayName = TV Dinner,
HungerChange = -20,
Icon = TVDinner,
Weight = 0.4,
Weight = 2,
Type = Food,
IsCookable = true,
IsCookable = TRUE,
MinutesToCook  = 10,
DangerousUncooked = TRUE,
MinutesToBurn   = 15,
UnhappyChange = 25,
HungerChange = -30,
MinutesToBurn = 15,
DangerousUncooked = true,
DisplayName = TV Dinner,
BoredomChange = 30,
Icon = TVDinner,
UnhappyChange = 25,
MinutesToCook = 10,
BoredomChange = 30,
}</nowiki>
}
</nowiki>


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

Revision as of 11:20, 10 February 2016


The T.V dinner is a nonperishable item found in many kitchen drawers. Although it manages to reduce hunger, it makes you character feel more bored and unhappy. It can be enhanced by cooking it, but as with all cookables, it can be burnt.

Effects

Moodles: 30
Hungry: -20
Unhappy: 25

Code

	item TVDinner
	{
		HungerChange	=	-20,
		Weight	=	0.4,
		Type	=	Food,
		IsCookable	=	TRUE,
		DangerousUncooked	=	TRUE,
		UnhappyChange	=	25,
		MinutesToBurn	=	15,
		DisplayName	=	TV Dinner,
		Icon	=	TVDinner,
		MinutesToCook	=	10,
		BoredomChange	=	30,
	}

Template:Navbox/Consumables