Files
Aurora.3/code/datums/outfits/ert/nt_ert.dm
Geeves c64b6f10a9 Added the IAC response team (#8052)
This PR splits the ERT file up into a bunch of files, to edit them later much easier.

1 Doctor (Lead), intended to do advanced medical stuff to heal people.
2 Paramedics, intended to bring injured to the doctor. (Can likely also do advanced medical stuff, but the doctor should be the primary one to do so)
1 Bodyguard, intended to stay with and defend in the IAC team. (Also trained in medical procedures, but not super advanced.)
2020-01-26 21:22:22 -03:00

58 lines
1.6 KiB
Plaintext

/datum/outfit/admin/ert/nanotrasen
name = "Nanotrasen ERT Responder"
uniform = /obj/item/clothing/under/ert
suit = null
suit_store = null
belt = /obj/item/storage/belt/military
shoes = /obj/item/clothing/shoes/swat
accessory = /obj/item/clothing/accessory/storage/black_vest
gloves = null
id = /obj/item/card/id/ert
back = /obj/item/rig/ert/security
l_ear = /obj/item/device/radio/headset/ert
belt_contents = list(
/obj/item/handcuffs = 2,
/obj/item/shield/riot/tact = 1,
/obj/item/ammo_magazine/a556 = 2,
/obj/item/ammo_magazine/a556/ap = 1
)
/datum/outfit/admin/ert/nanotrasen/get_id_access()
return get_all_accesses() | get_centcom_access("Emergency Response Team")
/datum/outfit/admin/ert/nanotrasen/specialist
name = "Nanotrasen ERT Engineer Specialist"
belt = /obj/item/storage/belt/utility/full
back = /obj/item/rig/ert/engineer
belt_contents = null
/datum/outfit/admin/ert/nanotrasen/specialist/medical
name = "Nanotrasen ERT Medical Specialist"
belt = /obj/item/storage/belt/medical
back = /obj/item/rig/ert/medical
r_hand = /obj/item/storage/firstaid/combat
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
)
/datum/outfit/admin/ert/nanotrasen/leader
name = "Nanotrasen ERT Leader"
back = /obj/item/rig/ert
belt_contents = list(
/obj/item/handcuffs = 1,
/obj/item/shield/riot/tact = 1,
/obj/item/ammo_magazine/a556 = 2,
/obj/item/ammo_magazine/a556/ap = 2
)