Files
Letter NandGitHub 0b49f20f8b update paperwork stuffs (#6913)
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
use tgui on ones that have a tgui, update some stuff
<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and it's effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

🆑
tweak: folders are more immersive
tweak: filing cabinets can now hold small objects
/🆑

<!-- Both 🆑's are required for the changelog to work! You can put
your name to the right of the first 🆑 if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
2024-12-15 17:01:02 -08:00

58 lines
1.3 KiB
Plaintext

/obj/item/folder/blue
desc = "A blue folder."
icon_state = "folder_blue"
bg_color = "#355e9f"
/obj/item/folder/red
desc = "A red folder."
icon_state = "folder_red"
bg_color = "#b5002e"
/obj/item/folder/yellow
desc = "A yellow folder."
icon_state = "folder_yellow"
bg_color = "#b88f3d"
/obj/item/folder/white
desc = "A white folder."
icon_state = "folder_white"
bg_color = "#d9d9d9"
/obj/item/folder/blue_captain
desc = "A blue folder with Facility Director markings."
icon_state = "folder_captain"
bg_color = "#355e9f"
/obj/item/folder/blue_hop
desc = "A blue folder with HoP markings."
icon_state = "folder_hop"
bg_color = "#355e9f"
/obj/item/folder/white_cmo
desc = "A white folder with CMO markings."
icon_state = "folder_cmo"
bg_color = "#d9d9d9"
/obj/item/folder/white_rd
desc = "A white folder with RD markings."
icon_state = "folder_rd"
bg_color = "#d9d9d9"
/obj/item/folder/white_rd/Initialize(mapload)
. = ..()
//add some memos
var/obj/item/paper/P = new(src)
P.name = "Memo RE: proper analysis procedure"
P.info = "<br>We keep test dummies in pens here for a reason"
update_icon()
/obj/item/folder/yellow_ce
desc = "A yellow folder with CE markings."
icon_state = "folder_ce"
bg_color = "#b88f3d"
/obj/item/folder/red_hos
desc = "A red folder with HoS markings."
icon_state = "folder_hos"
bg_color = "#b5002e"