Cheese Sandwich: Difference between revisions

From PZwiki
m (Category Project: Miscellaneous food)
(→‎top: New infobox upgrade - Food)
Line 2: Line 2:
{{header/sandbox2|Project Zomboid|Items|Food|Miscellaneous food}}
{{header/sandbox2|Project Zomboid|Items|Food|Miscellaneous food}}
{{page version|41.73}}
{{page version|41.73}}
{{Infobox food
{{Infobox item
|display_name=Cheese Sandwich
|name=Cheese Sandwich
|name_colour=Food
|model=CheeseSandwich_Model.png
|name_text_colour=Food
|icon=Sandwich_cheese.png
|image=CheeseSandwich_Model.png
|icon_name=Cheese Sandwich
|image_width=200px
|icon2=Sandwich_grilledcheese.png
|alternate_image=Sandwich_cheese.png
|icon_name2=Grilled Cheese Sandwich
|alternate_name=Cheese Sandwich
|alternate_image2=Sandwich_grilledcheese.png
|alternate_name2=Grilled Cheese Sandwich
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 27: Line 24:
|burn_minutes=16
|burn_minutes=16
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.CheeseSandwich<br>Base.GrilledCheese
|item_id=Base.CheeseSandwich<br>Base.GrilledCheese
}}{{About|sandwiches that spawn naturally|sandwiches made by the player|Recipe Ingredients#Sandwich & Burger Ingredients}}
}}{{About|sandwiches that spawn naturally|sandwiches made by the player|Recipe Ingredients#Sandwich & Burger Ingredients}}
'''Cheese sandwich''' is a [[Food#Perishable|perishable]] food [[item]].  
'''Cheese sandwich''' is a [[Food#Perishable|perishable]] food [[item]].  

Revision as of 10:54, 29 January 2024

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.73).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
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 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

Trivia

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