diff --git a/code/modules/background/origins/origins/ipc/coalition.dm b/code/modules/background/origins/origins/ipc/coalition.dm index ad80a275855..aefb3808b16 100644 --- a/code/modules/background/origins/origins/ipc/coalition.dm +++ b/code/modules/background/origins/origins/ipc/coalition.dm @@ -4,7 +4,8 @@ possible_origins = list( /decl/origin_item/origin/ipc_xanu, /decl/origin_item/origin/ipc_himeo, - /decl/origin_item/origin/ipc_assunzione + /decl/origin_item/origin/ipc_assunzione, + /decl/origin_item/origin/ipc_vysoka ) /decl/origin_item/origin/ipc_xanu @@ -42,3 +43,11 @@ possible_accents = ACCENTS_ALL_IPC_SOL possible_citizenships = list(CITIZENSHIP_COALITION, CITIZENSHIP_NONE) possible_religions = list(RELIGION_TRINARY) + +/decl/origin_item/origin/ipc_vysoka + name = "Free System of Vysoka" + desc = "Whilst the population of Synthetics on Vysoka is rather small, a number of both free and owned synthetics exist across the city states and rural areas of the planet, primarily concentrated in the developed city states with infrastructure to support them. However, some hosts maintain Synthetics through solar power or other small-scale methods. Synthetics can be found performing many duties across the planet, from security or engineering work to acting as advisors to Hosts. Treatment of Synthetics is dependent on their ability to prove the presence of an Aruhuin in their body, the spirits of the local religion, Stolitism. IPCs who fail to prove this spiritual presence, especially free ones, face discrimination and violence from the locals." + important_information = "Due to local laws on Vysoka, Shells are exceedingly rare, with the only ones existing on the planet being those owned by Idris Incorporated." + possible_accents = list(ACCENT_SOL, ACCENT_COC, ACCENT_NCF, ACCENT_VYSOKA, ACCENT_TTS) + possible_citizenships = list(CITIZENSHIP_COALITION, CITIZENSHIP_NONE) + possible_religions = list(RELIGION_NONE, RELIGION_OTHER) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 911f46b9da8..bcdb6e15fd6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -436,7 +436,7 @@ datum/gear/suit/colorvest description = "A selection of Vysokan chokhas." path = /obj/item/clothing/suit/storage/vysoka flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION - origin_restriction = list(/decl/origin_item/origin/vysoka) + origin_restriction = list(/decl/origin_item/origin/vysoka, /decl/origin_item/origin/ipc_vysoka) /datum/gear/suit/vysoka/New() ..() diff --git a/html/changelogs/SilvieSZ-VysokanIPCOrigin.yml b/html/changelogs/SilvieSZ-VysokanIPCOrigin.yml new file mode 100644 index 00000000000..374ea5213d9 --- /dev/null +++ b/html/changelogs/SilvieSZ-VysokanIPCOrigin.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: SilvieSZ + +# 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: "Adds the Vysokan Origin for IPCs"