Skip to content

Commit

Permalink
Skins back
Browse files Browse the repository at this point in the history
  • Loading branch information
AyIong committed Nov 28, 2023
1 parent f7caba5 commit a2e51da
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/__HELPERS/type2type.dm
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,14 @@
return 'icons/mob/screen_white.dmi'
if("Midnight")
return 'icons/mob/screen_midnight.dmi'
if("Vaporwave")
return 'modular_ss220/aesthetics/skin/icons/screen_vaporwave.dmi'
if("Detective")
return 'modular_ss220/aesthetics/skin/icons/screen_detective.dmi'
if("Trasen")
return 'modular_ss220/aesthetics/skin/icons/screen_trasenknox.dmi'
if("Clockwork")
return 'modular_ss220/aesthetics/skin/icons/screen_clockwork.dmi'

//colour formats
/proc/rgb2hsl(red, green, blue)
Expand Down
10 changes: 10 additions & 0 deletions code/modules/client/preference/link_processing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,16 @@
UI_style = "Operative"
if("White")
UI_style = "White"
// SS220 ADDITION START
if("Vaporwave")
UI_style = "Vaporwave"
if("Detective")
UI_style = "Detective"
if("Trasen")
UI_style = "Trasen"
if("Clockwork")
UI_style = "Clockwork"
// SS220 ADDITION END

if(ishuman(usr)) //mid-round preference changes, for aesthetics
var/mob/living/carbon/human/H = usr
Expand Down

0 comments on commit a2e51da

Please sign in to comment.