Mop: Difference between revisions

From PZwiki
(Updated to 41.78.16 (except the code))
m (Automated Formatting)
(32 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Tools|type=Tool|version=Version 41|incver=78.16}}
{{Header|Project Zomboid|Items|Miscellaneous items|Household}}
{{Infobox normal
{{Page version|41.78.16}}
|display_name=Mop
{{Infobox item
|name_colour=Tool
|name=Mop
|name_text_colour=Tool
|model=Mop_Model.png
|image=Mop.png
|icon=Mop.png
|icon_name=Mop
|category=Household
|weight=0.1
|weight=0.1
|primary_use=Clean bloodstains
|function=Clean bloodstains
|class_name=Base.Mop
|item_id=Base.Mop
}}A '''mop''' is an [[item]] used for cleaning bloodstains.
}}
A '''mop''' is an [[Items|item]] used for cleaning bloodstains.


==Usage==
==Usage==
If the player is carrying both a bottle of [[Bleach]] and a mop, when right-clicking a blood splatter, the “Clean Blood” option will appear. The player will then wield mop in both hands and 5 thirst from Bleach will be deducted or up to 9 when 9 or less is remaining in the bottle.
If the player is carrying both a bottle of [[bleach]] and a mop, when right-clicking a blood splatter, the “Clean Blood” option will appear. The player will then wield the mop in both hands and 5 thirst from the bleach will be deducted. Note: When 9 or less bleach is remaining in the bottle, the bleach will be fully consumed.


Cleaning bloodstains is currently cosmetic and will ''not'' affect the player's [[health]].
Cleaning bloodstains is currently cosmetic and will '''not''' affect the player's [[health]].


Although the mop is being equipped in both hands and is visible when moping, it currently can't be used as an improvised weapon to fend zombies off unlike [[Fishing Rod]] or similar tools, and unarmed fighting will be used instead.
Although the mop is being equipped in both hands and is visible when moping, it currently can't be used as an improvised weapon to fend zombies off unlike the [[Fishing Rod|fishing rod]] or similar tools, and unarmed fighting will be used instead.


Both the [[Bath Towel]] and [[Dish Towel]] can be used instead of Mop, which use different animation but serve the same function – however towels also have additional use of [[Moodles#Wet|drying self]], although they currently weight more and need to have bleach equipped separately.
Both the [[Bath Towel|bath towel]] and [[Dish Towel|dish towel]] can be used instead of a mop, which use different animations but serve the same function. ''However,'' towels also have the additional use of [[Wet|drying oneself]], although they currently weight more and need to have bleach equipped separately.


==Distribution==
==Distribution==
It can typically be found inside kitchen [[Containers#Counters|counters]].
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|gasstorage
|[[counter]]
|4
|1
|-
|laundry
|[[counter]]
|4
|1
|-
|mechanic
|[[wardrobe]]
|4
|1
|}


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=39|incver=67.5}}
| {{CodeSnip
<pre>
  | lang = java
item Mop
  | line = true
Weight = 0.1,
  | start = 605
Type = Normal,
  | source = newitems.txt
DisplayName = Mop,
  | retrieved = true
Icon = Mop,
  | version = 41.78.16
</pre>
  | code =
item Mop
    {
        DisplayCategory = Household,
        Weight = 0.1,
        Type = Normal,
        DisplayName = Mop,
        Icon = Mop,
        WorldStaticModel = Mop,
    }
}}
}}


==See also==
==See also==
Line 39: Line 77:
*[[Broom]]
*[[Broom]]


{{Navbox equipment}}
{{Navbox items|household_equipment}}

Revision as of 10:23, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Mop
Mop Model.png
General
Category
Household
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Clean bloodstains
Technical
Item ID
Base.Mop

A mop is an item used for cleaning bloodstains.

Usage

If the player is carrying both a bottle of bleach and a mop, when right-clicking a blood splatter, the “Clean Blood” option will appear. The player will then wield the mop in both hands and 5 thirst from the bleach will be deducted. Note: When 9 or less bleach is remaining in the bottle, the bleach will be fully consumed.

Cleaning bloodstains is currently cosmetic and will not affect the player's health.

Although the mop is being equipped in both hands and is visible when moping, it currently can't be used as an improvised weapon to fend zombies off unlike the fishing rod or similar tools, and unarmed fighting will be used instead.

Both the bath towel and dish towel can be used instead of a mop, which use different animations but serve the same function. However, towels also have the additional use of drying oneself, although they currently weight more and need to have bleach equipped separately.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
gasstorage counter 4 1
laundry counter 4 1
mechanic wardrobe 4 1

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Mop
    {
        DisplayCategory = Household,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Mop,
        Icon	=	Mop,
        WorldStaticModel = Mop,
    }

See also