Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

smol items #5041

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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")
Loading