Hot Cuppa: Difference between revisions

From PZwiki
(added model to infobox + update to 41.78.16)
(transitioned item to Removed status)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=78.16}}{{Infobox food
{{Languages}}{{Header|The Game World|Items|Obsolete Items|Removed Food|type=Food|version=Version 41|incver=78.16}}
{{Obsolete|link=recipe ingredients#Beverage_Ingredients}}
{{Infobox food
|display_name=Hot Cuppa
|display_name=Hot Cuppa
|name_colour=Food
|name_colour=Food
Line 31: Line 33:
|class_name=Base.Mugfulll<br>Base.ColdCuppa
|class_name=Base.Mugfulll<br>Base.ColdCuppa
}}{{About|the drink made from a [[kettle]]|the custom-made drink|Recipe Ingredients#Beverage Ingredients}}
}}{{About|the drink made from a [[kettle]]|the custom-made drink|Recipe Ingredients#Beverage Ingredients}}
A '''hot cuppa''' and '''cold cuppa''' are [[Food#Non-Perishable|non-perishable]] food [[item]]s.  
A '''hot cuppa''' and '''cold cuppa''' were [[Food#Non-Perishable|non-perishable]] food [[item]]s that have since been removed from the game. While the code remains in the game files, they can no longer be crafted by the player. They have been replaced with the Evolved Recipe system, using [[Recipe Ingredients#Beverage Ingredients|beverage ingredients]] to create custom beverages.  


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


Line 39: Line 41:
A hot cuppa will give the player more benefits than a cold cuppa. These include: [[Moodles#Fatigue|fatigue]], [[Moodles#Unhappy|unhappiness]], and [[Moodles#Stress|stress]]. The cold cuppa will also make the player more unhappy.
A hot cuppa will give the player more benefits than a cold cuppa. These include: [[Moodles#Fatigue|fatigue]], [[Moodles#Unhappy|unhappiness]], and [[Moodles#Stress|stress]]. The cold cuppa will also make the player more unhappy.


==Crafting==
==Former Crafting==


===Cooking===
===Cooking===

Revision as of 17:31, 29 September 2023

BoxSmall.png
This feature has been removed from the game.
It has been replaced by something else.
Hot Cuppa
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 were non-perishable food items that have since been removed from the game. While the code remains in the game files, they can no longer be crafted by the player. They have been replaced with the Evolved Recipe system, using beverage ingredients to create custom beverages.

Former 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.

Former 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 41.78.16

	item Mugfull
	{
		DisplayName = Hot Cuppa,
		DisplayCategory = Food,
		Type = Food,
		Weight = 1,
		Icon = MugFulll,
		CantBeFrozen = TRUE,
		EatType = Mug,
		ReplaceOnUse = Mugl,
		FatigueChange = -5,
		HungerChange = -5,
		StressChange = -10,
		ThirstChange = -50,
		UnhappyChange = -5,
		Calories = 4,
		Carbohydrates = 0.75,
		Lipids = 0,
		Proteins = 0.12,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromMug,
		StaticModel = Mug,
		WorldStaticModel = Mug,
		Tags = CoffeeMaker,	
	}

Cold Cuppa MugFulll.png Retrieved: Build 41.78.16

	item ColdCuppa
	{
		DisplayName = Cold Cuppa,
		DisplayCategory = Food,
		Type = Food,
		Weight = 1,
		Icon = MugFulll,
		CantBeFrozen = TRUE,
		ReplaceOnUse = Mugl,
		FatigueChange = 0,
		HungerChange = -5,
		StressChange = 0,
		ThirstChange = -50,
		UnhappyChange = -5,
		Calories = 4,
		Carbohydrates = 0.75,
		Lipids = 0,
		Proteins = 0.12,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromMug,
		StaticModel = Mug,
		WorldStaticModel = Mug,
		Tags = CoffeeMaker,	
	}

See also