Mug: Difference between revisions

From PZwiki
No edit summary
(9 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages}}
{{languages|Empty Mug}}
{{Tools
{{header|The Game World|Items|Tools|type=Tool|version=Version 40|incver=8}}{{Infobox drainable
|image = SmallCup.png
|display_name=Empty Mug
|primaryuse = Making drinks
|name_colour=Tool
|otheruses = Holding water
|name_text_colour=Tool
|weight = 0.2
|image=Mugl_120px.png
}}
|alternate_image=Mugl.png
|alternate_name=Mug of Water
|alternate_link=
|weight='''Empty:''' 0.2<br>'''Full:''' 0.8
|function=[[Cooking]] utensil
|max_units=1
|contents=Water
|can_boil_water=True
|rain_factor=0.2
|class_name=Base.Mugl<br>Base.WaterMug
}}{{quote|text=Can be used to collect rainwater when placed on the ground outside|author=In-game tooltip}}


The mug is a item that can be used to make a variety of drinks. It can be filled with water to drink from.
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|water source]]. The mug can also be used to craft a [[Hot Cuppa|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 [[Moodles#Thirsty|consumed as it's needed]].
== Crafting ==
== Crafting ==
{| class="wikitable sortable" style="text-align:center;"
===Cooking===
|-
{{Main|Cooking}}
! Name
{{Cooking table header}}
! class="unsortable" | Recipe
{{RecipeLookup|2003}}
! class="unsortable" | Description
{{Crafting table footer}}
{{RecipeLookup|12}}
 
|}
== Code ==
== Code ==
<nowiki>item Mugl
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{
 
Type = Normal,
''Empty Mug'' [[File:Mugl.png]]
DisplayName = Empty Mug,
{{Retrieved|version=40|incver=9}}
Icon = Mugl,
<pre> item Mugl
Weight = 0.2,
Type = Normal,
ReplaceOnUseOn = WaterSource-WaterMug,
DisplayName = Empty Mug,
CanStoreWater = true,
Icon = Mugl,
}</nowiki>
Weight = 0.2,
[[Category:Tools]]
ReplaceOnUseOn = WaterSource-WaterMug,
[[Category:Version 0.2.0p]]
CanStoreWater = true,</pre>
 
''Mug of Water'' [[File:Mugl.png]]
{{Retrieved|version=40|incver=9}}
<pre> 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,</pre>
 
==See also==
* [[Water Bottle]]
 
{{Navbox/Tools}}

Revision as of 08:27, 30 August 2018

Empty Mug
Empty Mug
Mug of Water
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

Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Code

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

Empty Mug Mugl.png Retrieved: Build 40.9

 	item Mugl
	 	Type		= Normal,
	 	DisplayName	= Empty Mug,
	 	Icon		= Mugl,
	 	Weight		= 0.2,
	 	ReplaceOnUseOn  = WaterSource-WaterMug,
	 	CanStoreWater	= true,

Mug of Water Mugl.png Retrieved: Build 40.9

	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,

See also

Template:Navbox/Tools