-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcdcd66
commit 77ddb6d
Showing
5 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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,16 @@ | ||
/obj/item/clothing/neck/cloak/officer | ||
name = "officer's coat" | ||
desc = "Officer's coat in RedSec colors with a big N on the back. The inside of the collar has a label with 'Cyrus' written on it." | ||
var/alternate_desc = "Officer's coat in Syndicate colors with a big S on the back. The inside of the collar has a label with 'Nova' written on it." | ||
icon = 'tff_modular/master_files/icons/donator/obj/clothing/cloaks.dmi' | ||
icon_state = "mercreaper_cloak_nt" | ||
worn_icon = 'tff_modular/master_files/icons/donator/mob/clothing/neck.dmi' | ||
unique_reskin = list( | ||
"Nanotrasen" = "mercreaper_cloak_nt", | ||
"Syndicate" = "mercreaper_cloak_syndie" | ||
) | ||
|
||
/obj/item/clothing/neck/cloak/officer/reskin_obj(mob/M) | ||
. = ..() | ||
if(icon_state == "mercreaper_cloak_syndie") | ||
desc = alternate_desc |
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,4 @@ | ||
/datum/loadout_item/neck/officer_coat | ||
name = "Officer's coat" | ||
item_path = /obj/item/clothing/neck/cloak/officer | ||
ckeywhitelist = list("mercreaper") |
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