/obj/item/wirecutters name = "wirecutters" desc = "A small pair of wirecutters, used for snipping electrical cabling. The handgrips are made of cheap plastic, and will not protect against electrical shocks." icon = 'icons/obj/tools.dmi' icon_state = "cutters" belt_icon = "wirecutters_red" flags = CONDUCT slot_flags = ITEM_SLOT_BELT force = 6 throwforce = 5 throw_speed = 3 w_class = WEIGHT_CLASS_SMALL materials = list(MAT_METAL = 370) origin_tech = "materials=1;engineering=1" attack_verb = list("pinched", "nipped") hitsound = 'sound/items/wirecutter.ogg' usesound = 'sound/items/wirecutter.ogg' drop_sound = 'sound/items/handling/wirecutter_drop.ogg' pickup_sound = 'sound/items/handling/wirecutter_pickup.ogg' sharp = TRUE armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 0, RAD = 0, FIRE = 50, ACID = 30) tool_behaviour = TOOL_WIRECUTTER var/random_color = TRUE new_attack_chain = TRUE /obj/item/wirecutters/Initialize(mapload, param_color = null) . = ..() if(random_color) if(!param_color) param_color = pick("yellow", "red") belt_icon = "wirecutters_[param_color]" icon_state = "cutters_[param_color]" RegisterSignal(src, COMSIG_BIT_ATTACH, PROC_REF(add_bit)) RegisterSignal(src, COMSIG_CLICK_ALT, PROC_REF(remove_bit)) /obj/item/wirecutters/interact_with_atom(atom/target, mob/living/user, list/modifiers) var/mob/living/carbon/mob = target if(istype(mob) && mob.handcuffed && istype(mob.handcuffed, /obj/item/restraints/handcuffs/cable)) user.visible_message(SPAN_NOTICE("[user] cuts [mob]'s restraints with [src]!")) QDEL_NULL(mob.handcuffed) if(mob.buckled && mob.buckled.buckle_requires_restraints) mob.unbuckle() mob.update_handcuffed() return ITEM_INTERACT_COMPLETE /obj/item/wirecutters/suicide_act(mob/user) user.visible_message(SPAN_SUICIDE("[user] is cutting at [user.p_their()] [is_robotic_suicide(user) ? "wiring" : "arteries"] with [src]! It looks like [user.p_theyre()] trying to commit suicide!")) playsound(loc, usesound, 50, TRUE, -1) return BRUTELOSS /obj/item/wirecutters/proc/is_robotic_suicide(mob/user) if(!ishuman(user)) return FALSE var/mob/living/carbon/human/H = user var/obj/item/organ/external/chest/chest = H.bodyparts_by_name["chest"] if(!chest) return FALSE return chest.is_robotic() /obj/item/wirecutters/security name = "security wirecutters" desc = "A pair of tacticool wirecutters fitted with contoured grips and a picatinny rail. The blades are also sharper than normal." icon_state = "cutters_sec" belt_icon = "wirecutters_sec" inhand_icon_state = "cutters_red" //shh attack_verb = list("reformed", "robusted", "102'd") //102: battery in space law force = 9 //same as seclites toolspeed = 0.75 random_color = FALSE /obj/item/wirecutters/security/suicide_act(mob/living/user) if(!user) return user.visible_message(SPAN_SUICIDE("[user] is cutting [user.p_themselves()] free from the mortal coil! It looks like [user.p_theyre()] trying to commit suicide!")) user.Immobilize(10 SECONDS) sleep(2 SECONDS) add_fingerprint(user) playsound(loc, usesound, 50, TRUE, -1) new /obj/item/restraints/handcuffs/cable/zipties/used(user.loc) for(var/obj/item/W in user) user.drop_item_to_ground(W) user.dust() return OBLITERATION /obj/item/wirecutters/brass name = "brass wirecutters" desc = "A pair of wirecutters made of brass. The handle feels freezing cold to the touch." icon_state = "cutters_brass" belt_icon = "wirecutters_brass" toolspeed = 0.5 random_color = FALSE resistance_flags = FIRE_PROOF | ACID_PROOF /obj/item/wirecutters/cyborg desc = "A pair of integrated wirecutters used by construction and engineering robots." toolspeed = 0.5 /obj/item/wirecutters/cyborg/drone /obj/item/wirecutters/cyborg/drone/Initialize(mapload) . = ..() ADD_TRAIT(src, TRAIT_SHOW_WIRE_INFO, ROUNDSTART_TRAIT) // Drones are linked to the station /obj/item/wirecutters/power name = "jaws of life" desc = "A compact and powerful industrial tool with a modular head. This one has a set of large cutting blades attached." icon_state = "jaws_cutter" inhand_icon_state = "jawsoflife" belt_icon = "jaws" origin_tech = "materials=2;engineering=2" materials = list(MAT_METAL = 4500, MAT_SILVER = 2500, MAT_TITANIUM = 3500) usesound = 'sound/items/jaws_cut.ogg' toolspeed = 0.25 w_class = WEIGHT_CLASS_NORMAL random_color = FALSE /obj/item/wirecutters/power/suicide_act(mob/user) user.visible_message(SPAN_SUICIDE("[user] is wrapping [src] around [user.p_their()] neck. It looks like [user.p_theyre()] trying to rip [user.p_their()] head off!")) if(!use_tool(user, user, 3 SECONDS, volume = tool_volume)) return SHAME if(!ishuman(user)) return BRUTELOSS var/mob/living/carbon/human/H = user var/obj/item/organ/external/head/head = H.bodyparts_by_name["head"] if(!head) user.visible_message(SPAN_SUICIDE("...but [user.p_they()] [user.p_are()] already headless! How embarassing.")) return SHAME head.droplimb(FALSE, DROPLIMB_SHARP, FALSE, TRUE) if(user.stat != DEAD) user.visible_message(SPAN_SUICIDE("...but [user.p_they()] didn't need it anyway! How embarassing.")) return SHAME return OXYLOSS /obj/item/wirecutters/power/activate_self(mob/user) if(..()) return playsound(get_turf(user), 'sound/items/change_jaws.ogg', 50, 1) var/obj/item/crowbar/power/pryjaws = new /obj/item/crowbar/power to_chat(user, SPAN_NOTICE("You attach the pry jaws to [src].")) for(var/obj/item/smithed_item/tool_bit/bit in attached_bits) bit.on_detached() bit.forceMove(pryjaws) pryjaws.attached_bits += bit bit.on_attached(pryjaws) qdel(src) user.put_in_active_hand(pryjaws)