Cheese Sandwich

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Cheese Sandwich
CheeseSandwich Model.png
Grilled Cheese Sandwich
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Days fresh
2 days
Days until rotten
4 days
Nutrition
CaloriesCalories
CarbohydratesCarbohydrates
ProteinsProteins
FatFat
Cooking
Time until cooked
4 minutes
Time until burned
16 minutes
Technical
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.

Fresh Stale Rotten
Uncooked

Sandwich cheese.png
Hunger: -15


Sandwich cheese.png
Hunger: -11
Boredom: +10
Unhappiness: +10

Sandwich cheese.png

Hunger: -6
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Cooked

Sandwich grilledcheese.png
Hunger: -20

Unhappiness: +5

Sandwich grilledcheese.png
Hunger: -12
Boredom: +10
Unhappiness: -5

Sandwich grilledcheese.png
Hunger: -7
Boredom: +20
Unhappiness: -15
Dangerous, will cause sickness.

Burned

Sandwich grilledcheese.png
Hunger: -5
Boredom: +20
Unhappiness: +15
Dangerous, will cause sickness.

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 Ingredients Tools Requirements Workstation XP
Sandwich cheese.png
Cheese Sandwich
One of:
Cheese.png Cheese ×1
Processedcheese.png Processed Cheese ×1
Each of:
BreadSlices.png Bread Slices ×1
none none none 0.75 Cooking

Cooking

Product Ingredients Tools Requirements Workstation XP
Sandwich grilledcheese.png
Grilled Cheese Sandwich
Sandwich cheese.png Cheese Sandwich ×1 none none Heat source.gif
Heat source
2.5 Cooking

Distribution

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

Gallery

Trivia

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Base.CheeseSandwich
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
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,
	}

Base.GrilledCheese
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
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