Hawaiian Shirt: Difference between revisions

From PZwiki
m (Cleanups)
Line 1: Line 1:
{{languages}}
{{Languages}}{{Header|The Game World|Items|Clothing|version=Version 41|incver=56}}{{Infobox clothing
{{header|The Game World|Items|Clothing|version=Version 41|incver=56}}
{{Infobox clothing
| display_name = Hawaiian Shirt
| display_name = Hawaiian Shirt
| name_colour = Clothing
| name_colour = Clothing
| name_text_colour = Clothing
| name_text_colour = Clothing
| image =  
| image =  
| image_width = 300px
| image_width = 200px
| alternate_image = ShirtHawaiianWhite.png
| alternate_image = ShirtHawaiianWhite.png
| alternate_name = White Hawaiian Shirt
| alternate_name = White Hawaiian Shirt
Line 43: Line 41:
| class_name = Base.Shirt_HawaiianTINT<br>Base.Shirt_HawaiianRed
| class_name = Base.Shirt_HawaiianTINT<br>Base.Shirt_HawaiianRed
}}The '''hawaiian shirt''' is a colorful shirt with a flower pattern printed on it.
}}The '''hawaiian shirt''' is a colorful shirt with a flower pattern printed on it.
__TOC__


==Usage==
==Usage==
<!--Comment: This section contains how the item can be used. This may include crafting, adding attachments (belts), storage space, or another functionality, such as being able to raise and lower the hood of some jackets. -->
===Pros and cons===
===Pros and Cons===
{{pros-cons
{{pros-cons
<!-- #PROS# - below this line -->
|pros1 = Provides a tiny amount of weather protection and insulation
|pros1 = Provides a tiny amount of weather protection and insulation
<!-- #CONS# - below this line -->
|cons1 = Provides no protection from zombies whatsoever
|cons1 = Provides no protection from zombies whatsoever
|cons2 = Less insulation than an ordinary [[T-Shirt]]
|cons2 = Less insulation than an ordinary [[T-Shirt]]
Line 66: Line 59:
|}
|}


== Item Distribution ==
==Item distribution==
===Buildings===
===Buildings===
Hawaiian shirts can be found in clothing stores.
Hawaiian shirts can be found in clothing stores.
== Code ==
 
==Code==
'''''From clothing_pants.txt (Project Zomboid directory/media/scripts/clothing)'''''
'''''From clothing_pants.txt (Project Zomboid directory/media/scripts/clothing)'''''


''Hawaiian Shirt''
''Hawaiian Shirt''
{{Retrieved|version=41|incver=56}}
{{Retrieved|version=41|incver=56}}
<pre>   item Shirt_HawaiianTINT
<pre>
  item Shirt_HawaiianTINT
{
{
Type = Clothing,
Type = Clothing,
Line 90: Line 85:
''Red Hawaiian Shirt''
''Red Hawaiian Shirt''
{{Retrieved|version=41|incver=56}}
{{Retrieved|version=41|incver=56}}
<pre>   item Shirt_HawaiianRed
<pre>
  item Shirt_HawaiianRed
{
{
Type = Clothing,
Type = Clothing,

Revision as of 20:24, 22 June 2023

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)

Item distribution

Buildings

Hawaiian shirts can be found in clothing stores.

Code

From clothing_pants.txt (Project Zomboid directory/media/scripts/clothing)

Hawaiian Shirt 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 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,
	}