Files
a24345a43b Scenario - Environmental Testing Facility (#19611)
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."



![image](https://github.com/user-attachments/assets/fc2c0316-e95b-49f8-ac8b-55d03ef47b18)

![image](https://github.com/user-attachments/assets/36a680e8-47bf-4a12-b0a4-7c83cad9e74e)

![image](https://github.com/user-attachments/assets/fca04220-5457-4fa0-9045-cbf9f3f7e013)

![image](https://github.com/user-attachments/assets/6c0c4af2-ae63-4824-bcbe-59519156d288)

![image](https://github.com/user-attachments/assets/a5022487-b2db-4b37-ad16-a9e287ea1695)

![image](https://github.com/user-attachments/assets/96eee079-5aa4-4606-8c7e-ca8f5c3444d4)

---------

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>
2025-03-25 20:40:32 +00:00

53 lines
2.0 KiB
Plaintext

// ------------------- base/parent type
ABSTRACT_TYPE(/singleton/role)
/// The role's name.
var/name = "Generic Goon"
/// The role's description. It should contain the information on what it's supposed to do.
var/desc = "Your job is to be a generic goon in this scenario. Nothing special."
/// The /obj/outfit this role equips you with.
var/outfit = /obj/outfit/admin/generic
// ------------------- generic subtypes
/singleton/role/generic_crew
name = "Generic Worker"
desc = "You are some basic crew or worker. You have just some clothes, a jacket, and a bag."
outfit = /obj/outfit/admin/generic
/singleton/role/generic_engineer
name = "Generic Engineer"
desc = "You are some engineer. You have engineer tools, perhaps a hardhat, or a reflective hazard vest."
outfit = /obj/outfit/admin/generic/engineer
/singleton/role/generic_research
name = "Generic Researcher"
desc = "You are some researcher. You have a labcoat, perhaps safety goggles."
outfit = /obj/outfit/admin/generic/science
/singleton/role/generic_medical
name = "Generic Medical Practitioner"
desc = "You are some medical practicioner, a physician, or paramedic. You have a first aid kit, and a full medical belt."
outfit = /obj/outfit/admin/generic/medical
/singleton/role/generic_security
name = "Generic Security Guard"
desc = "You are some security guard or officer. You have a full security belt, and perhaps a plate carrier."
outfit = /obj/outfit/admin/generic/security
/singleton/role/generic_miner
name = "Generic Miner"
desc = "You are some miner. You have mining tools, a KA, and a lantern."
outfit = /obj/outfit/admin/generic/mining
/singleton/role/generic_business
name = "Generic Businessperson"
desc = "You are some businessperson, dressed in a nice suit, with a wallet full of cash."
outfit = /obj/outfit/admin/generic/business
/singleton/role/generic_mercenary
name = "Generic Mercenary"
desc = "You are some mercenary, dressed all tacticool, with a plate carrier and helmet, 9mm pistol with a few mags, and zipties."
outfit = /obj/outfit/admin/generic/mercenary