Stockings

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]
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.
Stockings
StockingsWhite.png
Stockings (black)
Stockings (transparent)
Stockings (semi transparent)
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
UnderwearExtra1
Technical
Item ID
Base.StockingsWhite
Base.StockingsBlack
Base.StockingsBlackSemiTrans
Base.StockingsBlackTrans

Stockings are a clothing item that can be worn under pants. It comes in four variants, white, black, semi transparent, and transparent.

Usage

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

Body location

Protection None.png

    Distribution

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

    StockingsWhite 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 3.04%
    bedroom wardrobe 3.04%
    clothingstore counter 15.1%
    lingeriestore counter 23.28%
    lingeriestore crate 23.28%
    shoestore counter 15.1%
    stripclub dresser 3.04%

    NPCs

    Stockings can sometimes be found on stripper zombies.

    Code

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

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

    Retrieved: Build 41.78.16
    item StockingsWhite
    	{
    	    DisplayCategory = Accessory,
    		Type = Clothing,
    		DisplayName = Stockings,
    		ClothingItem = StockingsWhite,
    		BodyLocation = UnderwearExtra1,
    		Icon = StockingsWhite,
    		Weight = 0.1,
    		WorldStaticModel = StockingsWhite_Ground,
    	}
    

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

    Retrieved: Build 41.78.16
    item StockingsBlack
    	{
    	    DisplayCategory = Accessory,
    		Type = Clothing,
    		DisplayName = Stockings,
    		ClothingItem = StockingsBlack,
    		BodyLocation = UnderwearExtra1,
    		Icon = StockingsOpaque,
    		Weight = 0.1,
    		WorldStaticModel = StockingsBlack_Ground,
    	}
    

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

    Retrieved: Build 41.78.16
    item StockingsBlackSemiTrans
    	{
    	    DisplayCategory = Accessory,
    		Type = Clothing,
    		DisplayName = Stockings Semi Transparent,
    		ClothingItem = StockingsBlackSemiTrans,
    		BodyLocation = UnderwearExtra1,
    		Icon = StockingsSemiOpaque,
    		Weight = 0.1,
    		WorldStaticModel = StockingsBlackTrans_Ground,
    	}
    

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

    Retrieved: Build 41.78.16
    item StockingsBlackTrans
    	{
    	    DisplayCategory = Accessory,
    		Type = Clothing,
    		DisplayName = Stockings Transparent,
    		ClothingItem = StockingsBlackTrans,
    		BodyLocation = UnderwearExtra1,
    		Icon = StockingsSheer,
    		Weight = 0.1,
    		WorldStaticModel = StockingsBlackTrans_Ground,
    	}
    

    See also