mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-18 06:26:52 +01:00
Co-authored-by: VM_USER <VM_USER> Co-authored-by: silicons <no@you.cat> Co-authored-by: Felix <58342752+TheLordME@users.noreply.github.com>
21 lines
969 B
Plaintext
21 lines
969 B
Plaintext
/datum/lore/character_background/origin
|
|
abstract_type = /datum/lore/character_background/origin
|
|
|
|
/datum/lore/character_background/origin/check_character_species(datum/character_species/S)
|
|
if(S.species_fluff_flags & SPECIES_FLUFF_PICKY_ORIGIN)
|
|
. = (S.uid in allow_species) || (subspecies_included && S.is_subspecies && (S.superspecies_id in allow_species))
|
|
if(!.)
|
|
return
|
|
return ..()
|
|
|
|
/datum/lore/character_background/origin/qerrbalak
|
|
name = "Qerr'Balak"
|
|
id = "qerrbalak"
|
|
desc = "Be it from the jungle-wrapped kingdoms of the skrellian continents, the cold teshari territories of the polar tundras, or somewhere in-between, you hail from the Vikara Combine's capital planet of Qerr'Balak."
|
|
|
|
/datum/lore/character_background/origin/custom
|
|
name = "Other"
|
|
id = "custom"
|
|
desc = "Whether it may be a frontier planet, some backwater asteroid mining colony, or simply somewhere not mentioned otherwise, you didn't come from any of the above."
|
|
category = "Misc"
|