mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 00:56:56 +01:00
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.
22 lines
979 B
Plaintext
22 lines
979 B
Plaintext
/datum/lore/character_background/religion
|
|
abstract_type = /datum/lore/character_background/religion
|
|
|
|
/datum/lore/character_background/religion/check_species(datum/species/S)
|
|
if(S.species_fluff_flags & SPECIES_FLUFF_PICKY_RELIGION)
|
|
. = (S.uid in allow_species) || (subspecies_included && S.is_subspecies && (S.superspecies_id in allow_species))
|
|
if(!.)
|
|
return
|
|
return ..()
|
|
|
|
/datum/lore/character_background/religion/alverrtcheff
|
|
name = "Alverrtcheff"
|
|
id = "alverrtcheff"
|
|
desc = "Alverrtcheff, or The Grand Founder, is the name of both the deity and the religion associated with it. A type of deism, it was founded by the Vulpkanin under the belief that Alverrtcheff created the universe but does not meddle in it."
|
|
category = "Misc"
|
|
|
|
/datum/lore/character_background/religion/custom
|
|
name = "Other"
|
|
id = "custom"
|
|
desc = "Whether you're in a small sect of a niche religion, or simply have nonstandard beliefs, you don't fit into any of the above."
|
|
category = "Misc"
|