mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
## About The Pull Request Moves the deep lore proc to the parent for guns. Adds deep lore to some of the pistols. Rewrites the deep lore for the stun baton and contractor baton. Repaths the Liberator pistol to a more sensible path name. Rechambers the Regal Condor to .45, because I was today years old when I learned that the Tiger Cooperative are _[radical Christian extremists](https://github.com/tgstation/common_core/blob/cf1edb9f770e7d3c38ca894e951ab5ac50395a47/Governments%20and%20Organisations/Corporations/The%20Syndicate/The%20Syndicate.md?plain=1#L73)_. I just thought they were nutso about changelings, I didn't know they also think they're God's ubermensch. Anyway, that freak who started the cult would chamber their relic pistol in .45 and you know it. ## Why It's Good For The Game I love dumping large amounts of text into the code base that will rarely, if ever, be noticed by the player. It's also the means by which I can summon forth my good friend Hatterhat to contribute to this codebase. Like a carrot on a stick. If I post enough, one day he'll PR flashforge mines like he promised me.
49 lines
1.4 KiB
Plaintext
49 lines
1.4 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
|
|
|
|
/obj/item/ammo_casing/c45/reaper
|
|
name = ".45 reaper bullet casing"
|
|
desc = "A .45 reaper bullet casing."
|
|
projectile_type = /obj/projectile/bullet/c45/reaper
|