Hawaiian Shirt: Difference between revisions

From PZwiki
m (Distribution)
(→‎Code: code box update)
Line 64: Line 64:


==Code==
==Code==
'''''From clothing_pants.txt (Project Zomboid directory/media/scripts/clothing)'''''
''Hawaiian Shirt''
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 0
  | source = clothing_pants.txt
  | retrieved = true
  | version = 41
  | incver = 56
  | code =
item Shirt_HawaiianTINT
{
  Type              = Clothing,
  DisplayName      = Hawaiian Shirt,
  ClothingItem      = Shirt_HawaiianTINT,
  BodyLocation      = ShortSleeveShirt,
  Icon              = ShirtHawaiianWhite,
  BloodLocation    = Shirt,
  Insulation        = 0.1,
  WindResistance    = 0.05,
  FabricType        = Cotton,
  WorldStaticModel  = TShirt_Ground,
}
  }}
}}


''Hawaiian Shirt''
{{Retrieved|version=41|incver=56}}
<pre>
  item Shirt_HawaiianTINT
{
Type = Clothing,
DisplayName = Hawaiian Shirt,
ClothingItem = Shirt_HawaiianTINT,
BodyLocation = ShortSleeveShirt,
Icon = ShirtHawaiianWhite,
BloodLocation = Shirt,
        Insulation = 0.1,
        WindResistance = 0.05,
        FabricType = Cotton,
        WorldStaticModel = TShirt_Ground,
}
</pre>
''Red Hawaiian Shirt''
''Red Hawaiian Shirt''
{{Retrieved|version=41|incver=56}}
{{CodeBox
<pre>
| {{CodeSnip
  item Shirt_HawaiianRed
  | lang = java
{
  | line = true
Type = Clothing,
  | start = 0
DisplayName = Hawaiian Red Shirt,
  | source = clothing_pants.txt
ClothingItem = Shirt_HawaiianRed,
  | retrieved = true
BodyLocation = ShortSleeveShirt,
  | version = 41
Icon = ShirtHawaiianRed,
  | incver = 56
BloodLocation = Shirt,
  | code =
        Insulation = 0.1,
item Shirt_HawaiianRed
        WindResistance = 0.05,
{
        FabricType = Cotton,
  Type             = Clothing,
        WorldStaticModel = TShirt_Ground,
  DisplayName       = Hawaiian Red Shirt,
}
  ClothingItem     = Shirt_HawaiianRed,
</pre>
  BodyLocation     = ShortSleeveShirt,
  Icon             = ShirtHawaiianRed,
  BloodLocation     = Shirt,
  Insulation       = 0.1,
  WindResistance   = 0.05,
  FabricType       = Cotton,
  WorldStaticModel = TShirt_Ground,
}
  }}
}}
{{Navbox clothing}}
{{Navbox clothing}}

Revision as of 09:44, 8 January 2024

The Game WorldItemsClothingHawaiian Shirt
Hawaiian Shirt
White Hawaiian Shirt Red Hawaiian Shirt
General
Category Clothing
Encumbrance
Heavy Load
1.0
Body location ShortSleeveShirt
Fabric Cotton
Insulation
Insulation 0.1
Wind resistance 0.05
Technical details
Item ID Base.Shirt_HawaiianTINT
Base.Shirt_HawaiianRed

The hawaiian shirt is a colorful shirt with a flower pattern printed on it.

Usage

Pros and cons

Pros Cons
  • Provides a tiny amount of weather protection and insulation
  • Provides no protection from zombies whatsoever
  • Less insulation than an ordinary T-shirt

Recipes

Hawaiian Shirts can craft ripped sheets or sheet ropes.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Rag.png
Ripped Sheets
0.25 Tailoring none Clothing (Cotton)
Clothing (Cotton)
(consumed)

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
SheetRope.png
Sheet Rope
0 XP none
(consumed)

DDistributionistribution

Buildings

Hawaiian shirts can be found in clothing stores.

Code

Hawaiian Shirt

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

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

Retrieved: Build 41.56
item Shirt_HawaiianTINT
{
  Type              = Clothing,
  DisplayName       = Hawaiian Shirt,
  ClothingItem      = Shirt_HawaiianTINT,
  BodyLocation      = ShortSleeveShirt,
  Icon              = ShirtHawaiianWhite,
  BloodLocation     = Shirt,
  Insulation        = 0.1,
  WindResistance    = 0.05,
  FabricType        = Cotton,
  WorldStaticModel  = TShirt_Ground,
}

Red Hawaiian Shirt

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

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

Retrieved: Build 41.56
item Shirt_HawaiianRed
{
  Type              = Clothing,
  DisplayName       = Hawaiian Red Shirt,
  ClothingItem      = Shirt_HawaiianRed,
  BodyLocation      = ShortSleeveShirt,
  Icon              = ShirtHawaiianRed,
  BloodLocation     = Shirt,
  Insulation        = 0.1,
  WindResistance    = 0.05,
  FabricType        = Cotton,
  WorldStaticModel  = TShirt_Ground,
}