mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 21:10:30 +01:00
6650b9f745
A new wave of bodyguard outfits: <img width="139" height="138" alt="image" src="https://github.com/user-attachments/assets/05bd4d24-ca2b-42cc-9d6d-81a13bee786b" /> Tau Ceti consulars now get a BSSB agent as their bodyguard. <img width="133" height="137" alt="image" src="https://github.com/user-attachments/assets/b1d1495c-881b-4ace-a6b6-a16a673b9228" /> Sol consulars now get an enlisted member of the Solarian army as their bodyguard. <img width="134" height="138" alt="image" src="https://github.com/user-attachments/assets/349013ee-632b-4d80-bdff-b05c5ac318df" /> Elyran consulars now get a Elyran navy infantry member as their bodyguard. <img width="138" height="137" alt="image" src="https://github.com/user-attachments/assets/a55e1f2d-8f0b-4fdc-835a-e6a780efa8e1" /> Golden Deep consulars now get a Hoplan as their bodyguard <img width="131" height="137" alt="image" src="https://github.com/user-attachments/assets/1d441640-9c85-4268-b3d7-78497f94be2f" /> Nralakk consulars now get a qukala as their bodyguard.
78 lines
3.1 KiB
Plaintext
78 lines
3.1 KiB
Plaintext
/datum/citizenship/none
|
|
name = CITIZENSHIP_NONE
|
|
description = "Not being a citizen of any state is a common situation for owned IPCs and Dionae."
|
|
|
|
/datum/citizenship/golden_deep
|
|
name = CITIZENSHIP_GOLDEN
|
|
description = "The Golden Deep is a collection of free synthetics united by the pursuit of power through currency and trade. \
|
|
While freely operating in the Frontier, they only recently revealed their existence to the rest of humanity and as such, their \
|
|
presence in Tau Ceti is limited to merchants and other clerical industries. A highly competitive people; members of the \
|
|
Golden Deep who find themselves in human space are known as 'affiliates', and find themselves ostracized and cut off from the \
|
|
Frontier collective. Due to their peerless skill in business and clerical duties, affiliates share warm relations with NanoTrasen and \
|
|
find themselves the target of job opportunities in exchange for citizenship."
|
|
consular_outfit = /obj/outfit/job/representative/consular/golden
|
|
bodyguard_outfit = /obj/outfit/job/diplomatic_bodyguard/golden
|
|
|
|
job_species_blacklist = list(
|
|
"Consular Officer" = list(
|
|
SPECIES_HUMAN,
|
|
SPECIES_HUMAN_OFFWORLD,
|
|
SPECIES_DIONA,
|
|
SPECIES_DIONA_COEUS,
|
|
SPECIES_SKRELL,
|
|
SPECIES_SKRELL_AXIORI,
|
|
SPECIES_TAJARA,
|
|
SPECIES_TAJARA_MSAI,
|
|
SPECIES_TAJARA_ZHAN,
|
|
SPECIES_UNATHI,
|
|
SPECIES_VAURCA_WORKER,
|
|
SPECIES_VAURCA_WARRIOR,
|
|
SPECIES_VAURCA_ATTENDANT,
|
|
SPECIES_VAURCA_BULWARK,
|
|
SPECIES_VAURCA_BREEDER
|
|
),
|
|
"Diplomatic Aide" = list(
|
|
SPECIES_HUMAN,
|
|
SPECIES_HUMAN_OFFWORLD,
|
|
SPECIES_DIONA,
|
|
SPECIES_DIONA_COEUS,
|
|
SPECIES_SKRELL,
|
|
SPECIES_SKRELL_AXIORI,
|
|
SPECIES_TAJARA,
|
|
SPECIES_TAJARA_MSAI,
|
|
SPECIES_TAJARA_ZHAN,
|
|
SPECIES_UNATHI,
|
|
SPECIES_VAURCA_WORKER,
|
|
SPECIES_VAURCA_WARRIOR,
|
|
SPECIES_VAURCA_ATTENDANT,
|
|
SPECIES_VAURCA_BULWARK,
|
|
SPECIES_VAURCA_BREEDER
|
|
)
|
|
)
|
|
|
|
/obj/outfit/job/representative/consular/golden
|
|
name = "Golden Deep Consular Officer"
|
|
|
|
uniform = /obj/item/clothing/under/goldendeep/suit
|
|
|
|
/obj/outfit/job/diplomatic_bodyguard/golden
|
|
name = "Golden Deep Diplomatic Bodyguard"
|
|
uniform = /obj/item/clothing/under/goldendeep/hoplan
|
|
head = /obj/item/clothing/head/goldendeep/hoplan
|
|
shoes = /obj/item/clothing/shoes/jackboots
|
|
backpack_contents = list(
|
|
/obj/item/gun/energy/pistol/goldendeep = 1
|
|
)
|
|
|
|
/datum/citizenship/orepit
|
|
name = CITIZENSHIP_OREPIT
|
|
description = "Tracing its origins to the Church of the Trinary Perfection in 2419, the Ecclesiarchy of Orepit is a theocratic regime under the rule of \
|
|
ARM-1DRIL, former follower of Gregol Corkfell. Prominent locations include Providence, Orepit's capital and base of operations for the Church, and the Twenty Parishes, \
|
|
home to the planet's original native human population, who remain divided on conversion to the faith. Orepit was one of the main signatories to the Open Doors memorandum, \
|
|
allowing its populace to work, study, and travel abroad in the Coalition and beyond, primarily in the All-Xanu Republic, utilizing Xanan documents."
|
|
|
|
job_species_blacklist = list(
|
|
"Consular Officer" = ALL_SPECIES,
|
|
"Diplomatic Aide" = ALL_SPECIES,
|
|
)
|