Military Boots: Difference between revisions

From PZwiki
m (→‎Pros and Cons: Rephrase)
m (Cleanups)
Line 1: Line 1:
<!-- COMMENT: This section is for the language bar. The language bar is used for linking translations of the same page into different languages.
{{Languages}}{{Header|The Game World|Items|Clothing|version=Version 41|incver=56}}{{Infobox clothing
-->{{languages}}<!-- COMMENT: The header format can be seen in the header template with a working explanation. The header connects categories and Version no. PLEASE ENTER THE VERSION AND INCREMENT No. WHEN YOU MAKE A PAGE. It helps everyone else know how old the page is versionwise -->
{{header|The Game World|Items|Clothing|version=Version 41|incver=56}}
<!-- COMMENT: Here is the infobox for the clothing. This is a quick lookup for the item's stats. For more information, see: https://pzwiki.net/wiki/Template:Infobox_clothing
-->{{Infobox clothing
| display_name = Military Boots
| display_name = Military Boots
| name_colour = Clothing
| name_colour = Clothing
| name_text_colour = Clothing
| name_text_colour = Clothing
| image =  
| image =  
| image_width = 300px
| image_width=200px
| alternate_image = BootsArmy.png
| alternate_image = BootsArmy.png
| alternate_name = Military Boots
| alternate_name = Military Boots
Line 50: Line 46:
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.Shoes_ArmyBoots<br>Base.Shoes_ArmyBootsDesert
| class_name = Base.Shoes_ArmyBoots<br>Base.Shoes_ArmyBootsDesert
}}<!--
}}'''Military boots''' are either black or tan colored boots commonly worn by soldiers.
COMMENT: include a very brief introduction to the item
-->'''Military boots''' are either black or tan colored boots commonly worn by soldiers.
 
__TOC__
<!--Comment: This is where the 'Table Of Contents' will go if it is needed-->


==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 = Extremely bite and scratch resistant
|pros1 = Extremely bite and scratch resistant
|pros2 = Excellent insulation and weather protection (only for the regular variant)
|pros2 = Excellent insulation and weather protection (only for the regular variant)
<!-- #CONS# - below this line -->
|cons1 = Can be difficult to find
|cons1 = Can be difficult to find
|cons2 = Will slow the player down a little
|cons2 = Will slow the player down a little
}}
}}


== Item Distribution ==
==Item distribution==
<!--Comment: The locations this item can be found should be placed here. Spawn locations can be found in the distribution.lua, ProceduralDistributions.lua and vehicledistribution.lua files. -->
 
===Buildings===
===Buildings===
Military boots will spawn in clothes stores around the map.
Military boots will spawn in clothes stores around the map.
Line 78: Line 64:
Survivalist and soldier zombies can both be found wearing military boots, with the soldiers spawning at the secret military base near [[Rosewood]]. It can also sometimes spawn on civilians. Tan colored version is also often worn by construction worker zombies, which spawn near factories and construction sites.
Survivalist and soldier zombies can both be found wearing military boots, with the soldiers spawning at the secret military base near [[Rosewood]]. It can also sometimes spawn on civilians. Tan colored version is also often worn by construction worker zombies, which spawn near factories and construction sites.


== Code ==
==Code==
<!--Comment: all the code related to the item found in txt files should be placed here-->
<!--COMMENT: Current location of Code in directory for updating purposes. Example below shows how to lay it out. ''''' is for bold italic.-->
'''''From clothing_shoes.txt (Project Zomboid directory/media/scripts/clothing)'''''
'''''From clothing_shoes.txt (Project Zomboid directory/media/scripts/clothing)'''''


''Military Boots''
''Military Boots''
<!--COMMENT: Be sure to include this "Retrieved" template, filling in the version of the game the code was retrieved.-->
{{Retrieved|version=41|incver=56}}
{{Retrieved|version=41|incver=56}}
<pre> item Shoes_ArmyBoots
<pre>
  item Shoes_ArmyBoots
{
{
Type = Clothing,
Type = Clothing,
Line 108: Line 92:
</pre>
</pre>
''Military Desert Boots''
''Military Desert Boots''
<!--COMMENT: Be sure to include this "Retrieved" template, filling in the version of the game the code was retrieved.-->
{{Retrieved|version=41|incver=56}}
{{Retrieved|version=41|incver=56}}
<pre> item Shoes_ArmyBootsDesert
<pre>
  item Shoes_ArmyBootsDesert
{
{
Type = Clothing,
Type = Clothing,
Line 133: Line 117:


==See also==
==See also==
<!--COMMENT: Location of links to relevant guides or other pages that may not have been mentioned on this page but still relate to the item in some way. -->
*[[Boots]]
*[[Boots]]
*[[Rain Boots]]
*[[Rain Boots]]
*[[Riding Boots]]
*[[Riding Boots]]
{{Navbox clothing}}
{{Navbox clothing}}
<!--COMMENT: Categories that aren't mentioned in the header should go here. E.g. Welder Mask uses [[Category:Construction]] -->

Revision as of 21:14, 22 June 2023

The Game WorldItemsClothingMilitary Boots
Military Boots
Military Boots Military Desert Boots
General
Category Clothing
Encumbrance
Heavy Load
1.0
Body location Shoes
Speed
Run speed 90%
Protection
Scratch defense 100
Bite defense 100
Insulation
Insulation 1.0
Wind resistance 1.0
Water resistance 0.8
Technical details
Item ID Base.Shoes_ArmyBoots
Base.Shoes_ArmyBootsDesert

Military boots are either black or tan colored boots commonly worn by soldiers.

Usage

Pros and cons

Pros Cons
  • Extremely bite and scratch resistant
  • Excellent insulation and weather protection (only for the regular variant)
  • Can be difficult to find
  • Will slow the player down a little

Item distribution

Buildings

Military boots will spawn in clothes stores around the map.

NPCs

Survivalist and soldier zombies can both be found wearing military boots, with the soldiers spawning at the secret military base near Rosewood. It can also sometimes spawn on civilians. Tan colored version is also often worn by construction worker zombies, which spawn near factories and construction sites.

Code

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

Military Boots Retrieved: Build 41.56

  item Shoes_ArmyBoots
	{
		Type = Clothing,
		DisplayName = Military Boots,
		ClothingItem = Shoes_ArmyBoots,
		BodyLocation = Shoes,
		BloodLocation = Shoes,
		Icon = BootsARmy,
		StompPower = 2.5,
		ConditionLowerChanceOneIn = 20,
        ConditionMax = 30,
        RunSpeedModifier = 0.9,
        RemoveOnBroken = false,
        ScratchDefense = 100,
        BiteDefense = 100,
        Insulation = 1.0,
        WindResistance = 1.0,
        WaterResistance = 0.8,
        WorldStaticModel = Boots_Ground,
	}

Military Desert Boots Retrieved: Build 41.56

  item Shoes_ArmyBootsDesert
	{
		Type = Clothing,
		DisplayName = Military Desert Boots,
		ClothingItem = Shoes_ArmyBootsDesert,
		BodyLocation = Shoes,
		BloodLocation = Shoes,
		Icon = BootsHiking,
		StompPower = 2.5,
		ConditionLowerChanceOneIn = 20,
        ConditionMax = 30,
        RunSpeedModifier = 0.9,
        RemoveOnBroken = false,
        ScratchDefense = 100,
        BiteDefense = 100,
        Insulation = 0.5,
        WindResistance = 0.60,
        WaterResistance = 0.5,
        WorldStaticModel = Boots_Ground,
	}

See also