Hot Cuppa

From PZwiki
Revision as of 22:28, 25 February 2023 by Faalagorn (talk | contribs) (Remove 120px, minor cleanup)
Hot Cuppa
Hot Cuppa
Cold Cuppa Empty Mug
General
Category Food
Encumbrance
Heavy Load
1
Nutrition
Hunger
Hunger
-5
Thirst
Thirst
-50
Calories
Calories
4
Carbohydrates
Carbohydrates
0.75
Proteins
Proteins
0.12
Fat
Fat
0
Effect
Unhappiness
Unhappiness
Hot: -5
Cold: +5
Stress
Stress
Hot: -10
Cold: 0
Fatigue
Tired
Hot: -5
Cold: 0
Technical details
Item ID Base.Mugfulll
Base.ColdCuppa
PlushSpiffo.pngThis article is about the drink made from a kettle. For the custom-made drink, see Recipe ingredients.

A hot cuppa and cold cuppa are non-perishable food items.

Usage

A hot or cold cuppa can be consumed, providing the player with some positive effects, however differing between each item.

Hot vs Cold

A hot cuppa will give the player more benefits than a cold cuppa. These include: fatigue, unhappiness, and stress. The cold cuppa will also make the player more unhappy.

Crafting

Cooking

Main article: Cooking

A hot cuppa is made with a kettle of hot water, whereas a cold cuppa is made with a kettle of cold water. A cold cuppa cannot be made into a hot cuppa by heating it.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4 Ingredient 5
Hot Cuppa
Hot Cuppa x1
none InstantCoffee.png
Tea Bag
or
Coffee (2 units)
(consumed)
Kettle.png
Kettle of Water (2 units)
Empty Mug
Mug x1
(consumed)
Sugar
Sugar (1 unit)
(consumed)
Heat Source
Heat source
(heat: -0.22)
MugFulll.png
Cold Cuppa x1
none InstantCoffee.png
Tea Bag
or
Coffee (2 units)
(consumed)
Kettle.png
Kettle of Water (2 units)
Empty Mug
Mug x1
(consumed)
Sugar
Sugar (1 unit)
(consumed)

Code

From items.txt (Project Zomboid directory/media/scripts/)

Hot Cuppa MugFulll.png Retrieved: Build 40.14

	item Mugfulll
		FatigueChange		= -5,
		HungerChange		= -5,
		Weight			= 1,
		Type			= Food,
		UnhappyChange		= -5,
		ThirstChange		= -50,
		DisplayName		= Hot Cuppa,
		StressChange		= -10,
		ReplaceOnUse		= Mugl,
		Icon			= MugFulll,
		CustomContextMenu 	= Drink,
		CustomEatSound 		= PZ_DrinkingFromBottle,
        	Carbohydrates 		= 0.75,
        	Proteins 		= 0.12,
        	Lipids 			= 0,
        	Calories 		= 4,
        	CantBeFrozen 		= TRUE,

Cold Cuppa MugFulll.png Retrieved: Build 40.14

	item ColdCuppa
		FatigueChange		= 0,
        	HungerChange		= -5,
      		Weight			= 1,
        	Type			= Food,
        	UnhappyChange		= +5,
        	ThirstChange		= -50,
        	DisplayName		= Cold Cuppa,
        	StressChange		= 0,
        	ReplaceOnUse		= Mugl,
        	Icon			= MugFulll,
        	CustomContextMenu 	= Drink,
        	CustomEatSound 		= DrinkingFromBottle,
        	Carbohydrates 		= 0.75,
        	Proteins 		= 0.12,
        	Lipids 			= 0,
        	Calories 		= 4,
        	CantBeFrozen		= TRUE,

See also