Skip to content

Commit

Permalink
smolitems
Browse files Browse the repository at this point in the history
  • Loading branch information
Smol42 committed Sep 18, 2024
1 parent f2aaeba commit 15aa9e7
Show file tree
Hide file tree
Showing 4 changed files with 47 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.
37 changes: 37 additions & 0 deletions tff_modular/modules/~donator/clothes/donator_clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -297,3 +297,40 @@
icon = 'tff_modular/master_files/icons/donator/obj/clothing/glasses.dmi'
icon_state = "delingar_glasses_science"
worn_icon = 'tff_modular/master_files/icons/donator/mob/clothing/glasses.dmi'

/obj/item/clothing/neck/voidarr_cape
name = "Voidarr personel cape"
desc = "Garment fit for Voidarr workforce, darker than the void of stars, as though woven from the very shadow that falleth betwixt dusk and dawn. The cape doth glisten faintly, upon its length, there lieth a subtle sprinkling of moondust."
icon = 'tff_modular/master_files/icons/donator/obj/clothing/cloaks.dmi'
icon_state = "smol42_voidarr_cape"
worn_icon = 'tff_modular/master_files/icons/donator/mob/clothing/neck.dmi'
resistance_flags = FIRE_PROOF
uses_advanced_reskins = TRUE
unique_reskin = list(
"Snow" = list(
RESKIN_ICON_STATE = "smol42_voidarr_cape_snow",
RESKIN_WORN_ICON_STATE = "smol42_voidarr_cape_snow"
)
)

/obj/item/clothing/neck/smoltrenchcoat
name = "Secure Trenchcoat"
icon = 'tff_modular/master_files/icons/donator/obj/clothing/cloaks.dmi'
icon_state = "smol42_trenchcoat"
worn_icon = 'tff_modular/master_files/icons/donator/mob/clothing/neck.dmi'
body_parts_covered = CHEST|GROIN|LEGS|ARMS
uses_advanced_reskins = TRUE
unique_reskin = list(
"Snow" = list(
RESKIN_ICON_STATE = "smol42_trenchcoat_white",
RESKIN_WORN_ICON_STATE = "smol42_trenchcoat_white"
),
"Tin" = list(
RESKIN_ICON_STATE = "smol42_trenchcoat_tin",
RESKIN_WORN_ICON_STATE = "smol42_trenchcoat_tin"
),
"Blue" = list(
RESKIN_ICON_STATE = "smol42_trenchcoat_blue",
RESKIN_WORN_ICON_STATE = "smol42_trenchcoat_blue"
)
)
10 changes: 10 additions & 0 deletions tff_modular/modules/~donator/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,13 @@
name = "Ballistic Glasses"
item_path = /obj/item/clothing/glasses/ballistic
ckeywhitelist = list("Delingar")

/datum/loadout_item/neck/voidarr_cape
name = "Voidarr Personel cape"
item_path = /obj/item/clothing/neck/voidarr_cape
ckeywhitelist = list("Smol42", "Sage4or")

/datum/loadout_item/neck/smoltrenchcoat
name = "Secure Trenchcoat"
item_path = /obj/item/clothing/neck/smoltrenchcoat
ckeywhitelist = list("Smol42")

0 comments on commit 15aa9e7

Please sign in to comment.