Cheese Sandwich: Difference between revisions

From PZwiki
mNo edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Cheese Sandwich}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
|display_name=Cheese Sandwich
|display_name=Cheese Sandwich
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Sandwich_cheese 120px.png
|image=Sandwich_cheese.png
|alternate_image=Sandwich_grilledcheese.png
|alternate_image=Sandwich_grilledcheese.png
|alternate_name=Grilled Cheese Sandwich
|alternate_name=Grilled Cheese Sandwich
Line 28: Line 27:


==Usage==
==Usage==
=== Consumable properties ===
 
===Consumable properties===
Cheese sandwich can be eaten, providing the player with some positive effects. Consuming after being cooked will reduce more hunger, however these will become negative the longer it's left to perish.
Cheese sandwich can be eaten, providing the player with some positive effects. Consuming after being cooked will reduce more hunger, however these will become negative the longer it's left to perish.
{{Consumables2
{{Consumables2
Line 81: Line 81:
|}
|}


== Crafting ==
==Crafting==
{{Main|Cooking}}
{{Main|Cooking}}
===Obtaining===
===Obtaining===
{{Crafting header|ing=2}}
{{Crafting header|ing=2}}
Line 105: Line 106:


<div class="mw-collapsible mw-collapsed">
<div class="mw-collapsible mw-collapsed">
== Code ==
==Code==
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
Cheese Sandwich [[File:Sandwich_cheese.png]]
Cheese Sandwich [[File:Sandwich_cheese.png]]
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41|incver=73}}
<pre>   item CheeseSandwich
<pre>
    item CheeseSandwich
{
{
DisplayName = Cheese Sandwich,
DisplayName = Cheese Sandwich,
Line 128: Line 130:
WorldStaticModel = CheeseSandwich,
WorldStaticModel = CheeseSandwich,
Tags = HideCooked,
Tags = HideCooked,
}</pre>
}
</pre>
Grilled Cheese Sandwich [[File:Sandwich_grilledcheese.png]]
Grilled Cheese Sandwich [[File:Sandwich_grilledcheese.png]]
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41|incver=73}}
<pre>   item GrilledCheese
<pre>
    item GrilledCheese
{
{
DisplayName = Grilled Cheese Sandwich,
DisplayName = Grilled Cheese Sandwich,
Line 153: Line 157:
WorldStaticModel = GrilledCheese,
WorldStaticModel = GrilledCheese,
Tags = AlreadyCooked;HideCooked,
Tags = AlreadyCooked;HideCooked,
}</pre>
}
</pre>
</div>
</div>


Line 160: Line 165:
*[[Burger]]
*[[Burger]]


{{Navbox_food}}
{{Navbox food}}

Revision as of 13:26, 26 February 2023

Project ZomboidItemsFoodPerishable FoodCheese Sandwich
Cheese Sandwich
Cheese Sandwich
Grilled Cheese Sandwich
General
Category Food
Encumbrance
Heavy Load
0.3
Days until stale 2 days
Days until rotten 2 days
Nutrition
Hunger
Hunger
See Consumable properties
Calories
Calories
See Nutrition
Carbohydrates
Carbohydrates
See Nutrition
Proteins
Proteins
See Nutrition
Fat
Fat
See Nutrition
Cooking
Time until cooked 4 minutes
Time until burned 16 minutes
Technical details
Item ID Base.CheeseSandwich
Base.GrilledCheese
PlushSpiffo.pngThis article is about sandwiches that spawn naturally. For sandwiches made by the player, see Recipe ingredients.

Cheese sandwich is a perishable food item.

Usage

Consumable properties

Cheese sandwich can be eaten, providing the player with some positive effects. Consuming after being cooked will reduce more hunger, however these will become negative the longer it's left to perish. Template:Consumables2

Nutrition

Sandwich Calories Carbohydrates Proteins Lipids
Sandwich cheese.png 113 0.87 6.4 9.33
Sandwich grilledcheese.png 366 28 12 22.5

Crafting

Main article: Cooking

Obtaining

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Sandwich cheese.png
Cheese Sandwich
0.75 Cooking none BreadSlices.png
Bread Slices
(consumed)

(consumed)

Template:Crafting table footer

Cooking

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Grilled Cheese Sandwich
Grilled Cheese Sandwich
2.5 Cooking none Heat source.gif
Heat source
(Cooked: 4 mins)
Cheese Sandwich
Cheese Sandwich
(consumed)

Distribution

Cheese sandwich can often found inside displays in restaurant, or in satchel.

Gallery

Code

From items_food.txt (Project Zomboid directory/media/scripts/)

Cheese Sandwich Sandwich cheese.png Retrieved: Build 41.73

    item CheeseSandwich
	{
		DisplayName = Cheese Sandwich,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = Sandwich_cheese,
		IsCookable = true,
		ReplaceOnCooked = GrilledCheese,
		MinutesToCook = 4,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -15,
		Calories = 366,
		Carbohydrates = 28,
		Lipids = 22.5,
		Proteins = 12,
		WorldStaticModel = CheeseSandwich,
		Tags = HideCooked,
	}

Grilled Cheese Sandwich Sandwich grilledcheese.png Retrieved: Build 41.73

    item GrilledCheese
	{
		DisplayName = Grilled Cheese Sandwich,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = Sandwich_grilledcheese,
		BadInMicrowave = true,
		IsCookable = TRUE,
		MinutesToCook = 0,
		MinutesToBurn = 20,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -16,
		UnhappyChange = -5,
		Calories = 366,
		Carbohydrates = 28,
		Lipids = 22.5,
		Proteins = 12,
		CustomEatSound = EatingCrispy,
		WorldStaticModel = GrilledCheese,
		Tags = AlreadyCooked;HideCooked,
	}

See also