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.
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Corset
CorsetWhite.png
Black Corset
Red Corset
Medical Corset
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Equipped
UnderwearTop
Properties
Scratch defence
0%
Bite defence
0%
Neck protection
0%
Insulation
0%
Wind resistance
0%
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.

Containers
Building/Room Container Rolls Chance
dentiststorage metal_shelves 4 2
kennels counter 4 2

Buildings

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

NPCS

Zombies can sometimes be found 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