Cheese Sandwich

From PZwiki
Revision as of 01:27, 28 February 2023 by Faalagorn (talk | contribs) (Remove obsolete template)
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)

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