Corset

From PZwiki
(Redirected from Corset)
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.
Corset
Corset
Black Corset
Red Corset
Medical Corset
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Equipped
UnderwearTop
Technical
Item ID
Base.Corset
Base.Corset_Black
Base.Corset_Red
Base.Corset_Medical

The corset is a clothing item that can be worn under a shirt. It comes in four variants: corset, black corset, red corset, and medical corset.

Usage

The corset is 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.

Corset distribution Show / Hide
Containers
Building / Room Container Rolls Chance
lingeriestore counter 4 8.0
Vehicles
Vehicle Type/Location Rolls Chance
AmbulanceTruckBed 4 2
Corset_Black distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all wardrobe 4 0.2
clothingstore counter 4 2.0
lingeriestore counter 4 8.0
stripclub dresser 4 0.2

Buildings

Corsets are found in wardrobes, clothing stores, lingerie stores, and strip clubs.

NPCs

Zombies do not currently appear to spawn wearing corsets.

Body location

Protection TankTop.png
  • Upper Torso
  • Lower Torso

Code

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

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

Retrieved: Build 41.78.16
item Corset
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Corset,
        ClothingItem = Corset,
        BodyLocation = UnderwearTop,
        Icon = CorsetWhite,
        Weight = 0.2,
        CanHaveHoles = false,
        WorldStaticModel = Corset_Ground,
    }

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

Retrieved: Build 41.78.16
item Corset_Black
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Black Corset,
        ClothingItem = Corset_Black,
        BodyLocation = UnderwearTop,
        Icon = CorsetBlack,
        Weight = 0.2,
        CanHaveHoles = false,
        WorldStaticModel = Corset_Black_Ground,
    }

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

Retrieved: Build 41.78.16
item Corset_Red
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Red Corset,
        ClothingItem = Corset_Red,
        BodyLocation = UnderwearTop,
        Icon = CorsetRed,
        Weight = 0.2,
        CanHaveHoles = false,
        WorldStaticModel = Corset_Red_Ground,
    }

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

Retrieved: Build 41.78.16
item Corset_Medical
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Medical Corset,
        ClothingItem = Corset_Medical,
        BodyLocation = UnderwearTop,
        Icon = CorsetMedical,
        Weight = 0.2,
        CanHaveHoles = false,
        WorldStaticModel = Corset_Medical_Ground,
    }

See also