diff --git a/maplestation.dme b/maplestation.dme index 16445d510ef8..01bc479d8205 100644 --- a/maplestation.dme +++ b/maplestation.dme @@ -6545,6 +6545,7 @@ #include "maplestation_modules\code\modules\clothing\glasses\blind_goggles.dm" #include "maplestation_modules\code\modules\clothing\glasses\hud_eyepatches.dm" #include "maplestation_modules\code\modules\clothing\glasses\loadout_glasses.dm" +#include "maplestation_modules\code\modules\clothing\glasses\red_glasses.dm" #include "maplestation_modules\code\modules\clothing\gloves\loadout_gloves.dm" #include "maplestation_modules\code\modules\clothing\head\jobs.dm" #include "maplestation_modules\code\modules\clothing\head\loadout_helmet.dm" diff --git a/maplestation_modules/code/modules/clothing/glasses/red_glasses.dm b/maplestation_modules/code/modules/clothing/glasses/red_glasses.dm new file mode 100644 index 000000000000..2b6091a3e9f1 --- /dev/null +++ b/maplestation_modules/code/modules/clothing/glasses/red_glasses.dm @@ -0,0 +1,17 @@ +/obj/item/clothing/glasses/red + desc = "These might ruin your dreams of becoming a pastry chef." + icon = 'maplestation_modules/icons/obj/clothing/glasses.dmi' + icon_state = "red_justice" + worn_icon = 'maplestation_modules/icons/mob/clothing/eyes.dmi' + unique_reskin = list( + "Justice" = "red_justice", + "Senpai" = "red_senpai", + ) + +/obj/item/clothing/glasses/red/reskin_obj(mob/user) + . = ..() + user.update_worn_glasses() + if(icon_state == "red_senpai") + desc = "Hey, you're looking good, senpai!" + else + desc = initial(desc) diff --git a/maplestation_modules/icons/mob/clothing/eyes.dmi b/maplestation_modules/icons/mob/clothing/eyes.dmi index a1a23435eda8..eb04b8843154 100644 Binary files a/maplestation_modules/icons/mob/clothing/eyes.dmi and b/maplestation_modules/icons/mob/clothing/eyes.dmi differ diff --git a/maplestation_modules/icons/obj/clothing/glasses.dmi b/maplestation_modules/icons/obj/clothing/glasses.dmi index ee706385c5cc..bc1a04deca9b 100644 Binary files a/maplestation_modules/icons/obj/clothing/glasses.dmi and b/maplestation_modules/icons/obj/clothing/glasses.dmi differ