Hot Cuppa/pt-br: Difference between revisions

From PZwiki
< Hot CuppaHot Cuppa/pt-br
(Needs a lot but I no longer have more time)
(→‎top: New infobox upgrade - Food)
Line 1: Line 1:
{{DISPLAYTITLE:Bebida Quente}}
{{DISPLAYTITLE:Bebida Quente}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=78.16}}{{Infobox food
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-perishable food|type=Food|version=Version 41|incver=78.16}}{{Infobox item
|display_name=Hot Cuppa
|name=Hot Cuppa
|name_colour=Food
|model=MugBlue Model.png
|name_text_colour=Food
|icon=MugFulll.png
|image=MugBlue Model.png
|icon_name=Hot Cuppa
|image_width=200px
|icon2=MugFulll.png
|alternate_image=MugFulll.png
|icon_name2=Cold Cuppa
|alternate_name=Hot Cuppa
 
|alternate_link=
|icon3=Mugl.png
|alternate_image2=MugFulll.png
|icon_name3=Empty Mug
|alternate_name2=Cold Cuppa
Empty Mug
|alternate_link2=
|alternate_image3=Mugl.png
|alternate_name3=Empty Mug
|alternate_link3=Empty Mug
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 30: Line 26:
|fatigue_change='''Hot:''' -5<br>'''Cold:''' 0  
|fatigue_change='''Hot:''' -5<br>'''Cold:''' 0  
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Mugfulll<br>Base.ColdCuppa
|item_id=Base.Mugfulll<br>Base.ColdCuppa
}}{{About|the drink made from a {{T|kettle}}|the custom-made drink|Recipe Ingredients#Beverage Ingredients}}
}}{{About|the drink made from a {{T|kettle}}|the custom-made drink|Recipe Ingredients#Beverage Ingredients}}
A '''hot cuppa''' and '''cold cuppa''' are [[Food/pt-br#{{Tr|Non-perishable}}|não perecíveis]] food {{T|item|{{Tr|items}}}}.  
A '''hot cuppa''' and '''cold cuppa''' are [[Food/pt-br#{{Tr|Non-perishable}}|não perecíveis]] food {{T|item|{{Tr|items}}}}.  

Revision as of 11:42, 29 January 2024

Hot Cuppa
MugBlue Model.png
Cold Cuppa
Empty Mug Empty Mug
Geral
Categoria
Food
Peso
Moodle Icon HeavyLoad.png
1
Nutriição
FomeMoodle Icon Hungry.png
-5
SedeMoodle Icon Thirsty.png
-50
CaloriasCalorias
4
CarboidratosCarboidratos
0.75
ProteínasProteínas
0.12
GorduraGordura
0
Efeito
TristezaMoodle Icon Unhappy.png
Hot: -5
Cold: +5
EstresseMoodle Icon Stressed.png
Hot: -10
Cold: 0
FadigaMoodle Icon Tired.png
Hot: -5
Cold: 0
Técnico
ID do Item
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 não perecíveis 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: fadiga, unhappiness, and stress. The cold cuppa will also make the player more unhappy.

Crafting

Cooking

Artigo principal: Culinária

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/pt-br

	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/pt-br

	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,	
	}

Veja também