Ranger Shirt: Difference between revisions

From PZwiki
(Created page with "{{Testing|build=Build 41}} {{languages}} {{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}} {{Infobox clothing | display_name = Ranger Shirt...")
 
m (The ranger shirt can be found on park ranger zombies.)
 
(22 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{Header|Project Zomboid|Items|Clothing|Tops|Shirts}}
{{languages}}
{{Page version|41.78.16}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}}
{{Infobox item
{{Infobox clothing
|name=Ranger Shirt
| display_name = Ranger Shirt
|model=Shirt_Ranger_model.png
| name_colour = Clothing
|icon=ShirtPoliceGreen.png
| name_text_colour = Clothing
|icon_name=Ranger Shirt
| image = ShirtRanger.png
| image_width = 300px
 
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 1.0
|weight=1.0
| body_location = Shirt
|equipped=Shirt
 
|material_type=Cotton
|insulation=0.40
|wind_resistance=0.35
<!-- Technical details -->
<!-- Technical details -->
| class_name = item Shirt_Ranger
|item_id=Base.Shirt_Ranger
}}
}}
A '''ranger shirt''' is a long-sleeve shirt worn by park rangers.
==Usage==
Ranger shirts provide a moderate amount of insulation and wind resistance for the wearer's entire torso and arms.


The '''Ranger Shirt''' is a shirt worn by Park Rangers, The Ranger Shirt can be found on reanimated Park Rangers.  
==Distribution==
The ranger shirt can be found on park ranger [[zombie]]s.


==Body location==
==Body location==
{{Body location|body_location=Shirt}}
{{Body location|body_location=Shirt}}


==Trivia==
*The ranger shirt isn't available for selection by characters with the park ranger [[occupation]] in the character creation menu.
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 274
  | source = clothing_shirts.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Shirt_Ranger
{
    DisplayCategory = Clothing,
Type = Clothing,
DisplayName = Ranger Shirt,
ClothingItem = Shirt_Ranger,
BodyLocation = Shirt,
Icon = ShirtPoliceGreen,
BloodLocation = ShirtLongSleeves,
        Insulation = 0.4,
        WindResistance = 0.35,
        FabricType = Cotton,
        WorldStaticModel = Shirt_Ground,
}
}}
}}


==See also==
*[[Ranger Hat]]
*[[Ranger Jacket]]
*[[Ranger T-Shirt]]
*[[Ranger Pants]]


{{clear}}
{{Navbox items|tops}}

Latest revision as of 17:18, 24 April 2024

Project ZomboidItemsClothingTopsShirtsRanger Shirt
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Ranger Shirt
Shirt Ranger model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Shirt
Properties
Insulation
40%
Wind resistance
35%
Technical
Item ID
Base.Shirt_Ranger

A ranger shirt is a long-sleeve shirt worn by park rangers.

Usage

Ranger shirts provide a moderate amount of insulation and wind resistance for the wearer's entire torso and arms.

Distribution

The ranger shirt can be found on park ranger zombies.

Body location

Protection Shirt.png
  • Upper Torso
  • Lower Torso
  • Upper Arms
  • Forearms

Trivia

  • The ranger shirt isn't available for selection by characters with the park ranger occupation in the character creation menu.

Code

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

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

Retrieved: Build 41.78.16
item Shirt_Ranger
	{
	    DisplayCategory = Clothing,
		Type = Clothing,
		DisplayName = Ranger Shirt,
		ClothingItem = Shirt_Ranger,
		BodyLocation = Shirt,
		Icon = ShirtPoliceGreen,
		BloodLocation = ShirtLongSleeves,
        Insulation = 0.4,
        WindResistance = 0.35,
        FabricType = Cotton,
        WorldStaticModel = Shirt_Ground,
	}

See also