Mop: Difference between revisions

From PZwiki
(Created and up to date)
 
m (Distribution table update)
 
(41 intermediate revisions by 9 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Miscellaneous items|Household}}
{{languages|Mop}}
{{Page version|41.78.16}}
{{header|The Game World|Items|Tools|version=Version 39|incver=52}}
{{Infobox item
{{Consumables
|name=Mop
|image = Mop_120px.png
|model=Mop_Model.png
|weight = 0.1
|icon=Mop.png
|icon_name=Mop
|category=Household
|weight=0.1
|function=Clean bloodstains
|item_id=Base.Mop
}}
}}
The [[mop]] is a mostly useless [[item]]. It can usually be found inside kitchen [[Containers#Counter|counters]].  
A '''mop''' is an [[Items|item]] used for cleaning bloodstains.


If the player is carrying both a bottle of [[bleach]] and a mop, when right-clicking a blood splatter, the option "Clean Blood" will appear. Cleaning bloodstains is currently cosmetic and will  
==Usage==
''not'' affect the player's [[health]]. Both the [[Bath Towel|bath towel]] and [[Dish Towel|dish towel]] also have the same function, however they also have additional uses and will usually be preferred over the mop.
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.
<br><br><br><br><br><br><br>
 
== Code ==
Cleaning bloodstains is currently cosmetic and will '''not''' affect the player's [[health]].
<nowiki>
 
item Mop
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.
Weight = 0.1,
 
Type = Normal,
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.
DisplayName = Mop,
 
Icon = Mop,
==Distribution==
</nowiki>
The loot distributions can be found in the table(s) below.
== See Also ==
 
<!--BOT FLAG|Mop|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Mop distribution
        <span class="mw-customtoggle-togglebox-Mop" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-Mop">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | gasstorage
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | laundry
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | mechanic
    | {{ll|wardrobe}}
    | 4
    | 10.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Mop" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Mop|41.78.16-->
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 605
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Mop
    {
        DisplayCategory = Household,
        Weight = 0.1,
        Type = Normal,
        DisplayName = Mop,
        Icon = Mop,
        WorldStaticModel = Mop,
    }
}}
}}
 
==See also==
*[[Bleach]]
*[[Bleach]]
*[[Bath Towel]]
*[[Bath Towel]]
*[[Dish Towel]]
*[[Dish Towel]]
*[[Broom]]
{{Navbox items|household_equipment}}

Latest revision as of 16:08, 24 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.

Mop distribution Show / Hide
Containers
Building / Room Container Rolls Chance
gasstorage counter 4 10.0
laundry counter 4 10.0
mechanic wardrobe 4 10.0

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