diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index cac43a6d..1eb21de3 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -17,6 +17,12 @@ return ..() +/obj/item/clothing/mask/muzzle/ballgag + name = "ball gag" + desc = "To stop that awful noise, but lewder." + icon_state = "ballgag" + item_state = "ballgag" + /obj/item/clothing/mask/surgical name = "sterile mask" desc = "A sterile mask designed to help prevent the spread of diseases." diff --git a/icons/mob/mask.dmi b/icons/mob/mask.dmi index 37607356..2a649811 100644 Binary files a/icons/mob/mask.dmi and b/icons/mob/mask.dmi differ diff --git a/icons/obj/clothing/masks.dmi b/icons/obj/clothing/masks.dmi index fd85a879..2478d882 100644 Binary files a/icons/obj/clothing/masks.dmi and b/icons/obj/clothing/masks.dmi differ diff --git a/modular_citadel/code/game/machinery/vending.dm b/modular_citadel/code/game/machinery/vending.dm index e364ebdb..5d66bf77 100644 --- a/modular_citadel/code/game/machinery/vending.dm +++ b/modular_citadel/code/game/machinery/vending.dm @@ -65,13 +65,15 @@ /obj/item/dildo/flared/huge = 1, /obj/item/clothing/head/dominatrixcap = 1, /obj/item/mesmetron = 1, - /obj/item/bdsm_whip = 1 + /obj/item/bdsm_whip = 1, + /obj/item/clothing/mask/muzzle = 1 ) premium = list( /obj/item/electropack/shockcollar = 3, /obj/item/clothing/neck/petcollar/locked = 1, /obj/item/restraints/handcuffs/rope = 1, - /obj/item/leash = 1 + /obj/item/leash = 1, + /obj/item/clothing/mask/muzzle/ballgag = 3 ) refill_canister = /obj/item/vending_refill/kink /* diff --git a/modular_citadel/icons/mob/muzzled_mask.dmi b/modular_citadel/icons/mob/muzzled_mask.dmi index 6b81c80d..eb51e97e 100644 Binary files a/modular_citadel/icons/mob/muzzled_mask.dmi and b/modular_citadel/icons/mob/muzzled_mask.dmi differ