mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 04:51:32 +01:00
Shuttle update: Part Two: The Legion Protects (#7457)
This commit is contained in:
@@ -59,37 +59,78 @@
|
||||
|
||||
//TCFL
|
||||
/datum/outfit/admin/ert/legion
|
||||
name = "TCFL Responder"
|
||||
name = "TCFL Volunteer"
|
||||
|
||||
head = /obj/item/clothing/head/legion
|
||||
uniform = /obj/item/clothing/under/legion
|
||||
l_ear = /obj/item/device/radio/headset/legion
|
||||
shoes = /obj/item/clothing/shoes/swat
|
||||
gloves = /obj/item/clothing/gloves/swat
|
||||
glasses = /obj/item/clothing/glasses/sunglasses
|
||||
shoes = /obj/item/clothing/shoes/swat/ert
|
||||
gloves = /obj/item/clothing/gloves/swat/ert
|
||||
glasses = /obj/item/clothing/glasses/sunglasses/aviator
|
||||
back = /obj/item/storage/backpack/legion
|
||||
id = /obj/item/card/id/distress/legion
|
||||
|
||||
backpack_contents = list(
|
||||
/obj/item/storage/belt/utility/full = 1
|
||||
)
|
||||
backpack_contents = null
|
||||
|
||||
/datum/outfit/admin/ert/legion/get_id_access()
|
||||
return get_distress_access()
|
||||
|
||||
/datum/outfit/admin/ert/legion/specialist
|
||||
name = "TCFL Medic"
|
||||
name = "TCFL Legionnaire"
|
||||
accessory = /obj/item/clothing/accessory/legion/specialist
|
||||
|
||||
l_hand = /obj/item/storage/firstaid/adv
|
||||
r_hand = /obj/item/storage/firstaid/combat
|
||||
belt = /obj/item/storage/belt/medical
|
||||
/datum/outfit/admin/ert/legion/leader
|
||||
name = "TCFL Prefect"
|
||||
accessory = /obj/item/clothing/accessory/legion
|
||||
|
||||
/datum/outfit/admin/ert/legion/leader/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
||||
.=..()
|
||||
var/obj/item/card/id/distress/legion/I = H.wear_id
|
||||
I.access += (access_cent_specops)
|
||||
|
||||
/datum/outfit/admin/ert/legion/pilot
|
||||
name = "TCFL Dropship Pilot"
|
||||
uniform = /obj/item/clothing/under/legion/pilot
|
||||
head = /obj/item/clothing/head/helmet/legion_pilot
|
||||
suit = /obj/item/clothing/suit/storage/toggle/leather_jacket/flight/legion
|
||||
gloves = null
|
||||
back = null
|
||||
belt = /obj/item/storage/belt/security/tactical
|
||||
accessory = /obj/item/clothing/accessory/holster/hip
|
||||
accessory_contents = list(/obj/item/gun/energy/blaster/revolver/pilot = 1)
|
||||
|
||||
/datum/outfit/admin/ert/legion/sentinel
|
||||
name = "TCFL Sentinel"
|
||||
head = /obj/item/clothing/head/legion/sentinel
|
||||
uniform = /obj/item/clothing/under/legion/sentinel
|
||||
suit = /obj/item/clothing/suit/storage/vest/legion
|
||||
gloves = null
|
||||
belt = /obj/item/storage/belt/security/tactical
|
||||
suit_store = /obj/item/gun/energy/blaster/rifle
|
||||
accessory = /obj/item/clothing/accessory/holster/hip
|
||||
accessory_contents = list(/obj/item/gun/energy/blaster/revolver = 1)
|
||||
|
||||
backpack_contents = list(
|
||||
/obj/item/gun/energy/blaster/carbine = 1,
|
||||
/obj/item/handcuffs/ziptie = 3,
|
||||
/obj/item/clothing/mask/gas/tactical = 1,
|
||||
/obj/item/storage/firstaid/regular = 1,
|
||||
/obj/item/clothing/gloves/swat/ert = 1
|
||||
)
|
||||
|
||||
belt_contents = list(
|
||||
/obj/item/reagent_containers/hypospray = 1,
|
||||
/obj/item/stack/medical/advanced/bruise_pack = 1,
|
||||
/obj/item/stack/medical/advanced/ointment = 1,
|
||||
/obj/item/reagent_containers/glass/bottle/thetamycin = 1
|
||||
/obj/item/melee/energy/sword/knife = 1,
|
||||
/obj/item/shield/energy/legion = 1,
|
||||
/obj/item/reagent_containers/spray/pepper = 1,
|
||||
/obj/item/grenade/flashbang = 2,
|
||||
/obj/item/melee/telebaton = 1
|
||||
)
|
||||
|
||||
/datum/outfit/admin/ert/legion/sentinel/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
||||
.=..()
|
||||
var/obj/item/card/id/distress/legion/I = H.wear_id
|
||||
I.access += (access_cent_specops)
|
||||
|
||||
//Mercenary
|
||||
/datum/outfit/admin/ert/mercenary
|
||||
name = "Mercenary Freelancer"
|
||||
|
||||
@@ -231,27 +231,30 @@
|
||||
/obj/item/implant/loyalty
|
||||
)
|
||||
|
||||
/datum/outfit/admin/nt/tcfl_commander
|
||||
name = "TCFL Commander"
|
||||
/datum/outfit/admin/nt/tcfl_legate
|
||||
name = "TCFL Legate"
|
||||
|
||||
uniform = /obj/item/clothing/under/legion
|
||||
shoes = /obj/item/clothing/shoes/jackboots
|
||||
uniform = /obj/item/clothing/under/legion/legate
|
||||
suit = /obj/item/clothing/suit/storage/vest/legion/legate
|
||||
gloves = /obj/item/clothing/gloves/swat/tactical
|
||||
shoes = /obj/item/clothing/shoes/swat/ert
|
||||
l_ear = /obj/item/device/radio/headset/legion
|
||||
head = /obj/item/clothing/head/legion_beret
|
||||
head = /obj/item/clothing/head/legion/legate
|
||||
glasses = /obj/item/clothing/glasses/sunglasses/aviator
|
||||
id = /obj/item/card/id/distress/legion
|
||||
belt = /obj/item/storage/belt/security/tactical
|
||||
r_pocket = /obj/item/clothing/mask/gas/tactical
|
||||
accessory = /obj/item/clothing/accessory/holster/hip
|
||||
accessory_contents = list(/obj/item/gun/projectile/revolver/mateba = 1)
|
||||
back = null
|
||||
|
||||
backpack_contents = list(
|
||||
/obj/item/gun/projectile/revolver = 1,
|
||||
/obj/item/clothing/accessory/holster/hip = 1,
|
||||
/obj/item/clothing/accessory/legion = 1,
|
||||
/obj/item/storage/box/flashbangs = 1
|
||||
)
|
||||
backpack_contents = null
|
||||
|
||||
belt_contents = list(
|
||||
/obj/item/melee/baton/loaded = 1,
|
||||
/obj/item/handcuffs = 2,
|
||||
/obj/item/ammo_magazine/a357 = 2,
|
||||
/obj/item/device/flash = 1
|
||||
/obj/item/melee/energy/sword/knife = 1,
|
||||
/obj/item/handcuffs/ziptie = 2,
|
||||
/obj/item/ammo_magazine/a454 = 2,
|
||||
/obj/item/shield/energy/legion = 1
|
||||
)
|
||||
|
||||
/datum/outfit/admin/nt/cciaa
|
||||
|
||||
Reference in New Issue
Block a user