mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 13:30:42 +01:00
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
59 lines
1.7 KiB
Plaintext
59 lines
1.7 KiB
Plaintext
/obj/outfit/admin/scc
|
|
name = "SCC Agent"
|
|
|
|
uniform = /obj/item/clothing/under/rank/scc
|
|
back = /obj/item/storage/backpack/satchel/leather
|
|
shoes = /obj/item/clothing/shoes/laceup
|
|
l_ear = /obj/item/radio/headset/ert/ccia
|
|
glasses = /obj/item/clothing/glasses/sunglasses
|
|
wrist = /obj/item/modular_computer/handheld/wristbound/preset/advanced/command
|
|
|
|
l_pocket = /obj/item/reagent_containers/spray/pepper
|
|
r_pocket = /obj/item/taperecorder/cciaa
|
|
|
|
id = /obj/item/card/id
|
|
|
|
backpack_contents = list(
|
|
/obj/item/storage/box/survival/engineer = 1
|
|
)
|
|
|
|
id_icon = "centcom"
|
|
var/id_access = "SCC Agent"
|
|
|
|
/obj/outfit/admin/scc/get_id_access()
|
|
return get_all_station_access() | get_centcom_access(id_access)
|
|
|
|
/obj/outfit/admin/scc/executive
|
|
name = "SCC Executive"
|
|
|
|
uniform = /obj/item/clothing/under/rank/scc/executive
|
|
|
|
id_access = "SCC Executive"
|
|
|
|
/obj/outfit/admin/scc/bodyguard
|
|
name = "SCC Bodyguard"
|
|
|
|
head = /obj/item/clothing/head/helmet/merc/scc
|
|
uniform = /obj/item/clothing/under/tactical
|
|
suit = /obj/item/clothing/suit/armor/carrier/heavy/scc
|
|
l_ear = /obj/item/radio/headset/ert/ccia/alt
|
|
shoes = /obj/item/clothing/shoes/jackboots
|
|
wrist = /obj/item/modular_computer/handheld/wristbound/preset/advanced/security
|
|
|
|
l_pocket = /obj/item/shield/energy
|
|
r_pocket = /obj/item/radio
|
|
|
|
accessory = /obj/item/clothing/accessory/holster/armpit
|
|
accessory_contents = list(/obj/item/gun/energy/repeater)
|
|
|
|
backpack_contents = list(
|
|
/obj/item/storage/box/survival/engineer = 1,
|
|
/obj/item/reagent_containers/spray/pepper = 1,
|
|
/obj/item/melee/baton/loaded = 1,
|
|
/obj/item/grenade/chem_grenade/gas = 1,
|
|
/obj/item/flash = 1,
|
|
/obj/item/handcuffs/ziptie = 2
|
|
)
|
|
|
|
id_access = "SCC Bodyguard"
|