Dish Towel

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Dish Towel
DishTowel Model.png
WetDishTowel Model.png
General
Category
Household
Encumbrance
Moodle Icon HeavyLoad.png
0.3 (dry)
0.5 (wet)
Function
Dry player
Clean bloodstains
Properties
Capacity
10 units
Wet cooldown
166.4 seconds
Effect
WetnessMoodle Icon Wet.png
-40%
Technical
Item ID
Base.DishCloth
Base.DishClothWet
Use to dry self when wet. Always know where your towel is.
— In-game tooltip.

A dish towel is a drainable item used in first aid.

Usage

Drying

Dish towels can be used to dry the player when they are displaying the wet moodle after being caught in the rain in-game, which will produce a wet dish towel.

The wet dish towel will dry over time.

Cleaning

Dish towels can be used with bleach to clean blood splatters off of floors and walls.

Distribution

Dish towels are usually found in kitchens of houses and restaurants, although they can also be found in motels, storage units and houseware stores.

Code

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

Dish Towel Dishtowel.png
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item DishCloth
	{
	    DisplayCategory = Household,
		Weight	=	0.3,
		Type	=	Drainable,
		DisplayName	=	Dish Towel,
        UseWhileEquipped	=	FALSE,
		Icon	=	Dishtowel,
        UseDelta	=	0.1,
		ReplaceOnDeplete	=	DishClothWet,
		Tooltip = Tooltip_Bathtowel,
		WorldStaticModel = DishTowel,
		cantBeConsolided = TRUE,
	}


Wet Dish Towel Dishtowel.png
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item DishClothWet
	{
	    DisplayCategory = Household,
		Weight	=	0.3,
		Type	=	Normal,
		DisplayName	=	Wet Dish Towel,
        Icon	=	Dishtowel,
        Wet                 =           TRUE,
        WetCooldown         =           8000,
        ItemWhenDry         =           Base.DishCloth,
        WorldStaticModel = DishTowelWet,
	}

See also