-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Fancy Fountain Pens for Other Department Heads. (#125)
<!-- This is a semi-strict format, you can add/remove sections as needed but the order/format should be kept the same Remove these comments before submitting --> # Description <!-- Explain this PR in as much detail as applicable Some example prompts to consider: How might this affect the game? The codebase? What might be some alternatives to this? How/Who does this benefit/hurt [the game/codebase]? --> Added fountain pens for other department heads that don't have their own fancy pen yet. --- # Changelog <!-- You can add an author after the `:cl:` to change the name that appears in the changelog (ex: `:cl: Death`) Leaving it blank will default to your GitHub display name This includes all available types for the changelog --> :cl: - add: Added fancy fountain pens for department heads that were missing them. All in the name of writing more paperwork.
- Loading branch information
Showing
7 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
- type: entity | ||
name: ce's fountain pen | ||
parent: PenEmbeddable | ||
id: PenCe | ||
description: 'A luxurious fountain pen for the chief engineer of the station. Has anti-static grips.' | ||
components: | ||
- type: Sprite | ||
sprite: _DEN/Objects/Misc/bureaucracy.rsi | ||
state: pen_ce | ||
|
||
- type: entity | ||
name: hos' fountain pen | ||
parent: PenEmbeddable | ||
id: PenHos | ||
description: 'A luxurious fountain pen for the head of security of the station. Sharper than normal pens.' | ||
components: | ||
- type: Sprite | ||
sprite: _DEN/Objects/Misc/bureaucracy.rsi | ||
state: pen_hos | ||
- type: DamageOtherOnHit | ||
damage: | ||
types: | ||
Piercing: 8 | ||
|
||
- type: entity | ||
name: lo's fountain pen | ||
parent: PenEmbeddable | ||
id: PenLo | ||
description: 'A luxurious fountain pen for the logistics officer of the station. Smells like bounties to be written.' | ||
components: | ||
- type: Sprite | ||
sprite: _DEN/Objects/Misc/bureaucracy.rsi | ||
state: pen_lo | ||
|
||
- type: entity | ||
name: mystagogue's fountain pen | ||
parent: PenEmbeddable | ||
id: PenRd | ||
description: 'A luxurious fountain pen for the mystagogue of the station. More explosive resistant than normal pens.' | ||
components: | ||
- type: Sprite | ||
sprite: _DEN/Objects/Misc/bureaucracy.rsi | ||
state: pen_rd |
23 changes: 23 additions & 0 deletions
23
Resources/Textures/_DEN/Objects/Misc/bureaucracy.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. pen_ce, pen_hos, pen_lo, and pen_rd are resprited versions of pen_cap by Rosycup (Github).", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "pen_ce" | ||
}, | ||
{ | ||
"name": "pen_hos" | ||
}, | ||
{ | ||
"name": "pen_lo" | ||
}, | ||
{ | ||
"name": "pen_rd" | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.