diff --git a/code/modules/cargo/goodies.dm b/code/modules/cargo/goodies.dm index b209b5e239d..a19a544e22d 100644 --- a/code/modules/cargo/goodies.dm +++ b/code/modules/cargo/goodies.dm @@ -105,6 +105,20 @@ access_view = ACCESS_WEAPONS contains = list(/obj/item/gun/energy/laser) +/datum/supply_pack/goody/carbine_single + name = "Laser Carbine Single_Pack" + desc = "Contains one laser carbines, capable of rapidly firing weak lasers." + cost = PAYCHECK_COMMAND * 8 + access_view = ACCESS_WEAPONS + contains = list(/obj/item/gun/energy/laser/carbine) + +/datum/supply_pack/goody/smg_single + name = "Disabler SMG Single_Pack" + desc = "Contains one disabler SMGs, capable of rapidly firing weak disabler beams." + cost = PAYCHECK_COMMAND * 6 + access_view = ACCESS_WEAPONS + contains = list(/obj/item/gun/energy/disabler/smg) + /datum/supply_pack/goody/hell_single name = "Hellgun Kit Single-Pack" desc = "Contains one hellgun degradation kit, an old pattern of laser gun infamous for its ability to horribly disfigure targets with burns. Technically violates the Space Geneva Convention when used on humanoids." diff --git a/code/modules/cargo/packs/security.dm b/code/modules/cargo/packs/security.dm index b97c7cd68bf..409c746aad5 100644 --- a/code/modules/cargo/packs/security.dm +++ b/code/modules/cargo/packs/security.dm @@ -65,14 +65,6 @@ contains = list(/obj/item/clothing/head/helmet/sec = 3) crate_name = "helmet crate" -/datum/supply_pack/security/laser - name = "Lasers Crate" - desc = "Contains three lethal, high-energy laser guns." - cost = CARGO_CRATE_VALUE * 4 - access_view = ACCESS_ARMORY - contains = list(/obj/item/gun/energy/laser = 3) - crate_name = "laser crate" - /datum/supply_pack/security/securitybarriers name = "Security Barrier Grenades" desc = "Stem the tide with four Security Barrier grenades." @@ -241,13 +233,21 @@ /datum/supply_pack/security/armory/energy name = "Energy Guns Crate" - desc = "Contains two Energy Guns, capable of firing both nonlethal and lethal \ + desc = "Contains three Energy Guns, capable of firing both nonlethal and lethal \ blasts of light." cost = CARGO_CRATE_VALUE * 18 - contains = list(/obj/item/gun/energy/e_gun = 2) + contains = list(/obj/item/gun/energy/e_gun = 3) crate_name = "energy gun crate" crate_type = /obj/structure/closet/crate/secure/plasma +/datum/supply_pack/security/armory/laser + name = "Lasers Crate" + desc = "Contains three lethal, high-energy laser guns." + cost = CARGO_CRATE_VALUE * 4 + contains = list(/obj/item/gun/energy/laser = 3) + crate_name = "laser crate" + crate_type = /obj/structure/closet/crate/secure/plasma + /datum/supply_pack/security/armory/laser_carbine name = "Laser Carbine Crate" desc = "Contains three laser carbines, capable of rapidly firing weak lasers." @@ -268,11 +268,11 @@ name = "NT BR-38 Crate" desc = "An experimental energy-based ballistic battle rifle. Only available to \ Nanotrasen stations for security purposes. DO NOT RESELL TO OUTSIDE COMPANIES. \ - Contains three NT BR-38 rifles and three magazines containing .38 Standard." + Contains three NT BR-38 rifles and 6 magazines containing .38 Standard." cost = CARGO_CRATE_VALUE * 100 contains = list( - /obj/item/gun/ballistic/automatic/battle_rifle = 2, - /obj/item/ammo_box/magazine/m38 = 4, + /obj/item/gun/ballistic/automatic/battle_rifle = 3, + /obj/item/ammo_box/magazine/m38 = 6, ) crate_name = "battle rifle crate"