diff --git a/code/modules/client/preference_setup/loadout/items/xeno/machine.dm b/code/modules/client/preference_setup/loadout/items/xeno/machine.dm index dc9616a10f0..77fc2b61b20 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/machine.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/machine.dm @@ -340,3 +340,9 @@ ABSTRACT_TYPE(/datum/gear/augment/machine) origin_restriction = list(/singleton/origin_item/origin/ipc_assunzione) whitelisted = list(SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL) sort_category = "Xenowear - IPC" + +/datum/gear/accessory/goldendeeppassport + display_name = "golden deep passport" + path = /obj/item/clothing/accessory/badge/passport/goldendeep + whitelisted = list(SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL, SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD) + sort_category = "Xenowear - IPC" diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index 0ff28bdda6a..c11252bc4ea 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -607,6 +607,12 @@ icon_state = "passport_hegemony" item_state = "passport_hegemony" +/obj/item/clothing/accessory/badge/passport/goldendeep + name = "golden deep passport" + desc = "A electronic passport issued to a member of the Golden Deep Collective. This device lists and updates the owner's net worth in real time." + icon_state = "passport_goldendeep" + item_state = "passport_goldendeep" + #undef CANT_OPEN #undef CLOSED #undef OPEN diff --git a/html/changelogs/SimpleMaroon-goldendeeppassports.yml b/html/changelogs/SimpleMaroon-goldendeeppassports.yml new file mode 100644 index 00000000000..ce0a393b110 --- /dev/null +++ b/html/changelogs/SimpleMaroon-goldendeeppassports.yml @@ -0,0 +1,58 @@ +################################ +# 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 +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: SimpleMaroon + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added an electronic passport for the Golden Deep under Xenowear - IPC in the loadout. Can be taken by all IPCs, but also humans, with Golden Deep membership." diff --git a/icons/obj/item/clothing/accessory/passcards.dmi b/icons/obj/item/clothing/accessory/passcards.dmi index 136613fa3a0..99b9fab0367 100644 Binary files a/icons/obj/item/clothing/accessory/passcards.dmi and b/icons/obj/item/clothing/accessory/passcards.dmi differ