Standard Bra

From PZwiki
Project ZomboidItemsClothingUnderwearBrasStandard Bra
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Standard Bra
Standard Bra
Standard Bra - Black
Bra - Animal Print
Standard Bra - Black Frills
Standard Bra - Pink Frills
Standard Bra - Red Frills
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Equipped
UnderwearTop
Technical
Item ID

A standard bra, also called straps bra or simply bra is a clothing item that can be worn under a shirt. It comes in six variants, white, black, leopard print, black frilly, pink frilly, and red frilly.

Usage

Standard bras 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.

Bra_Straps_White distribution Show / Hide
Effective chance calculations are based off of default loot settings, and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits.
Containers
Building/Room Container Effective chance
all wardrobe 6.29%
bedroom wardrobe 6.29%
clothingstore counter 23.28%
clothingstore counter 41.14%
laundry clothingdryer 10.78%
laundry clothingdryerbasic 10.78%
laundry clothingwasher 10.78%
lingeriestore counter 23.28%
lingeriestore crate 23.28%
shoestore counter 23.28%
shoestore counter 41.14%
stripclub dresser 6.29%

NPCs

Bras can be found on female zombies.

Variants

Icon Name Encumbrance Body location Item ID
Straps Bra Standard Bra 0.2 Underwear Top Base.Bra_Straps_White
Black Straps Bra Standard Bra - Black 0.2 Underwear Top Base.Bra_Straps_Black
Animal Print Straps Bra Bra - Animal Print 0.2 Underwear Top Base.Bra_Straps_AnimalPrint
Black Frilly Straps Bra Standard Bra - Black Frills 0.2 Underwear Top Base.Bra_Straps_FrillyBlack
Pink Frilly Straps Bra Standard Bra - Pink Frills 0.2 Underwear Top Base.Bra_Straps_FrillyPink
Red Frilly Straps Bra Standard Bra - Red Frills 0.2 Underwear Top Base.Bra_Straps_FrillyRed

Trivia

  • Despite having its own black world 3D model, the black standard straps bra uses the same item icon as the white variant.
  • Like some other underwear, the standard bra has some inconsistencies with the name – the white doesn't mention a color, while the anima print doesn't mention a type.

Code

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

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

Retrieved: Build 41.78.16
item Bra_Straps_White
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Straps Bra,
		ClothingItem = Underwear_Bra_Straps_White,
		BodyLocation = UnderwearTop,
		Icon = BraGeneric,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Bra_Ground,
	}

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

Retrieved: Build 41.78.16
item Bra_Straps_Black
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Black Straps Bra,
		ClothingItem = Underwear_Bra_Straps_Black,
		BodyLocation = UnderwearTop,
		Icon = BraGeneric,
		Weight = 0.2,
        ColorRed = 58,
        ColorGreen = 58,
        ColorBlue = 58,
		CanHaveHoles = false,
		WorldStaticModel = BraBlack_Ground,
	}

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

Retrieved: Build 41.78.16
item Bra_Straps_AnimalPrint
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Animal Print Straps Bra,
		ClothingItem = Underwear_Bra_Straps_AnimalPrint,
		BodyLocation = UnderwearTop,
		Icon = BraLeopard,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Bra_AnimalPrint_Ground,
	}

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

Retrieved: Build 41.78.16
item Bra_Straps_FrillyBlack
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Black Frilly Straps Bra,
		ClothingItem = Underwear_FrillyBra_Straps_Black,
		BodyLocation = UnderwearTop,
		Icon = BraBlacklacy,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Bra_FrillyBlack_Ground,
	}

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

Retrieved: Build 41.78.16
item Bra_Straps_FrillyPink
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Pink Frilly Straps Bra,
		ClothingItem = Underwear_FrillyBra_Straps_Pink,
		BodyLocation = UnderwearTop,
		Icon = BraPinklacy,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Bra_FrillyPink_Ground,
	}

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

Retrieved: Build 41.78.16
item Bra_Straps_FrillyRed
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Red Frilly Straps Bra,
		ClothingItem = Underwear_FrillyBra_Straps_Red,
		BodyLocation = UnderwearTop,
		Icon = BraRedsilky,
		Weight = 0.2,
		CanHaveHoles = false,
		WorldStaticModel = Bra_FrillyRed_Ground,
	}

See also