Skip to content

Commit

Permalink
new donate shmotka
Browse files Browse the repository at this point in the history
  • Loading branch information
AnywayFarus committed Nov 20, 2023
1 parent dcdcd66 commit 77ddb6d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
16 changes: 16 additions & 0 deletions tff_modular/modules/~donator/clothes/donator_clothing.dm
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
4 changes: 4 additions & 0 deletions tff_modular/modules/~donator/loadout.dm
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")
2 changes: 2 additions & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -8000,4 +8000,6 @@
#include "tff_modular\modules\toys\code\loadout_datum_toys.dm"
#include "tff_modular\modules\toys\code\plushes.dm"
#include "tff_modular\modules\uplink_item\code\categories\stealthy_weapons.dm"
#include "tff_modular\modules\~donator\loadout.dm"
#include "tff_modular\modules\~donator\clothes\donator_clothing.dm"
// END_INCLUDE

0 comments on commit 77ddb6d

Please sign in to comment.