Ranger Jacket: Difference between revisions

From PZwiki
(Page restructing/edits)
(Add code)
 
(18 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{Header|Project Zomboid|Items|Clothing|Tops|Jackets}}
{{languages}}
{{Page version|41.50}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=0|hidecat=true}}
{{Infobox item
{{Infobox clothing
|name=Ranger Jacket
| display_name = Ranger Jacket
|model=Jacket_Ranger_model.png
| name_colour = Clothing
|icon=JacketRanger.png
| name_text_colour = Clothing
| image = JacketRanger.png
| image_width = 300px
<!-- General -->
<!-- General -->
| category = Clothing
|category=Clothing
| weight = 2.0
|weight=2.0
| body_location = Jacket
|equipped=Jacket
| fabric_type = Cotton
|material_type=Cotton
<!-- Speed -->
|run_speed=0.93
| run_speed = 0.93
|combat_speed=0.98
| combat_speed = 0.98
|scratch_defense=30
<!-- Protection -->
|bite_defense=20
| scratch_defense = 30
|neck_protection=0.5
| bite_defense = 20
|insulation=0.7
| neck_protection = 0.5
|wind_resistance=0.7
<!-- Insulation -->
|water_resistance=0.5
| insulation = 0.7
| wind_resistance = 0.7
| water_resistance = 0.5
<!-- Technical details -->
<!-- Technical details -->
| class_name = item Jacket_Ranger
|item_id=item Jacket_Ranger
}}
}}
The '''Ranger Jacket''' is a jacket worn by park rangers.
The '''Ranger Jacket''' is a jacket worn by park rangers.
==Usage==
==Usage==
Ranger jackets provide a moderate amount of protection for the wearer's neck, torso and arms from scratches and bites at the cost of a minor combat-speed and run-speed reduction.
Ranger jackets provide a moderate amount of protection for the wearer's neck, torso, and arms from scratches and bites at the cost of a minor combat-speed and run-speed reduction.


Ranger jackets provide a high amount of insulation, wind resistance and water resistance.
Ranger jackets provide a high amount of insulation, wind resistance and water resistance.


Ranger jackets can be converted into a [[Sheet Rope]] which can be used for climbing up or safely descending floors or torn for [[Ripped Sheets]] which can be used as makeshift bandages, components in various recipes and material for [[tailoring]].
The jacket can be converted into a [[Sheet Rope|sheet rope]] which can be used for climbing up or safely descending floors or torn for [[Ripped Sheets|ripped sheets]] which can be used as makeshift bandages, components in various recipes and material for [[tailoring]].
 
==Distribution==
==Distribution==
Ranger jackets can be found on park ranger [[zombie]]s. Ranger zombies can rarely be found in the vicinity of areas that contain a zombie population. Ranger zombies can usually be found near park ranger [[vehicles]]
Ranger jackets can be found on park ranger [[zombie]]s. Ranger zombies can rarely be found in the vicinity of areas that contain a zombie population. Ranger zombies can usually be found near park ranger [[vehicles]]
==Body Location==
 
==Body location==
{| style="text-align:center;"
{| style="text-align:center;"
|<br>{{Body location|body_location=Jacket}}
|<br>{{Body location|body_location=Jacket}}
|}
|}
==Trivia==
==Trivia==
*Ranger jackets cannot be selected in the character creation menu, even if the character has the park ranger [[occupation]].
*Ranger jackets cannot be selected in the character creation menu, even if the character has the park ranger [[occupation]].
==Code==
{{CodeBox|
{{CodeSnip
  | lang = java
  | line = true
  | start = 362
  | source = clothing_jacket.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Jacket_Ranger
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Ranger Jacket,
        ClothingItem = Jacket_Ranger,
        BodyLocation = Jacket,
        Icon = JacketRanger,
        BloodLocation = Jacket,
        RunSpeedModifier = 0.93,
        CombatSpeedModifier = 0.98,
        BiteDefense = 20,
        ScratchDefense = 30,
        NeckProtectionModifier = 0.5,
        Insulation = 0.7,
        WindResistance = 0.7,
        FabricType = Cotton,
        WaterResistance = 0.5,
        Weight = 2,
        WorldStaticModel = JacketCoat_Ground,
    }
}}
}}
==See also==
==See also==
*[[Ranger Hat]]
*[[Ranger Hat]]
Line 48: Line 81:
*[[Ranger Pants]]
*[[Ranger Pants]]


{{navbox clothing}}
{{Navbox items|tops}}

Latest revision as of 10:22, 2 May 2024

Project ZomboidItemsClothingTopsJacketsRanger Jacket
Spiffo controlyourself.png
This page was last updated for an older version (41.50).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Ranger Jacket
Jacket Ranger model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
2.0
Equipped
Jacket
Properties
Run speed
93% (disabled)
Combat speed
98%
Scratch defence
30%
Bite defence
20%
Neck protection
50%
Insulation
70%
Wind resistance
70%
Water resistance
50%
Technical
Item ID
item Jacket_Ranger

The Ranger Jacket is a jacket worn by park rangers.

Usage

Ranger jackets provide a moderate amount of protection for the wearer's neck, torso, and arms from scratches and bites at the cost of a minor combat-speed and run-speed reduction.

Ranger jackets provide a high amount of insulation, wind resistance and water resistance.

The jacket can be converted into a sheet rope which can be used for climbing up or safely descending floors or torn for ripped sheets which can be used as makeshift bandages, components in various recipes and material for tailoring.

Distribution

Ranger jackets can be found on park ranger zombies. Ranger zombies can rarely be found in the vicinity of areas that contain a zombie population. Ranger zombies can usually be found near park ranger vehicles

Body location


Protection Jacket.png
  • Neck
  • Upper Torso
  • Lower Torso
  • Upper Arms
  • Forearms

Trivia

  • Ranger jackets cannot be selected in the character creation menu, even if the character has the park ranger occupation.

Code

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

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

Retrieved: Build 41.78.16
item Jacket_Ranger
    {
        DisplayCategory = Clothing,
        Type = Clothing,
        DisplayName = Ranger Jacket,
        ClothingItem = Jacket_Ranger,
        BodyLocation = Jacket,
        Icon = JacketRanger,
        BloodLocation = Jacket,
        RunSpeedModifier = 0.93,
        CombatSpeedModifier = 0.98,
        BiteDefense = 20,
        ScratchDefense = 30,
        NeckProtectionModifier = 0.5,
        Insulation = 0.7,
        WindResistance = 0.7,
        FabricType = Cotton,
        WaterResistance = 0.5,
        Weight = 2,
        WorldStaticModel = JacketCoat_Ground,
    }

See also