Shotgun Shells

From PZwiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Project ZomboidItemsWeaponsFirearmsAmmoShotgun Shells
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Shotgun Shells
ShotgunShells Model.png
BoxOfShotgunShells Model.png
General
Category
Ammo
Encumbrance
Moodle Icon HeavyLoad.png
0.05 (single)
0.9 (box)
Properties
Capacity
24 rounds
Technical
Item ID
Base.ShotgunShell
Base.ShotgunShellsBox

Shotgun shells are a type of ammo for firearms.

Usage

Shotgun shells are used in the JS-2000 Shotgun, Sawed-off JS-2000 Shotgun, double barrel shotgun and sawed-off double barrel shotgun.

Crafting

24 shells can be merged into a box of shotgun shells, being much lighter than individual shells.

This ammunition can be disassembled to created gunpowder.

Product XP gained Skill(s) Recipe Ingredient 1
ShotgunAmmo.png
Shotgun Shells x24
0 XP none Box of Shotgun Shells
Box of Shotgun Shells
(consumed)
Box of Shotgun Shells
Box of Shotgun Shells
0 XP none ShotgunAmmo.png
Shotgun Shells x24
(consumed)
GunpowderJar.png
Gunpowder
0 XP none
(consumed)

Distribution

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

Containers
Building/Room Container Rolls Chance
SafehouseLoot counter 4 1
all militarycrate 4 1
militarycrate 4 1
militarycrate 4 2
militarycrate 4 2
militarycrate 4 1
militarycrate 4 2
armysurplus displaycase 4 1
druglab metal_shelves 4 1
gunstore counter 4 1
locker 4 1
locker 4 2
locker 4 1
locker 4 2
pawnshop displaycase 4 1
pawnshopoffice locker 4 1
policestorage counter 4 1
counter 4 2
locker 4 1
locker 4 2

Shotgun shells can be found in houses, police stations, medical centers, vehicles and on zombies.

Gallery

Trivia

  • The shotgun shell seen in game is a generic lead shot shell. This round is one of the most common rounds for shotguns, next to slug rounds.

Code

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

Shotgun Shells ShotgunAmmo.png
Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
item ShotgunShells
	{
	    DisplayCategory = Ammo,
		Count	=	6,
		Weight	=	0.05,
		AlwaysWelcomeGift	=	TRUE,
		Type	=	Normal,
		DisplayName	=	Shotgun Shells,
		Icon	=	ShotgunAmmo,
		MetalValue = 1,
		WorldStaticModel = ShotGunShells,
	}

Box of Shotgun Shells ShotgunAmmoBox.png
Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
item ShotgunShellsBox
    {
        DisplayCategory = Ammo,
        Weight	=	0.9,
        Type	=	Normal,
        DisplayName	=	Box of Shotgun Shells,
        Icon	=	ShotgunAmmoBox,
        MetalValue = 24,
        WorldStaticModel = BoxOfShotGunShells,
        PlaceOneSound = BoxOfShellsPlaceOne,
        PlaceMultipleSound = BoxOfShellsPlaceAll,
    }

See also