-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Good Heavens, it's the [NOBLE AMBASSADOR]! (#422)
- Loading branch information
1 parent
c5712ba
commit 8f1bbc6
Showing
31 changed files
with
281 additions
and
5 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
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
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
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
/// -- Job defines. -- | ||
#define JOB_DISPLAY_ORDER_ASSET_PROTECTION 3.1 | ||
#define JOB_DISPLAY_ORDER_BRIDGE_OFFICER 3.2 | ||
#define JOB_DISPLAY_ORDER_NOBLE_AMBASSADOR 3.3 | ||
#define JOB_DISPLAY_ORDER_ORDNANCE_TECH 29.1 | ||
#define JOB_DISPLAY_ORDER_XENOBIOLOGIST 29.2 | ||
|
||
#define JOB_SYNDICATE (1<<0) | ||
|
||
#define JOB_ASSET_PROTECTION "Asset Protection" | ||
#define JOB_BRIDGE_OFFICER "Bridge Officer" | ||
#define JOB_NOBLE_AMBASSADOR "Noble Ambassador" | ||
#define JOB_ORDNANCE_TECH "Ordnance Technician" | ||
#define JOB_XENOBIOLOGIST "Xenobiologist" | ||
|
||
#define JOB_SYNDICATE (1<<0) |
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
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,6 @@ | ||
/obj/item/card/id/advanced/silver/mu | ||
name = "\improper Mu identification card" | ||
desc = "A pink ID card associated to the Aristocracy of Mu." | ||
icon = 'maplestation_modules/icons/obj/card.dmi' | ||
icon_state = "card_noble" | ||
assigned_icon_state = "assigned_noble" |
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
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
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
18 changes: 18 additions & 0 deletions
18
...ion_modules/code/game/objects/structures/crate_lockers/closets/secure/noble_ambassador.dm
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,18 @@ | ||
/obj/structure/closet/secure_closet/noble_ambassador | ||
name = "\proper noble ambassador's locker" | ||
desc = "It's a card-locked storage unit. You sure wish it had less spartan decorations." | ||
req_access = list(ACCESS_COMMAND) | ||
icon = 'maplestation_modules/icons/obj/locker.dmi' | ||
icon_state = "na" | ||
|
||
/obj/structure/closet/secure_closet/noble_ambassador/PopulateContents() | ||
new /obj/item/storage/bag/garment/noble_ambassador(src) | ||
new /obj/item/storage/backpack/satchel/leather(src) | ||
new /obj/item/radio/headset/heads/noble_ambassador(src) | ||
new /obj/item/stamp/na(src) | ||
new /obj/item/storage/photo_album/noble_ambassador(src) | ||
|
||
/obj/item/storage/photo_album/noble_ambassador | ||
name = "photo album (Noble Ambassador)" | ||
icon_state = "album_blue" | ||
persistence_id = "NA" |
Oops, something went wrong.