5.56mm Round

From PZwiki
(Redirected from 5.56mm Round)
Project ZomboidItemsWeaponsFirearmsAmmo5.56mm Round
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
5.56mm Round
RifleAmmo Model.png
RifleAmmoBox Model.png
General
Category
Ammo
Encumbrance
Moodle Icon HeavyLoad.png
0.025 (single)
1.2 (box)
Used in
Properties
Capacity
60 rounds
Technical
Item ID
Base.556Bullets
Base.556Box

The 5.56mm round is a type of ammo for firearms.

Usage

5.56mm rounds are used in the M16 assault rifle. They can be loaded into a 5.56mm magazine.

Crafting

60 rounds can be merged into a box of 5.56mm rounds, saving encumbrance compared to carrying the rounds individually.

This ammunition can be disassembled to create gunpowder.

Product Ingredients Tools Requirements Workstation XP
GunpowderJar.png
Gunpowder
One of:
40calAmmoBox.png .38 Special Round ×1
40calAmmoBox.png .44 Magnum Round ×1
40calAmmoBox.png .45 Auto Round ×1
40calAmmoBox.png 9mm Round ×1
RifleAmmo308loose.png 5.56mm Round ×1
RifleAmmo308loose.png .308 Round ×1
RifleAmmo223loose.png .223 Round ×1
ShotgunAmmo.png Shotgun Shells ×1
none none none none
RifleAmmo308loose.png
5.56 Round ×60
RifleAmmo308.png Box of 5.56 Rounds ×1 none none none none
RifleAmmo308.png
Box of 5.56 Rounds
RifleAmmo308loose.png 5.56 Round ×60 none none none none

Distribution

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

Containers
Building/Room Container Rolls Chance
all locker 4 1
militarycrate 4 1
militarycrate 4 1
militarycrate 4 2
militarycrate 4 2
militarycrate 4 1
militarycrate 4 2
druglab metal_shelves 4 1
pawnshopoffice locker 4 1

5.56mm Rounds can be found very rarely in police stations, gun stores, military buildings, and on zombies.

Code

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

5.56mm Round RifleAmmo308loose.png
Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
item 556Bullets
    {
        DisplayCategory = Ammo,
        Count	=	5,
        Weight	=	0.025,
        AlwaysWelcomeGift	=	TRUE,
        Type	=	Normal,
        DisplayName	=	.556 Ammo,
        Icon	=	RifleAmmo308loose,
        MetalValue = 1,
        WorldStaticModel = RifleAmmo,
    }

Box of 5.56mm Rounds RifleAmmo308.png
Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
item 556Box
    {
        DisplayCategory = Ammo,
        Weight	=	1.2,
        AlwaysWelcomeGift	=	TRUE,
        Type	=	Normal,
        DisplayName	=	Box of .556 Bullets,
        Icon	=	RifleAmmo308,
        MetalValue = 40,
        WorldStaticModel = RifleAmmoBox,
        PlaceOneSound = BoxOfRoundsPlaceOne,
        PlaceMultipleSound = BoxOfRoundsPlaceAll,
    }

See also