Scarf

From PZwiki
Revision as of 11:31, 26 July 2021 by Vaileasys (talk | contribs) (Created page with "{{languages}} {{header|The Game World|Items|Clothing|version=Version 41|incver=52}} {{Infobox clothing | display_name = Scarf | name_colour = Clothing | name_text_colour = Clo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Scarf
Scarf
Scarf (White) Scarf (Black) Scarf (Blue) Scarf (Red)
General
Category Clothing
Encumbrance
Heavy Load
0.2
Body location Neck
Fabric Cotton
Protection
Scratch defense 10
Insulation
Insulation See Variants
Wind resistance See Variants
Technical details
Item ID See Variants

A scarf is a type of clothing in Project Zomboid.

Usage

Pros and Cons

Pros Cons
  • Provides high insulation for low temperatures. (variant dependant)
  • Highest protection clothing exclusive to the neck.
  • Provides minimal protection against zombies

Variants

There are four different variants of the scarf, each with their own stats.

Icon Weight Scratch Resistance Insulation Wind Resistance Base ID
ScarfGeneric.png 0.2 10% 100% 100% Base.Scarf_White
ScarfStripedBlack.png 0.2 10% 50% 55% Base.Scarf_StripeBlackWhite
ScarfStripedBlue.png 0.2 10% 40% 30% Base.Scarf_StripeBlueWhite
ScarfStripedRed.png 0.2 10% 75% 75% Base.Scarf_StripeRedWhite

Body location

Protection Neck.png
  • Neck

Distribution

Buildings

Scarves can be found in clothing and department stores in storage crates.

Code

From clothing_jacket.txt (Project Zomboid directory/media/scripts/clothing)
ScarfGeneric.png Scarf (White) Retrieved: Build 41.52

    item Scarf_White
    {
        Type = Clothing,
        DisplayName = Scarf,
        ClothingItem = Scarf_White,
        BodyLocation = Scarf,
        Icon = ScarfGeneric,
        Weight = 0.2,
        BloodLocation = Neck,
        ScratchDefense = 10,
        Insulation = 1.0,
        WindResistance = 1.0,
        FabricType = Cotton,
    }

ScarfStripedBlack.png Scarf (Black) Retrieved: Build 41.52

    item Scarf_StripeBlackWhite
    {
        Type = Clothing,
        DisplayName = Scarf,
        ClothingItem = Scarf_StripeBlackWhite,
        BodyLocation = Scarf,
        Icon = ScarfStripedBlack,
        Weight = 0.2,
        BloodLocation = Neck,
        ScratchDefense = 10,
        Insulation = 0.5,
        WindResistance = 0.55,
        FabricType = Cotton,
    }

ScarfStripedBlue.png Scarf (Blue) Retrieved: Build 41.52

    item Scarf_StripeBlueWhite
    {
        Type = Clothing,
        DisplayName = Scarf,
        ClothingItem = Scarf_StripeBlueWhite,
        BodyLocation = Scarf,
        Icon = ScarfStripedBlue,
        Weight = 0.2,
        BloodLocation = Neck,
        ScratchDefense = 10,
        Insulation = 0.4,
        WindResistance = 0.3,
        FabricType = Cotton,
    }

ScarfStripedRed.png Scarf (Red) Retrieved: Build 41.52

    item Scarf_StripeRedWhite
    {
        Type = Clothing,
        DisplayName = Scarf,
        ClothingItem = Scarf_StripeRedWhite,
        BodyLocation = Scarf,
        Icon = ScarfStripedRed,
        Weight = 0.2,
        BloodLocation = Neck,
        ScratchDefense = 10,
        Insulation = 0.75,
        WindResistance = 0.75,
        FabricType = Cotton,
    }

See also