mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-20 05:55:11 +00:00
114 lines
4.4 KiB
Plaintext
114 lines
4.4 KiB
Plaintext
/obj/item/clothing/mask/muzzle
|
|
name = "muzzle"
|
|
desc = "To stop that awful noise."
|
|
icon_state = "muzzle"
|
|
inhand_icon_state = "blindfold"
|
|
lefthand_file = 'icons/mob/inhands/clothing/glasses_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/clothing/glasses_righthand.dmi'
|
|
clothing_flags = BLOCKS_SPEECH
|
|
flags_cover = MASKCOVERSMOUTH
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
equip_delay_other = 20
|
|
|
|
/obj/item/clothing/mask/muzzle/attack_paw(mob/user, list/modifiers)
|
|
if(iscarbon(user))
|
|
var/mob/living/carbon/carbon_user = user
|
|
if(src == carbon_user.wear_mask)
|
|
to_chat(user, span_warning("You need help taking this off!"))
|
|
return
|
|
..()
|
|
|
|
/obj/item/clothing/mask/muzzle/breath
|
|
name = "surgery mask"
|
|
desc = "To silence those pesky patients before putting them under."
|
|
icon_state = "breathmuzzle"
|
|
inhand_icon_state = "breathmuzzle"
|
|
lefthand_file = 'icons/mob/inhands/clothing/masks_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/clothing/masks_righthand.dmi'
|
|
body_parts_covered = NONE
|
|
clothing_flags = MASKINTERNALS | BLOCKS_SPEECH
|
|
armor_type = /datum/armor/muzzle_breath
|
|
equip_delay_other = 25 // my sprite has 4 straps, a-la a head harness. takes a while to equip, longer than a muzzle
|
|
|
|
/obj/item/clothing/mask/muzzle/tape
|
|
name = "tape piece"
|
|
desc = "A piece of tape that can be put over someone's mouth."
|
|
icon_state = "tape_piece"
|
|
worn_icon_state = "tape_piece_worn"
|
|
inhand_icon_state = null
|
|
w_class = WEIGHT_CLASS_TINY
|
|
clothing_flags = INEDIBLE_CLOTHING|BLOCKS_SPEECH
|
|
equip_delay_other = 40
|
|
strip_delay = 40
|
|
greyscale_config = /datum/greyscale_config/tape_piece
|
|
greyscale_config_worn = /datum/greyscale_config/tape_piece/worn
|
|
greyscale_colors = "#B2B2B2"
|
|
///Dertermines whether the tape piece does damage when ripped off of someone.
|
|
var/harmful_strip = FALSE
|
|
///The ammount of damage dealt when the tape piece is ripped off of someone.
|
|
var/stripping_damage = 0
|
|
|
|
/datum/armor/muzzle_breath
|
|
bio = 100
|
|
|
|
/obj/item/clothing/mask/muzzle/tape/examine(mob/user)
|
|
. = ..()
|
|
. += "[span_notice("Use it on someone while not in combat mode to tape their mouth closed!")]"
|
|
|
|
/obj/item/clothing/mask/muzzle/tape/dropped(mob/living/user)
|
|
. = ..()
|
|
if(user.get_item_by_slot(ITEM_SLOT_MASK) != src)
|
|
return
|
|
playsound(user, 'sound/items/duct_tape_rip.ogg', 50, TRUE)
|
|
if(harmful_strip)
|
|
user.apply_damage(stripping_damage, BRUTE, BODY_ZONE_HEAD)
|
|
INVOKE_ASYNC(user, TYPE_PROC_REF(/mob, emote), "scream")
|
|
to_chat(user, span_userdanger("You feel a massive pain as hundreds of tiny spikes tear free from your face!"))
|
|
|
|
/obj/item/clothing/mask/muzzle/tape/attack(mob/living/carbon/victim, mob/living/carbon/attacker, params)
|
|
if(attacker.combat_mode)
|
|
return ..()
|
|
if(victim.is_mouth_covered(ITEM_SLOT_HEAD))
|
|
to_chat(attacker, span_notice("[victim]'s mouth is covered."))
|
|
return
|
|
if(!mob_can_equip(victim, ITEM_SLOT_MASK))
|
|
to_chat(attacker, span_notice("[victim] is already wearing somthing on their face."))
|
|
return
|
|
balloon_alert(attacker, "taping mouth...")
|
|
to_chat(victim, span_userdanger("[attacker] is attempting to tape your mouth closed!"))
|
|
if(!do_after(attacker, equip_delay_other, target = victim))
|
|
return
|
|
victim.equip_to_slot_if_possible(src, ITEM_SLOT_MASK)
|
|
update_appearance()
|
|
|
|
/obj/item/clothing/mask/muzzle/tape/super
|
|
name = "super tape piece"
|
|
desc = "A piece of tape that can be put over someone's mouth. This one has extra strengh."
|
|
greyscale_colors = "#4D4D4D"
|
|
strip_delay = 80
|
|
|
|
/obj/item/clothing/mask/muzzle/tape/surgical
|
|
name = "surgical tape piece"
|
|
desc = "A piece of tape that can be put over someone's mouth. As long as you apply this to your patient, you won't hear their screams of pain!"
|
|
greyscale_colors = "#70BAE7"
|
|
equip_delay_other = 30
|
|
strip_delay = 30
|
|
|
|
/obj/item/clothing/mask/muzzle/tape/pointy
|
|
name = "pointy tape piece"
|
|
desc = "A piece of tape that can be put over someone's mouth. Looks like it will hurt if this is ripped off."
|
|
icon_state = "tape_piece_spikes"
|
|
worn_icon_state = "tape_piece_spikes_worn"
|
|
greyscale_config = /datum/greyscale_config/tape_piece/spikes
|
|
greyscale_config_worn = /datum/greyscale_config/tape_piece/worn/spikes
|
|
greyscale_colors = "#E64539#AD2F45"
|
|
harmful_strip = TRUE
|
|
stripping_damage = 10
|
|
|
|
/obj/item/clothing/mask/muzzle/tape/pointy/super
|
|
name = "super pointy tape piece"
|
|
desc = "A piece of tape that can be put over someone's mouth. This thing could rip your face into a thousand pieces if ripped off."
|
|
greyscale_colors = "#8C0A00#300008"
|
|
strip_delay = 60
|
|
stripping_damage = 20
|