Waistcoat: Difference between revisions

From PZwiki
m (Automated Formatting)
(+distrib table request, +distrib, -0% stats, +codebox)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Clothing|Vests}}
{{Header|Project Zomboid|Items|Clothing|Vests}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Reupload|Missing 3D models}}
{{About|a regular waistcoat|[[GigaMart]] one|GigaMart Waistcoat}}
{{About|a regular waistcoat|[[GigaMart]] one|GigaMart Waistcoat}}
{{Reupload|Missing 3D models}}
{{Infobox item
{{Infobox item
|name=Waistcoat
|name=Waistcoat
Line 14: Line 14:
|equipped=TorsoExtra
|equipped=TorsoExtra
|material=Cotton
|material=Cotton
|scratch_defense=0
|bite_defense=0
|insulation=0.35
|insulation=0.35
|wind_resistance=0.25
|wind_resistance=0.25
Line 21: Line 19:
|item_id=Base.Vest_Waistcoat<br>Base.Vest_WaistcoatTINT
|item_id=Base.Vest_Waistcoat<br>Base.Vest_WaistcoatTINT
}}
}}
'''Waistcoat''' is [[clothing]] [[Items|item]].
A '''waistcoat''' is [[clothing]] [[Items|item]].
 
==Usage==
===Pros and cons===
{{Pros-cons
|pros1 = Can be padded, repaired or torn down.
|pros2 = Can come in any color.
|cons1 = Only covers upper and lower torso.
|cons2 = Low insulation and wind resistance.
}}
 
==Distribution==
===NPCs===
Waistcoats can only be found on waiter zombies.  


===Variants===
===Variants===
There are two different variants of the waistcoat, one that only comes in black, and one that can be of random color.
{| class="wikitable theme-red sortable" style="text-align: center;"
{| class="wikitable theme-red sortable" style="text-align: center;"
! Icon
! Icon
Line 43: Line 52:
|}
|}


==Usage==
==Code==
===Pros and cons===
{{CodeBox|[[File:Vest Black.png]] {{ID|Base.Vest_Waistcoat}}<br>
{{Pros-cons
{{CodeSnip
|pros1 = Can be padded, repaired or torn down.
  | lang = java
|pros2 = Can come in any color.
  | line = true
|cons1 = Only covers upper and lower torso.
  | start = 838
|cons2 = Low insulation and wind resistance.
  | source = clothing_shirts.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Vest_Waistcoat
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Waistcoat,
        ClothingItem = Vest_Waistcoat,
        BodyLocation = TorsoExtra,
        Icon = Vest_Black,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.35,
        WindResistance = 0.25,
        FabricType = Cotton,
        WorldStaticModel = BulletVest_Ground,
    }
}}
}}


==Distribution==
[[File:Vest White.png]] {{ID|Base.Base.Vest_WaistcoatTINT}}<br>
{{Stub|section}}
{{CodeSnip
  | lang = java
  | line = true
  | start = 852
  | source = clothing_shirts.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Vest_WaistcoatTINT
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Waistcoat,
        ClothingItem = Vest_WaistcoatTINT,
        BodyLocation = TorsoExtra,
        Icon = Vest_White,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.35,
        WindResistance = 0.25,
        FabricType = Cotton,
        WorldStaticModel = BulletVest_Ground,
    }
}}
}}


==See also==
==See also==

Revision as of 17:23, 17 April 2024

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.
PlushSpiffo.pngThis article is about a regular waistcoat. For GigaMart one, see GigaMart Waistcoat.
Waistcoat
Waistcoat
Waistcoat
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
TorsoExtra
Properties
Material
Cotton
Insulation
35%
Wind resistance
25%
Technical
Item ID
Base.Vest_Waistcoat
Base.Vest_WaistcoatTINT

A waistcoat is clothing item.

Usage

Pros and cons

Pros Cons
  • Can be padded, repaired or torn down.
  • Can come in any color.
  • Only covers upper and lower torso.
  • Low insulation and wind resistance.

Distribution

NPCs

Waistcoats can only be found on waiter zombies.

Variants

Icon Name Item ID Color
Vest Black.png Waistcoat Base.Vest_Waistcoat Black
Vest White.png Waistcoat Base.Vest_WaistcoatTINT Random

Code

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

Vest Black.png Base.Vest_Waistcoat
Source: ProjectZomboid\media\scripts\clothing\clothing_shirts.txt

Retrieved: Build 41.78.16
item Vest_Waistcoat
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Waistcoat,
        ClothingItem = Vest_Waistcoat,
        BodyLocation = TorsoExtra,
        Icon = Vest_Black,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.35,
        WindResistance = 0.25,
        FabricType = Cotton,
        WorldStaticModel = BulletVest_Ground,
    }

Vest White.png Base.Base.Vest_WaistcoatTINT
Source: ProjectZomboid\media\scripts\clothing\clothing_shirts.txt

Retrieved: Build 41.78.16
item Vest_WaistcoatTINT
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Waistcoat,
        ClothingItem = Vest_WaistcoatTINT,
        BodyLocation = TorsoExtra,
        Icon = Vest_White,
        BloodLocation = ShirtNoSleeves,
        Insulation = 0.35,
        WindResistance = 0.25,
        FabricType = Cotton,
        WorldStaticModel = BulletVest_Ground,
    }

See also