From e6f2f3c8e0b95fce31435fbcef17549361259537 Mon Sep 17 00:00:00 2001 From: Matt Atlas Date: Thu, 12 May 2022 19:45:52 +0200 Subject: [PATCH] Adds some missing human origins. (#13903) --- .../origins/origins/human/coalition.dm | 18 +++++++- html/changelogs/mattatlas-humanorigins.yml | 41 +++++++++++++++++++ 2 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/mattatlas-humanorigins.yml diff --git a/code/modules/background/origins/origins/human/coalition.dm b/code/modules/background/origins/origins/human/coalition.dm index 0ce236b0c38..48ce26fd768 100644 --- a/code/modules/background/origins/origins/human/coalition.dm +++ b/code/modules/background/origins/origins/human/coalition.dm @@ -1,4 +1,5 @@ #define RELIGIONS_COALITION list(RELIGION_NONE, RELIGION_CHRISTIANITY, RELIGION_ISLAM, RELIGION_BUDDHISM, RELIGION_SHINTO, RELIGION_HINDU, RELIGION_TAOISM, RELIGION_JUDAISM, RELIGION_OTHER, RELIGION_TRINARY) +#define RELIGIONS_COALITION_ALL list(RELIGION_NONE, RELIGION_CHRISTIANITY, RELIGION_ISLAM, RELIGION_BUDDHISM, RELIGION_SHINTO, RELIGION_HINDU, RELIGION_TAOISM, RELIGION_JUDAISM, RELIGION_OTHER, RELIGION_TRINARY, RELIGION_SCARAB, RELIGION_MOROZ) #define CITIZENSHIPS_COALITION list(CITIZENSHIP_COALITION, CITIZENSHIP_BIESEL) /decl/origin_item/culture/coalition @@ -10,8 +11,10 @@ /decl/origin_item/origin/vysoka, /decl/origin_item/origin/coalition_offworlder, /decl/origin_item/origin/gadpathur, + /decl/origin_item/origin/gadpathur_exile, /decl/origin_item/origin/assunzione, - /decl/origin_item/origin/non_coalition_frontier + /decl/origin_item/origin/non_coalition_frontier, + /decl/origin_item/origin/other_coalition ) /decl/origin_item/origin/xanu_free_league @@ -51,6 +54,13 @@ possible_citizenships = list(CITIZENSHIP_COALITION) possible_religions = list(RELIGION_NONE, RELIGION_CHRISTIANITY, RELIGION_ISLAM, RELIGION_BUDDHISM, RELIGION_HINDU, RELIGION_TAOISM, RELIGION_JUDAISM, RELIGION_OTHER) +/decl/origin_item/origin/gadpathur_exile + name = "Gadpathurian Exile" + desc = "As an exile from Gadpathur you are, above all other things, a failure. A failure to meet the standards of Gadpathurian society found unworthy of defending it from the Solarian imperialists. You are a weakness that the planet and its people cannot afford to keep around, lest you compromise its defense. Stripped over everything that makes you Gadpathurian and cast aside to the Republic of Biesel or Coalition of Colonies, it is now up to you -- and you alone -- to make something of yourself despite your status as a failure. The one certainty is that your home will not take you back, no matter what you do." + possible_accents = list(ACCENT_GADPATHUR) + possible_citizenships = list(CITIZENSHIP_COALITION, CITIZENSHIP_BIESEL) + possible_religions = RELIGIONS_COALITION + /decl/origin_item/origin/assunzione name = "Republic of Assunzione" desc = "One of the most remote planets colonized by humanity, the Republic of Assunzione is widely known for its lack of a functional sun - which burnt out mysteriously shortly after the planet was colonized - and its unusual native faith, Luceism. Luceism itself is an offshoot of traditional Abrahamic faiths and is centered around the worship of Ennoia, an abstract representation of light. Assunzionii society is quite insular and is centered around the planet's faith, with an overwhelming majority of the planet's residents adhering to Luceism." @@ -66,3 +76,9 @@ possible_citizenships = list(CITIZENSHIP_COALITION, CITIZENSHIP_BIESEL, CITIZENSHIP_SOL) possible_religions = list(RELIGION_NONE, RELIGION_CHRISTIANITY, RELIGION_ISLAM, RELIGION_BUDDHISM, RELIGION_HINDU, RELIGION_TAOISM, RELIGION_JUDAISM, RELIGION_OTHER, RELIGION_TRINARY, RELIGION_LUCEISM, RELIGION_MOROZ, RELIGION_SCARAB) +/decl/origin_item/origin/other_coalition + name = "Other Coalition" + desc = "The Coalition is home to a multitude of worlds, ranging from prosperous democracies to struggling dictatorships. Nearly anything can be found within its borders, and many of its worlds are only united by their common allegiance to the Coalition." + possible_accents = list(ACCENT_COC, ACCENT_NCF) + possible_citizenships = list(CITIZENSHIP_COALITION, CITIZENSHIP_BIESEL) + possible_religions = RELIGIONS_COALITION diff --git a/html/changelogs/mattatlas-humanorigins.yml b/html/changelogs/mattatlas-humanorigins.yml new file mode 100644 index 00000000000..7a327d2f966 --- /dev/null +++ b/html/changelogs/mattatlas-humanorigins.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: MattAtlas + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added the Gadpathurian Exile and Coalition Other origins for humans."