mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-14 01:59:49 +01:00
1b85a518ab
i don't know why we keep doing crap like this "oh, but it's unfair to have x" "oh, but it's unrealistic to have x" "oh, but we might upset people if we do x" and then we end up massively overcomplicating the code by literal thousands of lines of maintenance because no one wants to make up their mind out with the old, in with the new, there will be no more shitcode for the sake of appeasement. **Yes, this is a shadekin buff. That's temporary until powers are converted to abilities.** I'm tired of nerfing crap by copypaste, 120 points of healing isn't enough to justify 120 additional lines of code.
27 lines
1.3 KiB
Plaintext
27 lines
1.3 KiB
Plaintext
/datum/lore/character_background/origin
|
|
abstract_type = /datum/lore/character_background/origin
|
|
|
|
/datum/lore/character_background/origin/check_species(datum/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/altam
|
|
name = "Altam"
|
|
id = "altam"
|
|
desc = "Altam, located within the Vazzend system, is a somewhat-chilly planet and the seat of the Vulpkanin United Star. Its population is predominantly Vulpkanin, though migrant races are welcome in most areas, from the chilling polar tundras to the temperate equatorial forests."
|
|
innate_languages = list(LANGUAGE_ID_VULPKANIN)
|
|
|
|
/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"
|