Grilled Cheese Sandwich: Difference between revisions

From PZwiki
Grilled Cheese Sandwich
(Updated with new data and new template.)
mNo edit summary
Line 11: Line 11:
|perishable = 1
|perishable = 1
|cookable = 1
|cookable = 1
|boredom = -10
|boredom = -15
|unrotten hunger = 0
|unrotten hunger = 0
|unrotten unhappiness = 0
|unrotten unhappiness = 0
Line 32: Line 32:
}}
}}
== Code ==
== Code ==
This code was taken from from version 0.2.0r and is out of date.
  <nowiki>item GrilledCheese
  <nowiki>item GrilledCheese
{
{
Type = Food,
HungerChange = -80,
DisplayName = Grilled Cheese Sandwich,
Type = Food,
Icon = Sandwich_Cheese,
DisplayName = Grilled Cheese Sandwich,
Weight = 1,
MinutesToCook = 5,
IsCookable = true,
Weight = 0.3,
MinutesToCook = 5,
IsCookable = TRUE,
MinutesToBurn = 8,
DaysTotallyRotten = 4,
HungerChange = -105,
DangerousUncooked = FALSE,
BoredomChange = -15,
MinutesToBurn = 8,
DaysFresh = 2,
Icon = Sandwich_grilledcheese,
DaysTotallyRotten = 4,
BoredomChange = -15,
DangerousUncooked = false
DaysFresh = 2,
}</nowiki>
}</nowiki>



Revision as of 15:48, 8 July 2014

WhiskeyHalf.png
This article may be in need of improvement.
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.

Description

The grilled cheese sandwich is a food that is made when the player puts combines a cheese sandwich with a piece of butter and a frying pan, or by putting a piece of bread, a frying pan, a piece of butter, and some cheese. Unlike the standard cheese sandwich, the grilled cheese sandwich is a perishable item. However, it is much more effective than the standard cheese sandwich. Template:Items Template:Consumables2

Code

item GrilledCheese
{
	HungerChange	=	-80,
	Type	=	Food,
	DisplayName	=	Grilled Cheese Sandwich,
	MinutesToCook	=	5,
	Weight	=	0.3,
	IsCookable	=	TRUE,
	DaysTotallyRotten	=	4,
	DangerousUncooked	=	FALSE,
	MinutesToBurn	=	8,
	Icon	=	Sandwich_grilledcheese,
	BoredomChange	=	-15,
	DaysFresh	=	2,
}

Template:Navbox/Consumables