mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-20 06:32:56 +00:00
* Nukies Update 7: Hats (Also massive uplink standardization, weapon kits and ammo changes) * Update nukeops.dm * Update clownops.dm * Modular fixes --------- Co-authored-by: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
// 4.6x30mm (Autorifles)
|
|
|
|
/obj/item/ammo_casing/c46x30mm
|
|
name = "4.6x30mm bullet casing"
|
|
desc = "A 4.6x30mm bullet casing."
|
|
caliber = CALIBER_46X30MM
|
|
projectile_type = /obj/projectile/bullet/c46x30mm
|
|
|
|
/obj/item/ammo_casing/c46x30mm/ap
|
|
name = "4.6x30mm armor-piercing bullet casing"
|
|
desc = "A 4.6x30mm armor-piercing bullet casing."
|
|
projectile_type = /obj/projectile/bullet/c46x30mm/ap
|
|
|
|
/obj/item/ammo_casing/c46x30mm/inc
|
|
name = "4.6x30mm incendiary bullet casing"
|
|
desc = "A 4.6x30mm incendiary bullet casing."
|
|
projectile_type = /obj/projectile/bullet/incendiary/c46x30mm
|
|
|
|
// .45 (M1911 + C20r)
|
|
|
|
/obj/item/ammo_casing/c45
|
|
name = ".45 bullet casing"
|
|
desc = "A .45 bullet casing."
|
|
caliber = CALIBER_45
|
|
projectile_type = /obj/projectile/bullet/c45
|
|
|
|
/obj/item/ammo_casing/c45/spent
|
|
projectile_type = null
|
|
|
|
/obj/item/ammo_casing/c45/ap
|
|
name = ".45 armor-piercing bullet casing"
|
|
desc = "A .45 bullet casing."
|
|
projectile_type = /obj/projectile/bullet/c45/ap
|
|
|
|
/obj/item/ammo_casing/c45/hp
|
|
name = ".45 hollow point bullet casing"
|
|
desc = "A .45 bullet casing."
|
|
projectile_type = /obj/projectile/bullet/c45/hp
|
|
|
|
/obj/item/ammo_casing/c45/inc
|
|
name = ".45 incendiary bullet casing"
|
|
desc = "A .45 bullet casing."
|
|
projectile_type = /obj/projectile/bullet/incendiary/c45
|