Mug

From PZwiki
(Redirected from Mug)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D Models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Empty Mug
MugBlue Model.png
Empty Red Mug
Empty White Mug
Empty Spiffo Mug
General
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 0.2
Full: 0.8
Function
Cooking utensil
Properties
Contents
Water
Capacity
1 units
Can boil water
True
Rain factor
0.2
Technical
Item ID
Empty:
Base.Mugl
Base.MugRed
Base.MugWhite
Base.MugSpiffo
Full:
Base.WaterMug
Base.WaterMugRed
Base.WaterMugWhite
Base.WaterMugSpiffo
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)


Mug beverage
Mug beverage
0.75 Cooking none Mug of Water
Mug of Water
(Base item)
Mug beverage ingredients
Mug beverage ingredients (1-3)
(consumed)


Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Mugl.png Mugl
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Mugl
	{
	    DisplayCategory = Cooking,
		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,
		Tags = CoffeeMaker,
	}

MugRed.png MugRed
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item MugRed
	{
	    DisplayCategory = Cooking,
		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,
		Tags = CoffeeMaker,
	}

MugWhite.png MugWhite
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item MugWhite
	{
		DisplayCategory = Cooking,
		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,
		Tags = CoffeeMaker,
	}

MugSpiffo.png MugSpiffo
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item MugSpiffo
	{
	    DisplayCategory = Cooking,
		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,
		Tags = CoffeeMaker,
	}

Mugl.png WaterMug
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item WaterMug
	{
		DisplayName = Mug of Water,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 0.8,
		Icon = Mugl,
		CanStoreWater = TRUE,
		EatType = Mug,
		FillFromDispenserSound = GetWaterFromDispenserCeramic,
		FillFromTapSound = GetWaterFromTapCeramic,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		RainFactor = 0.2,
		ReplaceOnDeplete = Mugl,
		ReplaceOnUseOn = WaterSource-WaterMug,
		Tooltip = Tooltip_item_RainFromGround,
		UseDelta = 1,
		UseWhileEquipped = FALSE,
		StaticModel = Mug,
		WorldStaticModel = Mug,
		Tags = CoffeeMaker,
	}

MugRed.png WaterMugRed
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item WaterMugRed
	item WaterMugRed
	{
		DisplayName = Mug of Water,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 0.8,
		Icon = MugRed,
		CanStoreWater = TRUE,
		EatType = Mug,
		FillFromDispenserSound = GetWaterFromDispenserCeramic,
		FillFromTapSound = GetWaterFromTapCeramic,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		RainFactor = 0.2,
		ReplaceOnDeplete = MugRed,
		ReplaceOnUseOn = WaterSource-WaterMugRed,
		Tooltip = Tooltip_item_RainFromGround,
		UseDelta = 1,
		UseWhileEquipped = FALSE,
		StaticModel = MugRed,
		WorldStaticModel = MugRed,
		Tags = CoffeeMaker,
	}

MugWhite.png WaterMugWhite
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item WaterMugWhite
	{
		DisplayName = Mug of Water,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 0.8,
		Icon = MugWhite,
		CanStoreWater = TRUE,
		EatType = Mug,
		FillFromDispenserSound = GetWaterFromDispenserCeramic,
		FillFromTapSound = GetWaterFromTapCeramic,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		RainFactor = 0.2,
		ReplaceOnDeplete = MugWhite,
		ReplaceOnUseOn = WaterSource-WaterMugWhite,
		Tooltip = Tooltip_item_RainFromGround,
		UseDelta = 1,
		UseWhileEquipped = FALSE,
		StaticModel = MugWhite,
		WorldStaticModel = MugWhite,
		Tags = CoffeeMaker,
	}

MugSpiffo.png WaterMugSpiffo
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item WaterMugSpiffo
	{
		DisplayName = Mug of Water,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 0.8,
		Icon = MugSpiffo,
		CanStoreWater = TRUE,
		EatType = Mug,
		FillFromDispenserSound = GetWaterFromDispenserCeramic,
		FillFromTapSound = GetWaterFromTapCeramic,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		RainFactor = 0.2,
		ReplaceOnDeplete = MugSpiffo,
		ReplaceOnUseOn = WaterSource-WaterMugSpiffo,
		Tooltip = Tooltip_item_RainFromGround,
		UseDelta = 1,
		UseWhileEquipped = FALSE,
		StaticModel = MugSpiffo,
		WorldStaticModel = MugSpiffo,
		Tags = CoffeeMaker,
	}

See also