Military Boots: Difference between revisions

From PZwiki
m (Removed Testing tag due to Build 41 being stable.)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
<!-- COMMENT: This section is for the language bar. The language bar is used for linking translations of the same page into different languages.  
<!-- COMMENT: This section is for the language bar. The language bar is used for linking translations of the same page into different languages.  
-->{{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 -->
-->{{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 -->

Revision as of 21:00, 26 December 2021

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

The 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
  • 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.

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