mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 19:46:41 +01:00
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> ## About The Pull Request Adds Altam (the homeworld of the vulpkanin) as an origin under the misc tab, the Vulpkanin United Star as a citizenship option, and Alverrtcheff as a religion option under the misc tab. Currently this is not species-locked and anyone can pick it. ## Why It's Good For The Game Races having their lore represented in-game is a good thing ## Changelog <!-- If your PR modifies aspects of the game that can be concretely observed by players or admins you should add a changelog. If your change does NOT meet this description, remove this section. Be sure to properly mark your PRs to prevent unnecessary GBP loss. You can read up on GBP and it's effects on PRs in the tgstation guides for contributors. Please note that maintainers freely reserve the right to remove and add tags should they deem it appropriate. You can attempt to finagle the system all you want, but it's best to shoot for clear communication right off the bat. --> 🆑 add: Added new background options for the Vulpkanin. /🆑 <!-- Both 🆑's are required for the changelog to work! You can put your name to the right of the first 🆑 if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. -->
22 lines
999 B
Plaintext
22 lines
999 B
Plaintext
/datum/lore/character_background/religion
|
|
abstract_type = /datum/lore/character_background/religion
|
|
|
|
/datum/lore/character_background/religion/check_character_species(datum/character_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"
|