Shells Bandolier: Difference between revisions

From PZwiki
(New name)
m (Remove lines))
(26 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Clothing|Accessories}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=78.3}}
{{Page version|41.78.16}}
{{Infobox clothing
{{Infobox item
| display_name=Shells Bandolier
|name=Shells Bandolier
| name_colour=Clothing
|model=AmmoStrap_Ground_Model.png
| name_text_colour=Clothing
|icon=AmmoStrap.png
| image=AmmoStrap_Ground_Model.png
|icon_name=Shells Bandolier
| image_width=200px
| alternate_image=AmmoStrap.png
| alternate_name=Shells Bandolier
<!-- General -->
<!-- General -->
| category=Accessory
|category=Accessory
| weight = 1.0
|weight=1.0
| body_location=AmmoStrap
|equipped=AmmoStrap
<!-- Speed -->
<!-- Protection -->
<!-- Insulation -->
<!-- Technical details -->
<!-- Technical details -->
| class_name=Base.AmmoStrap_Shells
|item_id=Base.AmmoStrap_Shells
}}A '''shells bandolier''' is a [[clothing]] accessory.  
}}
 
A '''shells bandolier''' is a [[clothing]] accessory.
__TOC__


==Usage==
==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]].
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==
==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
|}
===Buildings===
===Buildings===
The gun storage in police stations can contain bandoliers.
The gun storage in police stations can contain bandoliers.
Line 33: 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.
 
===Zombies===
It can also be found in the stories of vehicles of zombies thugs and in shops with police cars outside.


==Code==
==Code==
===Item===
{{CodeBox
'''''From clothing_others.txt (Project Zomboid directory/media/scripts/clothing)'''''
| {{CodeSnip
 
  | lang = java
{{Retrieved|version=41|incver=68}}
  | line = true
<pre>    item AmmoStrap_Shells
  | 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 48: 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==
Line 56: Line 76:
*[[Double Holster]]
*[[Double Holster]]
*[[Holster]]
*[[Holster]]
{{Navbox clothing}}
 
{{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