Coffee: Difference between revisions

From PZwiki
m (Automated Formatting for Infobox and Section Headers)
m (Automated Formatting)
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Coffee
|name=Coffee
Line 23: Line 23:
|item_id=Base.Coffee2
|item_id=Base.Coffee2
}}
}}
 
'''Coffee''' is a non-perishable [[food]] [[Items|item]].
'''Coffee''' is a [[Food#Non-Perishable|non-perishable]] food [[items|item]].


==Usage==
==Usage==
Line 41: Line 40:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="2"|bakerykitchen
|rowspan="2"|bakerykitchen
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|-
|-
|[[counter]]
|[[counter]]
Line 55: Line 54:
|2
|2
|-
|-
| rowspan="2"|breakroom
|rowspan="2"|breakroom
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|-
|-
|[[overhead]]
|[[overhead]]
Line 64: Line 63:
|1
|1
|-
|-
| rowspan="5"|dinerkitchen
|rowspan="5"|dinerkitchen
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|-
|-
|[[crate]]
|[[crate]]
Line 85: Line 84:
|5
|5
|-
|-
| generalstore
|generalstore
| [[shelves]]
|[[shelves]]
| 4
|4
| 1
|1
|-
|-
| grocerystorage
|grocerystorage
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|-
|-
| kitchen
|kitchen
| [[counter]]
|[[counter]]
| 4
|4
| 6
|6
|}
|}
Coffee can often be found in [[Containers#Kitchen Counter|kitchen counters]].
Coffee can often be found in [[Containers#Kitchen Counter|kitchen counters]].
Line 106: Line 105:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 4877
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item Coffee2
item Coffee2
{
{
    DisplayName = Coffee,
DisplayName = Coffee,
    DisplayCategory = Food,
DisplayCategory = Food,
    Type = Food,
Type = Food,
    Weight = 1,
Weight = 1,
    Icon = InstantCoffee,
Icon = InstantCoffee,
    EvolvedRecipe = HotDrink:5;HotDrinkRed:5;HotDrinkWhite:5;HotDrinkSpiffo:5;HotDrinkTea:5,
EvolvedRecipe = HotDrink:5;HotDrinkRed:5;HotDrinkWhite:5;HotDrinkSpiffo:5;HotDrinkTea:5,
    FoodType = Coffee,
FoodType = Coffee,
    Packaged = TRUE,
Packaged = TRUE,
    FatigueChange = -50,
FatigueChange = -50,
    HungerChange = -30,
HungerChange = -30,
    ThirstChange = 60,
ThirstChange = 60,
    UnhappyChange = 20,
UnhappyChange = 20,
    Calories = 2,
Calories = 2,
    Carbohydrates = 0,
Carbohydrates = 0,
    Lipids = 0,
Lipids = 0,
    Proteins = 1,
Proteins = 1,
    WorldStaticModel = Coffee,
WorldStaticModel = Coffee,
}
}
  }}
}}
}}
}}


Line 139: Line 139:
*[[Honey]]
*[[Honey]]


{{Navbox food}}
{{Navbox items|food}}
 
[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 07:39, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Coffee
Coffee Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
1
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-30
ThirstMoodle Icon Thirsty.png
-20
CaloriesCalories
2
CarbohydratesCarbohydrates
0
ProteinsProteins
1
FatFat
0
Effect
UnhappinessMoodle Icon Unhappy.png
+20
FatigueMoodle Icon Tired.png
-50
Technical
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

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
bakerykitchen counter 4 1
counter 4 2
breakroom counter 4 1
overhead 4 1
dinerkitchen crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5
generalstore shelves 4 1
grocerystorage crate 4 1
kitchen counter 4 6

Coffee can often be found in kitchen counters.

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

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