diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 68ccd4c22df..c726affd49f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -290,3 +290,16 @@ gadpathur["industrial cadre brassard"] = /obj/item/clothing/accessory/armband/gadpathur/ind gadpathur["medical cadre brassard"] = /obj/item/clothing/accessory/armband/gadpathur/med gear_tweaks += new/datum/gear_tweak/path(gadpathur) + +/datum/gear/accessory/passport + display_name = "human passport selection" + path = /obj/item/clothing/accessory/badge/passport_sol + +/datum/gear/accessory/passport/New() + ..() + var/passport = list() + passport["passport, sol"] = /obj/item/clothing/accessory/badge/passport_sol + passport["passport, elyra"] = /obj/item/clothing/accessory/badge/passport_elyra + passport["passport, dominia"] = /obj/item/clothing/accessory/badge/passport_dominia + passport["passport, coalition"] = /obj/item/clothing/accessory/badge/passport_coalition + gear_tweaks += new/datum/gear_tweak/path(passport) diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index b43b6227190..d4fe4b8a52c 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -243,3 +243,43 @@ icon_state = "trinary_badge" overlay_state = "trinary_badge" badge_string = null + +/obj/item/clothing/accessory/badge/passport_sol + name = "\improper ASSN passport" + desc = "A passport issued to a citizen of the Alliance of Sovereign Solarian Nations." + icon_state = "passport_sol" + overlay_state = "passport_sol" + slot_flags = null + w_class = ITEMSIZE_TINY + flippable = FALSE + v_flippable = FALSE + +/obj/item/clothing/accessory/badge/passport_elyra + name = "republic of elyra passport" + desc = "A passport issued to a citizen of the Republic of Elyra." + icon_state = "passport_elyra" + overlay_state = "passport_elyra" + slot_flags = null + w_class = ITEMSIZE_TINY + flippable = FALSE + v_flippable = FALSE + +/obj/item/clothing/accessory/badge/passport_dominia + name = "empire of dominia passport" + desc = "A passport issued to a citizen of the Empire of Dominia." + icon_state = "passport_dominia" + overlay_state = "passport_dominia" + slot_flags = null + w_class = ITEMSIZE_TINY + flippable = FALSE + v_flippable = FALSE + +/obj/item/clothing/accessory/badge/passport_coalition + name = "coalition of colonies passport" + desc = "A passport issued to a citizen of the Coalition of Colonies." + icon_state = "passport_coalition" + overlay_state = "passport_coalition" + slot_flags = null + w_class = ITEMSIZE_TINY + flippable = FALSE + v_flippable = FALSE diff --git a/html/changelogs/dansemacabre-multipass.yml b/html/changelogs/dansemacabre-multipass.yml new file mode 100644 index 00000000000..f9d03a61e53 --- /dev/null +++ b/html/changelogs/dansemacabre-multipass.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: DanseMacabre + +# 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 passports for non-Tau Ceti Human factions. Find them in the accessories section of the loadout." diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index 9f1c8cc46c1..7a8d5ccd008 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ