Choke Tube - Improved: Difference between revisions

From PZwiki
mNo edit summary
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}}{{Infobox weapon mod
{{header|The Game World|Items|Weapons|Firearms|Weapon Parts|type=Weapon|version=Version 41|incver=65}}
|display_name=Choke Tube Improved
{{Infobox weapon mod
|name_colour=Weapon
|display_name = Choke Tube Improved
|name_text_colour=Weapon
|name_colour = Weapon
|image=ShotgunChoke.png
|name_text_colour = Weapon
|image_width=120px
|image = ShotgunChoke_128px.png
|image_width = 128px
<!--GENERAL-->
<!--GENERAL-->
|weight = 0.1
|weight=0.1
|weapon = [[File:Shotgun2.png|link=JS-2000 Shotgun]]
|weapon=[[File:Shotgun2.png|link=JS-2000 Shotgun]]
|part_type = Canon
|part_type=Canon
<!--MODIFIERS-->
<!--MODIFIERS-->
|weight_mod = 0.1
|weight_mod=0.1
|spread_mod = -0.1
|spread_mod=-0.1
|damage_mod = -0.5
|damage_mod=-0.5
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name = Base.ChokeTubeImproved
|class_name=Base.ChokeTubeImproved
}}{{quote|text=Shotgun attachment. Provides a wider blast but decreased damage.|author=In-game tooltip}}'''Choke tube improved''' is a weapon mod.
}}{{quote|text=Shotgun attachment. Provides a wider blast but decreased damage.|author=In-game tooltip}}'''Choke tube improved''' is a weapon mod.


Line 30: Line 28:
'''''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 ChokeTubeImproved
<pre>
    item ChokeTubeImproved
     {
     {
         DisplayCategory = WeaponPart,
         DisplayCategory = WeaponPart,
Line 45: Line 44:
         MetalValue = 12,
         MetalValue = 12,
         WorldStaticModel = Shotgun_Choke_Ground,
         WorldStaticModel = Shotgun_Choke_Ground,
     }</pre>
     }
</pre>


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


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

Revision as of 15:37, 26 February 2023

The Game WorldItemsWeaponsFirearmsWeapon PartsChoke Tube - Improved
Choke Tube Improved
Choke Tube Improved
General
Category Weapon mod
Encumbrance
Heavy Load
0.1
Weapon(s) Shotgun2.png
Part type Canon
Modifiers
Encumbrance 0.1
Spread -0.1
Damage -0.5
Technical details
Item ID Base.ChokeTubeImproved
Shotgun attachment. Provides a wider blast but decreased damage.
— In-game tooltip

Choke tube improved is a weapon mod.

Usage

Increases the blast arc of a JS-2000 Shotgun to 6 tiles from 5, but significantly decreases damage. Can be attached using a screwdriver.

Could be useful for battling wide spreading hordes, but ineffective at taking out tight-packed and single targets.

Compatible weapons

Code

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

    item ChokeTubeImproved
    {
        DisplayCategory = WeaponPart,
        Type = WeaponPart,
        DisplayName = Choke Tube Improved,
        Icon = ShotgunChoke,
        Weight = 0.1,
        WeightModifier = 0.1,
        AngleModifier = -0.1,
        DamageModifier = -0.5,
        MountOn = Shotgun,
        PartType = Canon,
        Tooltip = Tooltip_ChokeTubeImproved,
        MetalValue = 12,
        WorldStaticModel = Shotgun_Choke_Ground,
    }

See also