Hot Cuppa: Difference between revisions

From PZwiki
m (Remove 120px, minor cleanup)
m (→‎Cooking: Replace template)
Line 40: Line 40:
{{Main|Cooking}}
{{Main|Cooking}}
A hot cuppa is made with a [[kettle|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.
A hot cuppa is made with a [[kettle|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.
{{Crafting header|ing=5}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2003 -->
{{Crafting header|ing=4}}
{{Crafting/core|ing=5
{{Crafting cooking|115|ing=4}}
| product_image = [[File:MugFulll.png|link=Hot Cuppa|Hot Cuppa]] | product_name = [[Hot Cuppa]] | product_quantity = x1
{{Crafting cooking|116|ing=4}}
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = ''none''
| req =
| f1 = [[File:InstantCoffee.png]] | i1 = [[Tea Bag]]<br>or<br>[[Coffee]] | q1 = (2 units) | tag1 = (consumed)
| f2 = [[File:Kettle.png]] | i2 = [[Kettle|Kettle of Water]] | q2 = (2 units)
| f3 = [[File:Mugl.png|link=Empty Mug|Empty Mug]] | i3 = [[Empty Mug]] | q3 = x1 | tag3 = (consumed)
| f4 = [[File:Sugar.png|link=Sugar|Sugar]] | i4 = [[Sugar]] | q4 = (1 unit) | tag4 = (consumed)
| f5 = [[File:Heat_source.gif|link=Heat Source|Heat Source]] | i5 = [[Heat Source]] | q5 =  | tag5 = (heat: -0.22) |opt5=1
}}
<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2091 -->
{{Crafting/core|ing=4
| product_image = [[File:MugFulll.png]] | product_name = [[Hot Cuppa|Cold Cuppa]] | product_quantity = x1
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = ''none''
| req =
| f1 = [[File:InstantCoffee.png]] | i1 = [[Tea Bag]]<br>or<br>[[Coffee]] | q1 = (2 units) | tag1 = (consumed)
| f2 = [[File:Kettle.png]] | i2 = [[Kettle|Kettle of Water]] | q2 = (2 units)
| f3 = [[File:Mugl.png|link=Empty Mug|Empty Mug]] | i3 = [[Empty Mug]] | q3 = x1 | tag3 = (consumed)
| f4 = [[File:Sugar.png|link=Sugar|Sugar]] | i4 = [[Sugar]] | q4 = (1 unit) | tag4 = (consumed)
}}
|}
|}



Revision as of 16:07, 28 May 2023

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
MugFulll.png
Hot CuppaRemoved
0 XP none Mugl.png
Mug
(consumed)
Kettle.png
Kettle
(2 units)

(Heat: -0.22)
One of:
Teabag.png Tea Bag
InstantCoffee.png Coffee

(consumed)
Sugar.png
Sugar
(1 unit)
Cold Cuppa
Cold CuppaRemoved
0 XP none Mugl.png
Mug
(consumed)
Kettle.png
Kettle
(2 units)

(Heat: 1.0)
One of:
Teabag.png Tea Bag
InstantCoffee.png Coffee

(consumed)
Sugar.png
Sugar
(1 unit)

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