Coffee: Difference between revisions

From PZwiki
mNo edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Coffee}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}
{{Infobox food
{{Infobox food
|display_name=Coffee
|display_name=Coffee
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Coffee_120px.png
|image=Coffee.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 22: Line 21:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Coffee2
|class_name=Base.Coffee2
}}
}}'''Coffee''' is a [[Food#Non-Perishable|non-perishable]] food [[item]].  
'''Coffee''' is a [[Food#Non-Perishable|non-perishable]] food [[item]].  


== Usage ==
==Usage==
Coffee can be eaten raw, providing the player with some positive and negative effects. As it is non-perishable, coffee will never go stale or rotten. Coffee is more effective when used in making [[Recipe Ingredients#Beverage Ingredients|beverage]], as all negative effects are removed.
Coffee can be eaten raw, providing the player with some positive and negative effects. As it is non-perishable, coffee will never go stale or rotten. Coffee is more effective when used in making [[Recipe Ingredients#Beverage Ingredients|beverage]], as all negative effects are removed.


== Crafting ==
==Crafting==
{{Main|Cooking}}
{{Main|Cooking}}
=== Evolved recipes ===
 
===Evolved recipes===
{{EvolvedRecipesForItem|beverage=5}}
{{EvolvedRecipesForItem|beverage=5}}


== Distribution ==
==Distribution==
Coffee can often be found in [[Containers#Kitchen Counter|kitchen counters]].
Coffee can often be found in [[Containers#Kitchen Counter|kitchen counters]].


Line 41: Line 40:
</gallery>
</gallery>


== Code ==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41|incver=73}}
Line 65: Line 64:
}</pre>
}</pre>


== See also ==
==See also==
* [[Tea Bag]]
*[[Tea Bag]]
* [[Milk]]
*[[Milk]]
* [[Honey]]
*[[Honey]]


{{Navbox_food}}
{{Navbox food}}

Revision as of 23:21, 18 February 2023

Coffee
Coffee
General
Category Food
Encumbrance
Heavy Load
1
Packaged Yes
Nutrition
Hunger
Hunger
-30
Thirst
Thirst
+60
Calories
Calories
2
Carbohydrates
Carbohydrates
0
Proteins
Proteins
1
Fat
Fat
0
Effect
Unhappiness
Unhappiness
+20
Fatigue
Tired
-50
Technical details
Item ID Base.Coffee2

Coffee is a non-perishable food item.

Usage

Coffee can be eaten raw, providing the player with some positive and negative effects. As it is non-perishable, coffee will never go stale or rotten. Coffee is more effective when used in making beverage, as all negative effects are removed.

Crafting

Main article: Cooking

Evolved recipes

Product Nutrition
Beverage
Beverage
5

Distribution

Coffee can often be found in kitchen counters.

Gallery

Code

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.73

    item Coffee2
	{
		DisplayName = Coffee,
		DisplayCategory = Food,
		Type = Food,
		Weight = 1,
		Icon = InstantCoffee,
		EvolvedRecipe = HotDrink:5;HotDrinkRed:5;HotDrinkWhite:5;HotDrinkSpiffo:5;HotDrinkTea:5,
		FoodType = Coffee,
		Packaged = TRUE,
		FatigueChange = -50,
		HungerChange = -30,
		ThirstChange = 60,
		UnhappyChange = 20,
		Calories = 2,
		Carbohydrates = 0,
		Lipids = 0,
		Proteins = 1,
		WorldStaticModel = Coffee,
	}

See also