Mug

From PZwiki
Revision as of 22:50, 5 April 2023 by Faalagorn (talk | contribs) (Add navbox equipment)
Empty Mug
Empty Mug
Empty Mug
General
Category Item
Encumbrance
Heavy Load
Empty: 0.2
Full: 0.8
Function Cooking utensil
Capacity 1 units
Contents Water
Can boil water True
Rain factor 0.2
Technical details
item ID Base.Mugl
Base.WaterMug
Can be used to collect rainwater when placed on the ground outside
— In-game tooltip

An empty mug is a water container used in cooking.

Usage

An empty mug turns into a mug of water when filled with water from a water source. The mug can also be used to craft a hot cuppa. A mug holds 1 unit of water.

Empty mugs can be placed outside in the rain to collect rain water. The water will need to be boiled before drinking. A mug of water can be left in the player's main inventory and will be consumed as it's needed.

Crafting

Cooking

Main article: Cooking
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)
Hot Drink
Hot Drink
0.75 Cooking none Mug of Water
Mug of Water
(Base item)
Hot Drink Ingredients
Hot Drink Ingredients (1−3)
(consumed)



Code

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

Empty Cyan Mug Mugl.png Retrieved: Build 41.54

	item Mugl
		Weight			= 0.2,
		CanStoreWater		= TRUE,
		Type			= Normal,
		DisplayName		= Empty Cyan Mug,
		ReplaceOnUseOn		= WaterSource-WaterMug,
		Icon			= Mugl,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= Mug,
		WorldStaticModel	= Mug,

Empty Red Mug MugRed.png Retrieved: Build 41.54

	item MugRed
		Weight			= 0.2,
		CanStoreWater		= TRUE,
		Type			= Normal,
		DisplayName		= Empty Red Mug,
		ReplaceOnUseOn		= WaterSource-WaterMugRed,
		Icon			= MugRed,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= MugRed,
		WorldStaticModel	= MugRed,

Empty White Mug MugWhite.png Retrieved: Build 41.54

	item MugWhite
		Weight			= 0.2,
		CanStoreWater		= TRUE,
		Type			= Normal,
		DisplayName		= Empty White Mug,
		ReplaceOnUseOn		= WaterSource-WaterMugWhite,
		Icon			= MugWhite,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= MugWhite,
		WorldStaticModel	= MugWhite,

Empty Spiffo Mug MugSpiffo.png Retrieved: Build 41.54

	item MugSpiffo
		Weight			= 0.2,
		CanStoreWater		= TRUE,
		Type			= Normal,
		DisplayName		= Empty Spiffo Mug,
		ReplaceOnUseOn		= WaterSource-WaterMugSpiffo,
		Icon			= MugSpiffo,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= MugSpiffo,
		WorldStaticModel	= MugSpiffo,

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

Mug of Water Mugl.png Retrieved: Build 41.54

	item WaterMug
		IsWaterSource		= TRUE,
		Weight			= 0.8,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 1,
		DisplayName		= Mug of Water,
		ReplaceOnDeplete	= Mugl,
		ReplaceOnUseOn		= WaterSource-WaterMug,
		Icon			= Mugl,
		IsCookable		= TRUE,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= Mug,
		EatType			= Mug,
		WorldStaticModel	= Mug,

Mug of Water MugRed.png Retrieved: Build 41.54

	item WaterMugRed
		IsWaterSource		= TRUE,
		Weight			= 0.8,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 1,
		DisplayName		= Mug of Water,
		ReplaceOnDeplete	= MugRed,
		ReplaceOnUseOn		= WaterSource-WaterMugRed,
		Icon			= MugRed,
		IsCookable		= TRUE,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= MugRed,
		EatType			= Mug,
		WorldStaticModel	= MugRed,

Mug of Water MugWhite.png Retrieved: Build 41.54

	item WaterMugWhite
		IsWaterSource		= TRUE,
		Weight			= 0.8,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 1,
		DisplayName		= Mug of Water,
		ReplaceOnDeplete	= MugWhite,
		ReplaceOnUseOn		= WaterSource-WaterMugWhite,
		Icon			= MugWhite,
		IsCookable		= TRUE,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= MugWhite,
		EatType			= Mug,
		WorldStaticModel	= MugWhite,

Mug of Water MugSpiffo.png Retrieved: Build 41.54

	item WaterMugSpiffo
		IsWaterSource		= TRUE,
		Weight			= 0.8,
		CanStoreWater		= TRUE,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 1,
		DisplayName		= Mug of Water,
		ReplaceOnDeplete	= MugSpiffo,
		ReplaceOnUseOn		= WaterSource-WaterMugSpiffo,
		Icon			= MugSpiffo,
		IsCookable		= TRUE,
		RainFactor		= 0.2,
		Tooltip			= Tooltip_item_RainFromGround,
		StaticModel		= MugSpiffo,
		EatType			= Mug,
		WorldStaticModel	= MugSpiffo,

See also