diff --git a/code/modules/client/preference_setup/loadout/loadout_mask.dm b/code/modules/client/preference_setup/loadout/loadout_mask.dm index 0351089960..5200aec00f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_mask.dm +++ b/code/modules/client/preference_setup/loadout/loadout_mask.dm @@ -86,3 +86,11 @@ /datum/gear/mask/half display_name = "black half-mask" path = /obj/item/clothing/accessory/gaiter/half + +/datum/gear/mask/wrestling + display_name = "wrestling mask" + path = /obj/item/clothing/mask/luchador/colorable + cost = 1 + +/datum/gear/mask/wrestling/New() + gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/clothing/masks/boxing.dm b/code/modules/clothing/masks/boxing.dm index 5678e8bac6..a809d115b2 100644 --- a/code/modules/clothing/masks/boxing.dm +++ b/code/modules/clothing/masks/boxing.dm @@ -32,4 +32,9 @@ /obj/item/clothing/mask/luchador/rudos name = "Rudos Mask" desc = "Worn by robust fighters who are willing to do anything to win." - icon_state = "luchar" \ No newline at end of file + icon_state = "luchar" + +/obj/item/clothing/mask/luchador/colorable + name = "Wrestling Mask" + desc = "A mask that covers the top half of the head, worn by robust wrestlers." + icon_state = "wrestler" diff --git a/icons/inventory/face/item_vr.dmi b/icons/inventory/face/item_vr.dmi index 8e7dce114a..c3f4e9729f 100644 Binary files a/icons/inventory/face/item_vr.dmi and b/icons/inventory/face/item_vr.dmi differ diff --git a/icons/inventory/face/mob_vr.dmi b/icons/inventory/face/mob_vr.dmi index a4d9154749..5662911bfb 100644 Binary files a/icons/inventory/face/mob_vr.dmi and b/icons/inventory/face/mob_vr.dmi differ