diff --git a/code/modules/cargo/packs/ammo.dm b/code/modules/cargo/packs/ammo.dm index 6da9cd787e51..79b3bb780f25 100644 --- a/code/modules/cargo/packs/ammo.dm +++ b/code/modules/cargo/packs/ammo.dm @@ -132,6 +132,13 @@ contains = list(/obj/item/ammo_box/magazine/wt550m9/ap, /obj/item/ammo_box/magazine/wt550m9/inc) +/datum/supply_pack/ammo/smgm45ammo + name = ".45 Cobra Ammo Crate" + desc = "Contains two .45 magazines for the Cobra-20, each containing 24 rounds." + cost = 1500 + contains = list(/obj/item/ammo_box/magazine/smgm45, + /obj/item/ammo_box/magazine/smgm45) + /* Rifle ammo */ diff --git a/code/modules/cargo/packs/gun.dm b/code/modules/cargo/packs/gun.dm index 8cb9bad2e80e..f5c617c971cb 100644 --- a/code/modules/cargo/packs/gun.dm +++ b/code/modules/cargo/packs/gun.dm @@ -26,7 +26,7 @@ /datum/supply_pack/gun/makarovs name = "Stechkin pistol crate" - desc = "Contains two concealable stechkin pistols, produced by the Gorlex Marauders and chambered in 10mm." + desc = "Contains two concealable stechkin pistols, produced by Scarborough Arms and chambered in 10mm." cost = 2000 contains = list(/obj/item/gun/ballistic/automatic/pistol, /obj/item/gun/ballistic/automatic/pistol) @@ -115,6 +115,14 @@ /obj/item/gun/ballistic/shotgun/flamingarrow) crate_name = "rifle crate" +/datum/supply_pack/gun/cobra20 + name = "Cobra-20 SMG Crate" + desc = "Contains two .45 submachine guns, manufactured by Scaraborough Arms and chambered in .45" + cost = 3000 + contains = list(/obj/item/gun/ballistic/automatic/smg/c20r/cobra, + /obj/item/gun/ballistic/automatic/smg/c20r/cobra) + crate_name = "SMG crate" + /datum/supply_pack/gun/illestren name = "Illestren Rifle Crate" desc = "Contains three expertly made bolt action rifles intended for hunting wildlife. Chambered in 8x50mmR rounds."