TV Dinner: Difference between revisions

From PZwiki
No edit summary
m (-- code formatting)
Line 20: Line 20:
  <nowiki>item TVDinner
  <nowiki>item TVDinner
{
{
Type = Food,
Type = Food,
DisplayName = TV Dinner,
DisplayName = TV Dinner,
Icon = TVDinner,
Icon = TVDinner,
Weight = 2,
Weight = 2,
IsCookable = true,
IsCookable = true,
MinutesToCook  = 10,
MinutesToCook  = 10,
MinutesToBurn  = 15,
MinutesToBurn  = 15,
HungerChange = -30,
HungerChange = -30,
DangerousUncooked = true,
DangerousUncooked = true,
BoredomChange = 30,
BoredomChange = 30,
UnhappyChange = 25,
UnhappyChange = 25,
}</nowiki>
}</nowiki>

Revision as of 01:08, 13 November 2013


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: -30
Unhappy: 25



Code

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

Template:Navbox/Consumables