Skip to content

Commit

Permalink
Fluff cloak (Sprite + code) (#5081)
Browse files Browse the repository at this point in the history
* Fluff cloak (Sprite + code)

* Update loadout.dm
  • Loading branch information
ReezeBL authored Oct 8, 2024
1 parent 5f14044 commit 25b3b3d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
Binary file modified tff_modular/master_files/icons/donator/mob/clothing/neck.dmi
Binary file not shown.
Binary file modified tff_modular/master_files/icons/donator/obj/clothing/cloaks.dmi
Binary file not shown.
13 changes: 13 additions & 0 deletions tff_modular/modules/~donator/clothes/donator_clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -351,3 +351,16 @@
RESKIN_WORN_ICON_STATE = "smol42_trenchcoat_blue"
)
)

/obj/item/clothing/neck/mousecloak
name = "Winter assault cloak"
desc = "Life is all about doing whatever you want. Waterproof with handmade details, it includes special sleeves, detachable parts and zipper pockets."
icon = 'tff_modular/master_files/icons/donator/obj/clothing/cloaks.dmi'
icon_state = "siamant_sectac_w"
worn_icon = 'tff_modular/master_files/icons/donator/mob/clothing/neck.dmi'
body_parts_covered = CHEST|GROIN|LEGS|ARMS
resistance_flags = FIRE_PROOF

/obj/item/clothing/neck/mousecloak/Initialize(mapload)
. = ..()
AddComponent(/datum/component/toggle_clothes, "siamant_sectac_w_t")
5 changes: 5 additions & 0 deletions tff_modular/modules/~donator/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,8 @@
name = "Secure Trenchcoat"
item_path = /obj/item/clothing/neck/smoltrenchcoat
ckeywhitelist = list("Smol42")

/datum/loadout_item/neck/mousecloak
name = "Winter Assault Jacket"
item_path = /obj/item/clothing/neck/mousecloak
ckeywhitelist = list("mercreaper", "yaqapi", "siamant", "flippingtable", "phenyamomota")

0 comments on commit 25b3b3d

Please sign in to comment.