.223 Round: Difference between revisions

From PZwiki
m (Minor)
(→‎Code: code box update)
Line 42: Line 42:


==Code==
==Code==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
''.223 Round'' [[File:RifleAmmo223loose.png]]
''.223 Round'' [[File:RifleAmmo223loose.png]]
{{Retrieved|version=41|incver=52}}
{{CodeBox
<pre>
| {{CodeSnip
item 223Bullets
  | lang = java
Count = 5,
  | line = true
Weight = 0.1,
  | start = 0
AlwaysWelcomeGift= TRUE,
  | source = items.txt
Type = Normal,
  | retrieved = true
DisplayName = .223 Ammo,
  | version = 41
DisplayCategory = Ammo,
  | incver = 52
Icon = RifleAmmo223loose,
  | code =
MetalValue = 1,
item 223Bullets
</pre>
{
  Count             = 5,
  Weight           = 0.1,
  AlwaysWelcomeGift = TRUE,
  Type             = Normal,
  DisplayName       = .223 Ammo,
  DisplayCategory   = Ammo,
  Icon             = RifleAmmo223loose,
  MetalValue       = 1,
}
  }}
}}


''Box of .223 Bullets'' [[File:RifleAmmo223.png]]
''Box of .223 Bullets'' [[File:RifleAmmo223.png]]
{{Retrieved|version=41|incver=52}}
{{CodeBox
<pre>
| {{CodeSnip
item 223Box
  | lang = java
Weight = 0.3,
  | line = true
AlwaysWelcomeGift= TRUE,
  | start = 0
Type = Normal,
  | source = items.txt
DisplayName = Box of .223 Bullets,
  | retrieved = true
DisplayCategory = Ammo,
  | version = 41
Icon = RifleAmmo223,
  | incver = 52
MetalValue = 40,
  | code =
</pre>
item 223Box
{
  Weight           = 0.3,
  AlwaysWelcomeGift = TRUE,
  Type             = Normal,
  DisplayName       = Box of .223 Bullets,
  DisplayCategory   = Ammo,
  Icon             = RifleAmmo223,
  MetalValue       = 40,
}
  }}
}}


==See also==
==See also==

Revision as of 09:11, 8 January 2024

The Game WorldItemsWeaponsFirearmsAmmo.223 Round
.223 Round
.223 Round
.223 Round Box of .223 Rounds
General
Category Ammo
Weapon(s) MSR700 Rifle
Loose Ammo
Encumbrance
Heavy Load
0.02
Count 5
Box of Ammo
Encumbrance
Heavy Load
0.6
Contents 30 Rounds
Technical details
Item ID (Loose) Base.223Bullets
Item ID (Boxed) Base.223Box

A .223 round is a type of ammo for firearms.

Usage

The .223 round is chambered for the MSR700 rifle.

Crafting

40 rounds can be can be merged into a box of .223 bullets, being much lighter than individual rounds.

This ammunition can be disassembled to created gunpowder.

Product XP gained Skill(s) Recipe Ingredient 1
GunpowderJar.png
Gunpowder
0 XP none
(consumed)
RifleAmmo223loose.png
.223 Round x40
0 XP none Box of .223 Rounds
Box of .223 Rounds
(consumed)
Box of .223 Rounds
Box of .223 Rounds
0 XP none RifleAmmo223loose.png
.223 Round x40
(consumed)

Distribution

.223 rounds can be found in houses, police stations, medical centers, vehicles and even on zombies.

Trivia

  • .223 rounds seen in game are loosely based on the real life .223 Remington round. This round also served as the basis for 5.56mm NATO. While practically considered interchangeable, the .223 Remington and 5.56mm NATO were tested and certified using different analysis and sampling procedures, resulting in the NATO cartridge reporting to having a higher cartridge pressure than the .223 Remington. While .223 Remington chambered rifles are routinely fired with 5.56mm NATO ammunition, and no instance of failure, damage, or injury have ever been determined to be caused by chambering 5.56mm in a .223 rifle, it is generally considered unsafe.

Code

.223 Round RifleAmmo223loose.png

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.52
item 223Bullets
{
  Count             = 5,
  Weight            = 0.1,
  AlwaysWelcomeGift = TRUE,
  Type              = Normal,
  DisplayName       = .223 Ammo,
  DisplayCategory   = Ammo,
  Icon              = RifleAmmo223loose,
  MetalValue        = 1,
}

Box of .223 Bullets RifleAmmo223.png

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.52
item 223Box
{
  Weight            = 0.3,
  AlwaysWelcomeGift = TRUE,
  Type              = Normal,
  DisplayName       = Box of .223 Bullets,
  DisplayCategory   = Ammo,
  Icon              = RifleAmmo223,
  MetalValue        = 40,
}

See also