From 26ca935c3ae61632fedb93940f59540bceb60c5b Mon Sep 17 00:00:00 2001 From: Shadow Date: Fri, 12 Apr 2024 22:35:12 -0500 Subject: [PATCH] Add vulpkanin background info (#6378) ## 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 :cl: add: Added new background options for the Vulpkanin. /:cl: --- code/modules/lore_hardcoded/citizenship.dm | 7 +++++++ code/modules/lore_hardcoded/origin.dm | 6 ++++++ code/modules/lore_hardcoded/religion.dm | 6 ++++++ 3 files changed, 19 insertions(+) diff --git a/code/modules/lore_hardcoded/citizenship.dm b/code/modules/lore_hardcoded/citizenship.dm index 02204660bcd..73c0d8bb856 100644 --- a/code/modules/lore_hardcoded/citizenship.dm +++ b/code/modules/lore_hardcoded/citizenship.dm @@ -69,6 +69,13 @@ desc = "Exiles from Unathi Clans. They are unwelcome in Unathi society by and large, and often resort to crime. Those who are not killed \ often flee to the Frontier, where they may find opportunities for a new life." +/datum/lore/character_background/citizenship/vulpunitedstar + name = "Vulpkanin United Star" + id = "vulpunitedstar" + desc = "The Vulpkanin United Star is the galactic voice of all Vulpkanin from the Vazzend and other claimed systems. It is a relative newcomer \ + on the galactic stage, having been conceived only a couple of centuries ago. Though it doesn't enjoy as much power or influence as the neighboring \ + Vikara Combine, the VUS advocates for peace and open borders with most other galactic nations, and invests plenty of resources into the sciences." + /datum/lore/character_background/citizenship/custom name = "Other" id = "custom" diff --git a/code/modules/lore_hardcoded/origin.dm b/code/modules/lore_hardcoded/origin.dm index 7840da9eb12..32a54e73919 100644 --- a/code/modules/lore_hardcoded/origin.dm +++ b/code/modules/lore_hardcoded/origin.dm @@ -8,6 +8,12 @@ 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" diff --git a/code/modules/lore_hardcoded/religion.dm b/code/modules/lore_hardcoded/religion.dm index 74c8186fd6e..a4d1b1570e0 100644 --- a/code/modules/lore_hardcoded/religion.dm +++ b/code/modules/lore_hardcoded/religion.dm @@ -8,6 +8,12 @@ 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"