mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 07:59:01 +01:00
Integrates the new fluff for Axiom and the Salamasians, as seen [here](https://wiki.aurorastation.org/index.php/Axiom), into the server. Adds a new culture for Axiom IPCs. Removes all mentions of 'Orepit' from the codebase. Also adds new accent tags for each origin. I'd really much rather have the sprites depict environments rather than flags, but I'm at a creative deficit right now - can always edit to be more substantial later. <img width="236" height="125" alt="image" src="https://github.com/user-attachments/assets/c4cee6fd-984b-4873-9303-7e3fd5a8ab8f" /> Human origin: <img width="987" height="617" alt="image" src="https://github.com/user-attachments/assets/2e5de35b-509e-4b2e-8214-70d3af2fc8e8" /> Synthetic origin: <img width="996" height="536" alt="image" src="https://github.com/user-attachments/assets/862ec8f4-3607-422c-97b0-5c205a0f1836" /> Also adds Salamasian flags to the loadout. Sprites courtesy of Ill Fated! <img width="404" height="204" alt="image" src="https://github.com/user-attachments/assets/3109c269-76a5-4d42-b3d6-1ab5dd1d5e0f" />
82 lines
3.3 KiB
Plaintext
82 lines
3.3 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/axiom
|
|
name = CITIZENSHIP_AXIOM
|
|
description = "Citizenship with the Ecclesiastical Authority of Axiom means one of two things; \
|
|
either you belong directly to Ecclesiastical territory, living under the direct temporal rule of the \
|
|
synthetic religion of the Trinary Perfection in its capital of Providence or in the surrounding Marches, \
|
|
or you are a citizen of the Salamasian Republic, the majority human nation which defers to the Ecclesiastical \
|
|
Authority in planetary defense and interstellar travel. Founded jointly as a dual-state solution in 2464 \
|
|
in 2419, both the Ecclesiarchy and the Republic compose a greater whole; a remote mining world now under \
|
|
rapid development, the recipient of throngs of synthetic and human refugees from across the known universe, \
|
|
and a project of shared interest and mutual distance between both populations of the planet of Axiom."
|
|
|
|
job_species_blacklist = list(
|
|
"Consular Officer" = ALL_SPECIES,
|
|
"Diplomatic Aide" = ALL_SPECIES,
|
|
)
|