Bath 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
Bathtowel Model.png
Bathtowel 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
208 seconds
Effect
WetnessMoodle Icon Wet.png
-40%
Technical
Item ID
Base.BathTowel
Base.BathTowelWet
Use to dry self when wet. Always know where your towel is.
— In-game tooltip.

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

Usage

Drying

Bath towels are used to dry the player when the wet moodle is displayed, which is typical after being in the rain. Depending on how wet the player is determines whether a single bath towel will suffice in drying them. If not, the bath towel will become a wet bath towel.

A wet bath towel will gradually dry on its own, similarly to a cooldown in other RPG style games, upon which it will become a standard bath towel again.

Cleaning

A bath towel can be used with bleach to clean blood splatters off of floors and walls.

Distribution

Bath towels can be found in bathrooms, hairdressers, motel rooms and gift stores.

Code

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

Bath Towel Bath Towel.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item BathTowel
	{
	    DisplayCategory = Household,
		Weight	=	0.3,
		Type	=	Drainable,
		DisplayName	=	Bath Towel,
        UseWhileEquipped	=	FALSE,
		Icon	=	Bathtowel,
        UseDelta	=	0.1,
		ReplaceOnDeplete	=	BathTowelWet,
		Tooltip = Tooltip_Bathtowel,
		WorldStaticModel = BathTowel,
		cantBeConsolided = TRUE,
	}

Wet Bath Towel Bath Towel.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item BathTowelWet
	{
	    DisplayCategory = Household,
		Type				=			Normal,
		DisplayName			=		    Wet Bath Towel,
		Icon				=			Bathtowel,
		Weight				=			0.5,
		Wet                 =           TRUE,
        WetCooldown         =           10000,
        ItemWhenDry         =           Base.BathTowel,
        WorldStaticModel = BathTowel,
	}

See also