Bandana (Face): Difference between revisions

From PZwiki
Bandana (Face)
(Created page with "A Bandana is an item of clothing that can be found in clothing stores, on dead zombies, and in homes randomly. ==Usage== A bandana can be tied onto the player's Bandana...")
 
Line 8: Line 8:
==In_Game_Code==
==In_Game_Code==


item Hat_Bandana
<nowiki> item Hat_Bandana
{
{
Type = Clothing,
Type = Clothing,
Line 21: Line 21:
Insulation = 0.10,
Insulation = 0.10,
Weight = 0.1,
Weight = 0.1,
}
}</nowiki>

Revision as of 09:40, 7 September 2021

A Bandana is an item of clothing that can be found in clothing stores, on dead zombies, and in homes randomly.

Usage

A bandana can be tied onto the player's Bandana (Face) or Bandana, depending on how it is worn when equipping. Offering 10% insulation it is more of a cosmetic item rather than utility clothing, also weighing a mere 0.1 in-game.


In_Game_Code

item Hat_Bandana { Type = Clothing, DisplayName = Bandana (Head), ClothingItem = Hat_Bandana, BodyLocation = Hat, IconsForTexture = BandanaBlack;BandanaBlue;BandanaRed, ClothingItemExtra = Hat_BandanaTied;Hat_BandanaMask, ClothingItemExtraOption = TieBandana;TieBandanaFace, CanHaveHoles = false, ChanceToFall = 5, Insulation = 0.10, Weight = 0.1, }