Grilled Cheese Sandwich: Difference between revisions

From PZwiki
Grilled Cheese Sandwich
(Updated with new data and new template.)
Line 1: Line 1:
{{languages}}
{{languages}}{{Notice|Improve}}
{{Consumables
== 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.
{{Items
|image = Grilled Cheese Sandwich.png
|weight = 0.3
}}
{{Consumables2
|image = Grilled Cheese Sandwich.png
|image = Grilled Cheese Sandwich.png
|hunger = -105
|hunger = -80
|weight = 1
|perishable = 1
|cookable = 1
|boredom = -10
|unrotten hunger = 0
|unrotten unhappiness = 0
|rotten hunger = 0
|rotten unhappiness = 0
|unrottencooked hunger = -61
|unrottencooked unhappiness = +10
|unrottencooked boredom = -5
|rottencooked hunger = 0
|rottencooked unhappiness = 0
|cooked hunger = -104
|cooked unhappiness = -20
|cooked boredom = -35
|burned hunger = 0
|burned boredom = 0
|burned unhappiness = 0
|burned image = Grilled Cheese Sandwich.png
|rotten image = Grilled Cheese Sandwich.png
|cooked image = Grilled Cheese Sandwich.png
}}
}}
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.
== Effects ==
[[Boredom]]: -15<br>
[[Hunger]]: -105
== Crafting ==
{| class="wikitable sortable" style="text-align:center;"
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
{{RecipeLookup|2008}}
{{RecipeLookup|2012}}
|}
== Code ==
== Code ==
This code was taken from from version 0.2.0r and is out of date.
  <nowiki>item GrilledCheese
  <nowiki>item GrilledCheese
{
{

Revision as of 21:01, 7 December 2013

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

This code was taken from from version 0.2.0r and is out of date.

item GrilledCheese
{
	Type 			=			Food,
	DisplayName 		= 			Grilled Cheese Sandwich,
	Icon 			= 			Sandwich_Cheese,
	Weight 			= 			1,
	IsCookable 		= 			true,
	MinutesToCook 		= 			5,
	MinutesToBurn 		= 			8,
	HungerChange 		= 			-105,
	BoredomChange 		= 			-15,
	DaysFresh 		= 			2,
	DaysTotallyRotten 	= 			4,
	DangerousUncooked 	= 			false
}

Template:Navbox/Consumables