Shells Bandolier: Difference between revisions

From PZwiki
(Created page with "{{languages}} {{header|The Game World|Items|Clothing|version=Version 41|incver=68}} {{Infobox clothing | display_name=Shells Ammo Strap | name_colour=Clothing | name_text_colo...")
 
m (Remove lines))
(29 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Clothing|Accessories}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=68}}
{{Page version|41.78.16}}
{{Infobox clothing
{{Infobox item
| display_name=Shells Ammo Strap
|name=Shells Bandolier
| name_colour=Clothing
|model=AmmoStrap_Ground_Model.png
| name_text_colour=Clothing
|icon=AmmoStrap.png
| image=[Fill].png
|icon_name=Shells Bandolier
| image_width=[Fill in width or]120px
<!-- General -->
<!-- General -->
| category=Clothing
|category=Accessory
| weight = 1.0
|weight=1.0
| body_location=AmmoStrap
|equipped=AmmoStrap
<!-- Speed -->
<!-- Protection -->
<!-- Insulation -->
<!-- Technical details -->
<!-- Technical details -->
| class_name=AmmoStrap_Shells
|item_id=Base.AmmoStrap_Shells
}}
}}
When worn increases the reload speed of all firearms using [[Shotgun Shells|shotgun shells]] by 15%. For increasing the reload speed of all other firearms use a [[Bullets Ammo Strap]].
A '''shells bandolier''' is a [[clothing]] accessory.


__TOC__
==Usage==
When worn, increases the reload speed of all firearms using [[Shotgun Shells|shotgun shells]] by 15%. For increasing the reload speed of all other firearms, use a [[Bullets Bandolier|bullets bandolier]].
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|policestorage
|[[locker]]
|4
|4
|}


== Item Distribution ==
===Buildings===
===Buildings===
The gun storage in police stations can contain ammo straps.
The gun storage in police stations can contain bandoliers.


===Vehicles===
===Vehicles===
Line 29: Line 42:


===Foraging===
===Foraging===
This item has a rare chance to be found in grasslands, trailer parks, town and streets and parking.
This item has a rare chance to be found in grasslands, trailer parks, town, and streets and parking.
 
== Code ==


=== Item ===
===Zombies===
'''''From clothing_others.txt (Project Zomboid directory/media/scripts/clothing)'''''
It can also be found in the stories of vehicles of zombies thugs and in shops with police cars outside.


{{Retrieved|version=41|incver=68}}
==Code==
<pre>    item AmmoStrap_Shells
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 784
  | source = clothing_others.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item AmmoStrap_Shells
{
{
        DisplayCategory = Accessory,
    DisplayCategory = Accessory,
Type = Clothing,
Type = Clothing,
DisplayName = Shells Ammo Strap,
DisplayName = Shells Ammo Strap,
Line 45: Line 65:
BodyLocation = AmmoStrap,
BodyLocation = AmmoStrap,
Icon = AmmoStrap,
Icon = AmmoStrap,
Tooltip = Tooltip_AmmoStrap,
WorldStaticModel = AmmoStrap_Ground,
WorldStaticModel = AmmoStrap_Ground,
Tags = ReloadFastShells,
}
}
</pre>
}}
}}


==See also==
==See also==
*[[Bullets Ammo Strap]]
*[[Bullets Bandolier]]
{{Navbox clothing}}
*[[Double Holster]]
*[[Holster]]
 
{{Navbox items|accessories}}

Revision as of 07:21, 15 April 2024

Project ZomboidItemsClothingAccessoriesShells Bandolier
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Shells Bandolier
AmmoStrap Ground Model.png
General
Category
Accessory
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
AmmoStrap
Technical
Item ID
Base.AmmoStrap_Shells

A shells bandolier is a clothing accessory.

Usage

When worn, increases the reload speed of all firearms using shotgun shells by 15%. For increasing the reload speed of all other firearms, use a bullets bandolier.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
policestorage locker 4 4

Buildings

The gun storage in police stations can contain bandoliers.

Vehicles

The trunk of police vehicles can spawn this item.

Foraging

This item has a rare chance to be found in grasslands, trailer parks, town, and streets and parking.

Zombies

It can also be found in the stories of vehicles of zombies thugs and in shops with police cars outside.

Code

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

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

Retrieved: Build 41.78.16
item AmmoStrap_Shells
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Shells Ammo Strap,
		ClothingItem = AmmoStrap_Shells,
		BodyLocation = AmmoStrap,
		Icon = AmmoStrap,
		Tooltip = Tooltip_AmmoStrap,
		WorldStaticModel = AmmoStrap_Ground,
		Tags = ReloadFastShells,
	}

See also