Poncho (green): Difference between revisions

From PZwiki
m (Automated CodeBox update)
(table appears present, missingtable marker removed)
Line 105: Line 105:
|4  
|4  
|6
|6
|}{{Stub|section=true|Missing distribution table}}
|}
Ponchos can be found ''rarely'' in the Louisville Military checkpoint, Army surplus stores, malls, and pawns shops.
Ponchos can be found ''rarely'' in the Louisville Military checkpoint, Army surplus stores, malls, and pawns shops.



Revision as of 21:21, 28 March 2024

Project ZomboidItemsClothingTopsJacketsPoncho (green)
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.
Poncho
Poncho (green)
Poncho (green, hooded)
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1
Equipped
JacketHat
Properties
Run speed
90% (disabled)
Scratch defence
10%
Bite defence
0%
Neck protection
0%
Insulation
15%
Wind resistance
80%
Water resistance
100%
Technical
Item ID
Base.PonchoGreenDOWN
Base.PonchoGreen

A green poncho is a clothing item. It fully protects from rain, and looks cool.

Usage

When worn, the poncho provides great water and wind resistance, but barely any protection against anything other than scratches.

Pros and cons

Pros Cons
  • Provides full water resistance.
  • Protects head and provides scratch protection even when the hood is down, making it better than the yellow poncho.
  • Little insulation may make it great for hot summer rains for character without the outdoorsman trait.
  • Very little insulation for winter.
  • Only offers a little of scratch protection.
  • Can't be repaired.

Body location

Hood down
Protection Jacket.png
  • Neck
  • Upper Torso
  • Lower Torso
  • Upper Arms
  • Forearms
Hood up
Protection JacketHat.png
  • Head
  • Neck
  • Upper Torso
  • Lower Torso
  • Upper Arms
  • Forearms

Distribution

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

Containers
Building/Room Container Rolls Chance
all Outfit_Hunter 4 6
locker 4 4
armysurplus clothingrack 4 6
clothingrack 4 6
bedroom crate 1 0.2
locker 4 6
camping clothingrack 4 6
changeroom locker 4 6
closet crate 4 2
crate 4 6
crate 4 6

Ponchos can be found rarely in the Louisville Military checkpoint, Army surplus stores, malls, and pawns shops.

Trivia

  • When hooded, it provides 5% less insulation and wind resistance (10% and 75% respectively). This behavior is similar with other items with a hood.
  • When unhooded, it still protects head. This is likely an oversight.
  • It uses the same icon as Hoodie.

Code

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

HoodieWhite.png Base.PonchoGreenDOWN
Source: ProjectZomboid\media\scripts\clothing\clothing_jacket.txt

Retrieved: Build 41.78.16
item PonchoGreenDOWN
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Poncho,
        ClothingItem = PonchoGreenDOWN,
        BodyLocation = Jacket_Down,
        Icon = HoodieWhite,
        ColorRed = 69,
        ColorGreen = 98,
        ColorBlue = 36,
        BloodLocation = Shirt;FullHelmet;Trousers,
        RunSpeedModifier = 0.9,
        ClothingItemExtra = PonchoGreen,
        ClothingItemExtraOption = UpHoodie,
        clothingExtraSubmenu = DownHoodie,
        ScratchDefense = 10,
        NeckProtectionModifier = 0.5,
        Insulation = 0.15,
        WindResistance = 0.8,
        WaterResistance = 1.0,
        WorldStaticModel = Poncho_Ground,
    }

HoodieWhite.png Base.PonchoGreen
Source: ProjectZomboid\media\scripts\clothing\clothing_jacket.txt

Retrieved: Build 41.78.16
item PonchoGreen
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Poncho,
        ClothingItem = PonchoGreen,
        BodyLocation = JacketHat,
        Icon = HoodieWhite,
        ColorRed = 69,
        ColorGreen = 98,
        ColorBlue = 36,
        BloodLocation = Shirt;FullHelmet;Trousers,
        RunSpeedModifier = 0.9,
        ClothingItemExtra = PonchoGreenDOWN,
        ClothingItemExtraOption = DownHoodie,
        clothingExtraSubmenu = UpHoodie,
        ScratchDefense = 10,
        Insulation = 0.1,
        WindResistance = 0.75,
        WaterResistance = 1.0,
        WorldStaticModel = Poncho_Ground,
    }

See also