Adds back purchasing the Autorifle and ammo through emagging the cargo supply console (#70518)

Co-authored-by: Sealed101 <75863639+Sealed101@users.noreply.github.com>
Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com>
Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com>
This commit is contained in:
CCC23
2022-10-18 23:10:19 -05:00
committed by GitHub
parent f82ffd493c
commit e2b8d9e2e1
2 changed files with 29 additions and 0 deletions
+6
View File
@@ -74,3 +74,9 @@
unit_name = "pair"
message = "of handcuffs"
export_types = list(/obj/item/restraints/handcuffs)
/datum/export/weapon/wt550
cost = CARGO_CRATE_VALUE * 1.5
unit_name = "WT-550 automatic rifle"
export_types = list(/obj/item/gun/ballistic/automatic/wt550)
+23
View File
@@ -357,3 +357,26 @@
cost = CARGO_CRATE_VALUE * 7
contains = list(/obj/item/storage/belt/holster/thermal = 2)
crate_name = "thermal pistol crate"
/datum/supply_pack/security/armory/wt550
name = "Recalled Weapon Pack"
desc = "Contains a set of old Nanotrasen brand autorifles recalled due to choking hazard."
cost = CARGO_CRATE_VALUE * 7
hidden = TRUE
contains = list(
/obj/item/gun/ballistic/automatic/wt550 = 2,
/obj/item/ammo_box/magazine/wt550m9 = 2,
)
crate_name = "Recalled rifle crate"
/datum/supply_pack/security/armory/wt550ammo
name = "Recalled Ammo Pack"
desc = "Contains four 20-round magazine for the Recalled WT-550 Auto Rifle. \
Each magazine is designed to facilitate rapid tactical reloads. Recalled due to Security demands."
cost = CARGO_CRATE_VALUE * 4
hidden = TRUE
contains = list(
/obj/item/ammo_box/magazine/wt550m9 = 4,
)
crate_name = "Ammo box"