Scarf

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]
Scissors.png
It has been suggested that this article should be split into Scarf (disambiguation), Scarf (white), Scarf (white stripes), Scarf (blue stripes), Scarf (red stripes).
Scarf
Model ScarfWhite.png
Scarf StripeBlackWhite model.png
Scarf StripeBlueWhite model.png
Scarf StripeRedWhite model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Equipped
Scarf
Properties
Material
Cotton
Scratch defence
10%
Insulation
Wind resistance
Technical
Item ID

A scarf is a type of clothing in Project Zomboid.

Usage

Pros and cons

Pros Cons
  • Provides high insulation for low temperatures (variant dependent).
  • Highest protection clothing exclusive to the neck.
  • Can be patched via Tailoring to add up to 10/20/10 defense.
  • Provides minimal protection against zombies.
  • Provides high insulation for summer.

Variants

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

Icon Encumbrance Scratch resistance Insulation Wind resistance Item 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

ScarfGeneric.png Scarf (White)

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

Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Scarf_White
    {
        DisplayCategory = Accessory,
        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,
        WorldStaticModel = Scarf_Ground,
    }

ScarfStripedBlack.png Scarf (Black)

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

Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Scarf_StripeBlackWhite
    {
        DisplayCategory = Accessory,
        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,
        WorldStaticModel = Scarf_Ground,
    }

ScarfStripedBlue.png Scarf (Blue)

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

Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Scarf_StripeBlueWhite
    {
        DisplayCategory = Accessory,
        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,
        WorldStaticModel = Scarf_Ground,
    }

ScarfStripedRed.png Scarf (Red)

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

Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Scarf_StripeRedWhite
    {
        DisplayCategory = Accessory,
        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,
        WorldStaticModel = Scarf_Ground,
    }

See also