Skip to content

Commit

Permalink
Merge pull request #167 from Nerev4r/killboss
Browse files Browse the repository at this point in the history
Ruiner Glasses 4 Sec
  • Loading branch information
carpotoxin authored Oct 17, 2024
2 parents 4b23327 + 00b7a6b commit 4669333
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions modular_doppler/modular_cosmetics/code/face/glasses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,49 @@
// /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch/examine(mob/user)
// . = ..()
// . += "Use in hands to wear it over your [icon_state == base_icon_state ? "left" : "right"] eye."

/obj/item/clothing/glasses/hud/security/sunglasses
glass_colour_type = /datum/client_colour/glass_colour/red
uses_advanced_reskins = TRUE
unique_reskin = list(
"Regular" = list(
RESKIN_ICON_STATE = "sunhudsec",
RESKIN_WORN_ICON_STATE = "sunhudsec"
),
"Viper" = list(
RESKIN_ICON = 'modular_doppler/modular_cosmetics/icons/obj/face/glasses.dmi',
RESKIN_ICON_STATE = "viperhudsec",
RESKIN_WORN_ICON = 'modular_doppler/modular_cosmetics/icons/mob/face/glasses.dmi',
RESKIN_WORN_ICON_STATE = "viperhudsec"
)
)

/obj/item/clothing/glasses/night
uses_advanced_reskins = TRUE
unique_reskin = list(
"Regular" = list(
RESKIN_ICON_STATE = "glasses",
RESKIN_WORN_ICON_STATE = "night"
),
"Wetwork" = list(
RESKIN_ICON = 'modular_doppler/modular_cosmetics/icons/obj/face/glasses.dmi',
RESKIN_ICON_STATE = "nvg",
RESKIN_WORN_ICON = 'modular_doppler/modular_cosmetics/icons/mob/face/glasses.dmi',
RESKIN_WORN_ICON_STATE = "nvg"
)
)

/obj/item/clothing/glasses/hud/security/night
uses_advanced_reskins = TRUE
unique_reskin = list(
"Regular" = list(
RESKIN_ICON_STATE = "securityhudnight",
RESKIN_WORN_ICON_STATE = "securityhudnight"
),
"Wetwork" = list(
RESKIN_ICON = 'modular_doppler/modular_cosmetics/icons/obj/face/glasses.dmi',
RESKIN_ICON_STATE = "nvghudsec",
RESKIN_WORN_ICON = 'modular_doppler/modular_cosmetics/icons/mob/face/glasses.dmi',
RESKIN_WORN_ICON_STATE = "nvgsechud"
)
)
Binary file modified modular_doppler/modular_cosmetics/icons/mob/face/glasses.dmi
Binary file not shown.
Binary file modified modular_doppler/modular_cosmetics/icons/obj/face/glasses.dmi
Binary file not shown.

0 comments on commit 4669333

Please sign in to comment.