PaperworkWarden, or, giving the Warden a custom stamp (#2422)

<!-- 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

<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->
Adds a stamp for the Warden role, and adds it to the Warden's locker
structure
<!-- Please make sure to actually test your PRs. If you have not tested
your PR mention it. -->

## Why It's Good For The Game

<!-- Argue for the merits of your changes and how they benefit the game,
especially if they are controversial and/or far reaching. If you can't
actually explain WHY what you are doing will improve the game, then it
probably isn't good for the game in the first place. -->
The warden has a fair amount of paperwork that they can handle instead
of the Head of Security, and is sometimes expected to handle, like
search warrants. It seems understandable that they are given a stamp so
they can do so properly.

## Proof Of Testing

<!-- Compile and run your code locally. Make sure it works. This is the
place to show off your changes! We are not responsible for testing your
features. -->

![image](https://github.com/user-attachments/assets/8bbe7190-9638-452c-b14e-773ca3335d0f)

![image](https://github.com/user-attachments/assets/a888cc41-ac45-46ed-a364-dd2a4a8324d1)

![image](https://github.com/user-attachments/assets/1f1d34c3-3118-485f-a7ff-cda30ad1aa88)

![image](https://github.com/user-attachments/assets/0377eb85-7546-47bb-af4c-d1c0b59101cd)

## 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 its 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. -->

🆑
add: gives the warden a stamp
/🆑

<!-- 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. -->

<!-- By opening a pull request. You have read and understood the
repository rules located on the main README.md on this project. -->
This commit is contained in:
Boviro
2024-11-14 18:20:19 -08:00
committed by GitHub
parent d8175f32d4
commit 5d06e7af9a
6 changed files with 11 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
"stamp-merged" = 'icons/stamp_icons/large_stamp-merged.png',
"stamp-closed" = 'icons/stamp_icons/large_stamp-closed.png',
"stamp-crow" = 'icons/stamp_icons/crow-stamp.png',
"stamp-warden" = 'icons/stamp_icons/large_stamp-warden.png',
//BUBBERSTATION ADDITION: END - Bubberstation Stamp Icons
"stamp-clown" = 'icons/stamp_icons/large_stamp-clown.png',

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,3 @@
/obj/structure/closet/secure_closet/warden/PopulateContents()
. = ..()
new /obj/item/stamp/warden(src)

View File

@@ -24,3 +24,9 @@
icon_state = "stamp-crow"
desc = "A rubber stamp for stamping vaguely legal contracts."
dye_color = DYE_BLACK
/obj/item/stamp/warden
name = "warden's rubber stamp"
icon = 'modular_zubbers/icons/obj/service/bureaucracy.dmi'
icon_state = "stamp-warden"
dye_color = DYE_HOS

Binary file not shown.

Before

Width:  |  Height:  |  Size: 595 B

After

Width:  |  Height:  |  Size: 706 B

View File

@@ -8797,6 +8797,7 @@
#include "modular_zubbers\code\game\objects\structures\beds_chairs\sofa.dm"
#include "modular_zubbers\code\game\objects\structures\crates_lockers\closets.dm"
#include "modular_zubbers\code\game\objects\structures\crates_lockers\closets\secure\scientist.dm"
#include "modular_zubbers\code\game\objects\structures\crates_lockers\closets\secure\security.dm"
#include "modular_zubbers\code\game\objects\structures\flags\signs_flags.dm"
#include "modular_zubbers\code\game\objects\structures\plaques\static_plaques.dm"
#include "modular_zubbers\code\game\traits\negative.dm"