mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 20:11:04 +01:00
a24345a43b
changes: - rscadd: "Adds Environmental Testing Facility odyssey scenario. Big map." - rscadd: "Removes green tint from the minimap program/reader." - rscadd: "Adds/reorganizes some generic outfits." - rscadd: "Adds some generic odyssey actor roles." - rscadd: "Adds actor accesses system to odyssey scenarios, and a self-service access terminal." - rscadd: "Adds some warnings to odyssey actor teleporter, in case ID access or headset are missing." - rscadd: "Adds some more random spawners." - rscadd: "Adds better sprites door helpers." - rscadd: "Adds access door helper." - rscadd: "Adds info box to odyssey actor panel about roles."       --------- Signed-off-by: DreamySkrell <107256943+DreamySkrell@users.noreply.github.com> Co-authored-by: DreamySkrell <> Co-authored-by: AuroraBuildBot <action@github.com> Co-authored-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com>
53 lines
1.7 KiB
Plaintext
53 lines
1.7 KiB
Plaintext
|
|
/obj/outfit/admin/generic/security
|
|
name = "Generic Outfit"
|
|
|
|
uniform = list(
|
|
/obj/item/clothing/under/color/black,
|
|
/obj/item/clothing/under/color/brown,
|
|
/obj/item/clothing/under/color/blue,
|
|
/obj/item/clothing/under/color/red,
|
|
/obj/item/clothing/under/color/green,
|
|
)
|
|
suit = list(
|
|
/obj/item/clothing/suit/storage/toggle/leather_jacket,
|
|
/obj/item/clothing/suit/storage/toggle/leather_jacket/flight,
|
|
/obj/item/clothing/suit/storage/toggle/highvis,
|
|
/obj/item/clothing/suit/armor/carrier/generic,
|
|
/obj/item/clothing/suit/armor/carrier/generic,
|
|
)
|
|
belt = list(
|
|
/obj/item/storage/belt/security/full,
|
|
/obj/item/storage/belt/security/full/alt,
|
|
/obj/item/storage/belt/security/full/disruptor,
|
|
/obj/item/storage/belt/security/full/pistol45,
|
|
)
|
|
glasses = list(
|
|
/obj/item/clothing/glasses/sunglasses,
|
|
/obj/item/clothing/glasses/sunglasses/aviator,
|
|
/obj/item/clothing/glasses/sunglasses/big,
|
|
/obj/item/clothing/glasses/sunglasses/visor,
|
|
)
|
|
gloves = list(
|
|
/obj/item/clothing/gloves/brown,
|
|
/obj/item/clothing/gloves/black_leather,
|
|
/obj/item/clothing/gloves/fingerless,
|
|
)
|
|
shoes = list(
|
|
/obj/item/clothing/shoes/jackboots,
|
|
/obj/item/clothing/shoes/workboots,
|
|
/obj/item/clothing/shoes/workboots/dark,
|
|
)
|
|
backpack_contents = list(
|
|
/obj/item/storage/box/survival = 1,
|
|
)
|
|
species_shoes = list(
|
|
SPECIES_UNATHI = /obj/item/clothing/shoes/jackboots/toeless,
|
|
SPECIES_TAJARA = /obj/item/clothing/shoes/jackboots/toeless,
|
|
SPECIES_TAJARA_MSAI = /obj/item/clothing/shoes/jackboots/toeless,
|
|
SPECIES_TAJARA_ZHAN = /obj/item/clothing/shoes/jackboots/toeless,
|
|
SPECIES_VAURCA_WORKER = /obj/item/clothing/shoes/jackboots/toeless,
|
|
SPECIES_VAURCA_WARRIOR = /obj/item/clothing/shoes/vaurca,
|
|
SPECIES_VAURCA_ATTENDANT = /obj/item/clothing/shoes/vaurca
|
|
)
|