mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 16:41:48 +00:00
* Cleans up bullets to use subtypes for ammo variations * Update pistol.dm Co-authored-by: KathrinBailey <53862927+KathrinBailey@users.noreply.github.com> Co-authored-by: Gandalf <jzo123@hotmail.com>
36 lines
1.0 KiB
Plaintext
36 lines
1.0 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/ap
|
|
name = ".45 armor-piercing bullet casing"
|
|
desc = "A .45 bullet casing."
|
|
projectile_type = /obj/projectile/bullet/c45/ap
|
|
|
|
/obj/item/ammo_casing/c45/inc
|
|
name = ".45 incendiary bullet casing"
|
|
desc = "A .45 bullet casing."
|
|
projectile_type = /obj/projectile/bullet/incendiary/c45
|