diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 7d512aaec67..704612f3a22 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -420,6 +420,12 @@ passcard["passcard, visegrad"] = /obj/item/clothing/accessory/badge/passcard/sol/visegrad gear_tweaks += new /datum/gear_tweak/path(passcard) +/datum/gear/accessory/workvisa + display_name = "republic of biesel work visa" + description = "A work visa issued to those who work in the Republic of Biesel, but who do not have a Biesellite citizenship." + path = /obj/item/clothing/accessory/badge/passcard/workvisa + cost = 0 + /datum/gear/accessory/passport display_name = "human passport selection" path = /obj/item/clothing/accessory/badge/passport diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index 643e21a05c9..95204578194 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -467,6 +467,16 @@ icon_state = "passcard_konyang" item_state = "passcard_konyang" +// Work Visa +/obj/item/clothing/accessory/badge/passcard/workvisa + name = "republic of biesel work visa" + desc = "A work visa issued to those who work in the Republic of Biesel, but who do not have a Biesellite citizenship." + desc_fluff = "A work visa is required in the Republic of Biesel for those who do not have a Biesellite citizenship and who intend to hold legal employment. Those who most commonly lack a Biesellite citizenship \ + are those from the Alliance of Sovereign Solarian Nations, as the ASSN does not permit dual citizenships in combination with a Biesellite citizenship. Other individuals that may have a Republic of Biesel work \ + visa are those who intend to become citizens but have not yet resided for two years in order to apply for citizenship, or those who have not yet applied for a citizenship." + icon_state = "workvisa" + item_state = "workvisa" + //passports #define CANT_OPEN -1 diff --git a/html/changelogs/work_visa.yml b/html/changelogs/work_visa.yml new file mode 100644 index 00000000000..e383fbc7955 --- /dev/null +++ b/html/changelogs/work_visa.yml @@ -0,0 +1,6 @@ +author: SleepyGemmy + +delete-after: True + +changes: + - rscadd: "Adds a Republic of Biesel work visa." \ No newline at end of file diff --git a/icons/clothing/accessories/passcards.dmi b/icons/clothing/accessories/passcards.dmi index 9684aad65ff..d1f90ce9bee 100644 Binary files a/icons/clothing/accessories/passcards.dmi and b/icons/clothing/accessories/passcards.dmi differ