Underpants

From PZwiki
(Redirected from Underpants)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Underpants
Underpants Black model.png
Underpants RedSpots model.png
Underpants White model.png
Underpants AnimalPrint model.png
Underpants Black model.png
FrillyUnderpants Pink model.png
FrillyUnderpants Red model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Equipped
Underwear
Properties
Scratch defence
0%
Bite defence
0%
Neck protection
0%
Insulation
0%
Wind resistance
0%
Technical
Item ID
Base.Underpants_Black
Base.Underpants_RedSpots
Base.Underpants_White
Base.Underpants_AnimalPrint
Base.FrillyUnderpants_Black
Base.FrillyUnderpants_Pink
Base.FrillyUnderpants_Red

Underpants are a clothing item that can be worn under pants. It comes in seven variants, black, spotted, white, leopard print, black frilly, pink frilly, and red frilly.

Usage

Underpants are purely an aesthetic item and provides no protection from scratches, bites, or weather.

Distribution

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

Containers
Building/Room Container Rolls Chance
all wardrobe 4 0.4
wardrobe 4 0.4
clothingstore counter 4 4
laundry clothingdryer 4 1
lingeriestore counter 4 8
stripclub dresser 4 0.4

Buildings

Underpants are most commonly found in houses, clothing stores, laundromats, lingerie stores, and strip clubs.

Body location

Protection Underwear.png
  • Groin

Code

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

Underwear2.png Base.Underpants_Black
Source: ProjectZomboid\media\scripts\clothing\clothing_underwear.txt

Retrieved: Build 41.78.16
item Underpants_Black
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Black Underpants,
		ClothingItem = Underwear_Underpants_Black,
		BodyLocation = UnderwearBottom,
		Icon = Underwear2,
		Weight = 0.2,
        ColorRed = 58,
        ColorGreen = 58,
        ColorBlue = 58,
		CanHaveHoles = false,
		WorldStaticModel = UnderpantsBlack_Ground,
	}

PantiesSpotted.png Base.Underpants_RedSpots
Source: ProjectZomboid\media\scripts\clothing\clothing_underwear.txt

Retrieved: Build 41.78.16
item Underpants_RedSpots
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Red Spots Underpants,
		ClothingItem = Underwear_Underpants_RedSpots,
		BodyLocation = UnderwearBottom,
		Icon = PantiesSpotted,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = UnderpantsRedSpots_Ground,
	}

PantiesGeneric.png Base.Underpants_White
Source: ProjectZomboid\media\scripts\clothing\clothing_underwear.txt

Retrieved: Build 41.78.16
item Underpants_White
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Underpants,
		ClothingItem = Underwear_Underpants_White,
		BodyLocation = UnderwearBottom,
		Icon = PantiesGeneric,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Underpants_Ground,
	}

PantiesLeopard.png Base.Underpants_AnimalPrint
Source: ProjectZomboid\media\scripts\clothing\clothing_underwear.txt

Retrieved: Build 41.78.16
item Underpants_AnimalPrint
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Animal Print Underpants,
		ClothingItem = Underwear_Underpants_AnimalPrint,
		BodyLocation = UnderwearBottom,
		Icon = PantiesLeopard,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Underpants_AnimalPrint_Ground,
	}

PantiesBlacklacy.png Base.PantiesBlacklacy
Source: ProjectZomboid\media\scripts\clothing\clothing_underwear.txt

Retrieved: Build 41.78.16
item FrillyUnderpants_Black
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Black Frilly Underpants,
		ClothingItem = Underwear_FrillyUnderpants_Black,
		BodyLocation = UnderwearBottom,
		Weight = 0.2,
		Icon = PantiesBlacklacy,
		CanHaveHoles = false,
		WorldStaticModel = Underpants_Frilly_Black_Ground,
	}

PantiesPinklacy.png Base.PantiesPinklacy
Source: ProjectZomboid\media\scripts\clothing\clothing_underwear.txt

Retrieved: Build 41.78.16
item FrillyUnderpants_Pink
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Pink Frilly Underpants,
        ClothingItem = Underwear_FrillyUnderpants_Pink,
        BodyLocation = UnderwearBottom,
        Icon = PantiesPinklacy,
        Weight = 0.2,
        CanHaveHoles = false,
        WorldStaticModel = Underpants_Frilly_Pink_Ground,
    }

PantiesRedsilky.png Base.PantiesRedsilky
Source: ProjectZomboid\media\scripts\clothing\clothing_underwear.txt

Retrieved: Build 41.78.16
item FrillyUnderpants_Red
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Red Frilly Underpants,
		ClothingItem = Underwear_FrillyUnderpants_Red,
		BodyLocation = UnderwearBottom,
		Icon = PantiesRedsilky,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Underpants_Frilly_Red_Ground,
	}

See also