Tajaran update: the war to end all wars edition (#7638)

-changes how the tajara species handles citizenship in game: you now have to pick one of the three factions, this also enables consular officers for them
-adds a new var to the species: default_citizenship, which citizenship should be the default one for that species, so you can have species that can't get biesel citizenship as their main one
-adds a bunch of loadout options to the tajaran section
-restricts tajara from being necropolis contractors
This commit is contained in:
Alberyk
2019-12-21 07:58:34 -03:00
committed by Erki
parent ce805b9d65
commit 038a4ac86b
45 changed files with 1444 additions and 1000 deletions

View File

@@ -75,15 +75,14 @@
)
/datum/category_item/player_setup_item/general/background/sanitize_character()
var/datum/species/S = all_species[pref.species]
if(!pref.citizenship)
pref.citizenship = CITIZENSHIP_BIESEL
pref.citizenship = S.default_citizenship
if(!pref.religion)
pref.religion = RELIGION_NONE
var/datum/species/S = all_species[pref.species]
if(!(pref.citizenship in S.allowed_citizenships))
pref.citizenship = CITIZENSHIP_BIESEL
pref.citizenship = S.default_citizenship
if(!(pref.religion in S.allowed_religions))
pref.religion = RELIGION_NONE