Ammo Straps: Difference between revisions

From PZwiki
(added obsolete notice)
m (Remove 128px, minor fixes)
Line 1: Line 1:
{{languages}}
{{Languages}}{{Header|The Game World|Items|Weapons|Firearms|Weapon Parts|type=Weapon|version=Version 41|incver=65}}{{Obsolete|text=and replaced by [[Bullets Ammo Strap]] and [[Shells Ammo Strap]] in [[Build 41]].}}{{Infobox weapon mod
{{header|The Game World|Items|Weapons|Firearms|Weapon Parts|type=Weapon|version=Version 41|incver=65}}
|display_name=Ammo Straps
{{Obsolete|text=and replaced by [[Bullets Ammo Strap]] and [[Shells Ammo Strap]] in [[Build 41]].}}
|name_colour=Weapon
{{Infobox weapon mod
|name_text_colour=Weapon
|display_name = Ammo Straps
|image=AmmoStrap.png
|name_colour = Weapon
|image_width=120px
|name_text_colour = Weapon
|image = AmmoStrap_128px.png
|image_width = 128px
<!--GENERAL-->
<!--GENERAL-->
|weight = 0.5
|weight=0.5
|weapon = [[File:Shotgun2.png|link=JS-2000 Shotgun]][[File:RifleVarmint.png|link=MSR700 Rifle]][[File:RifleHunting.png|link=MSR788 Rifle]]
|weapon=[[File:Shotgun2.png|link=JS-2000 Shotgun]][[File:RifleVarmint.png|link=MSR700 Rifle]][[File:RifleHunting.png|link=MSR788 Rifle]]
|part_type = Sling
|part_type=Sling
<!--MODIFIERS-->
<!--MODIFIERS-->
|weight_mod = 0.5
|weight_mod=0.5
|reload_mod = -5
|reload_mod=-5
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name = Base.AmmoStraps
|class_name=Base.AmmoStraps
}}{{quote|text=Weapon attachment. Reduces firearm reload time.|author=In-game tooltip}}'''Ammo straps''', also known as '''bandolier''' or '''bandoleer''', is a weapon mod.
}}{{quote|text=Weapon attachment. Reduces firearm reload time.|author=In-game tooltip}}'''Ammo straps''', also known as '''bandolier''' or '''bandoleer''', is a weapon mod.


Line 32: Line 29:
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=65}}
{{Retrieved|version=41|incver=65}}
<pre>   item AmmoStraps
<pre>
    item AmmoStraps
     {
     {
         DisplayCategory = WeaponPart,
         DisplayCategory = WeaponPart,
Line 45: Line 43:
         Tooltip = Tooltip_AmmoStrap,
         Tooltip = Tooltip_AmmoStrap,
         WorldStaticModel = AmmoStrap_Ground,
         WorldStaticModel = AmmoStrap_Ground,
     }</pre>
     }
</pre>


==See also==
==See also==
* [[Weapon mods]]
*[[Weapon mods]]
* [[Weapons]]
*[[Weapons]]


{{Navbox/Weapons}}
{{Navbox weapons}}
{{Navbox_weapons}}

Revision as of 21:28, 26 February 2023

BoxSmall.png
This feature has been removed from the game.
Ammo Straps
Ammo Straps
General
Category Weapon mod
Encumbrance
Heavy Load
0.5
Weapon(s) Shotgun2.pngRifleVarmint.pngRifleHunting.png
Part type Sling
Modifiers
Encumbrance 0.5
Reload time -5
Technical details
Item ID Base.AmmoStraps
Weapon attachment. Reduces firearm reload time.
— In-game tooltip

Ammo straps, also known as bandolier or bandoleer, is a weapon mod.

Usage

This item can be attached to a JS-2000 Shotgun, MSR700 Rifle, or MSR788 Rifle, using a screwdriver, allowing the player to reload their equipped firearm significantly faster than without.

As of 41.65, looks like it is not working - no impact on reload times noticed by any testers with any level of the skill. Presumably, this item is being phased out, in favor of body-wearable accessories Bullets Bandolier and Shells Bandolier.

Compatible weapons

Code

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.65

    item AmmoStraps
    {
        DisplayCategory = WeaponPart,
        Type = WeaponPart,
        DisplayName = Ammo Straps,
        Icon = AmmoStrap,
        Weight = 0.5,
        WeightModifier = 0.5,
        ReloadTimeModifier = -5,
        MountOn = HuntingRifle; VarmintRifle; Shotgun,
        PartType = Sling,
        Tooltip = Tooltip_AmmoStrap,
        WorldStaticModel = AmmoStrap_Ground,
    }

See also