mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
Snowflake fun removal
This commit is contained in:
@@ -119,32 +119,13 @@
|
||||
|
||||
/obj/item/weapon/wirecutters/attack(mob/living/carbon/human/C as mob, mob/user as mob)
|
||||
if(C.handcuffed)
|
||||
if(C.species.name == "Wryn" && (locate(C.internal_organs_by_name["antennae"]) in C.internal_organs))
|
||||
|
||||
var/turf/p_loc = user.loc
|
||||
var/turf/p_loc_m = C.loc
|
||||
|
||||
user.visible_message("\blue [user] begins to cut off [C]'s antennae.")
|
||||
C << "\red <B>[user] begins to cut off your antennae!<B>"
|
||||
do_after(C, 150)
|
||||
if(p_loc == user.loc && p_loc_m == C.loc)
|
||||
var/obj/item/organ/wryn/hivenode/H = C.internal_organs_by_name["antennae"]
|
||||
H.removed(user)
|
||||
C.remove_language("Wryn Hivemind")
|
||||
new /obj/item/organ/wryn/hivenode(user.loc)
|
||||
user << "<span class='warning'> You hear a loud crunch as you mercilessly off cut [C]'s antennae.</span>"
|
||||
C << "<span class='warning'><B>You hear a loud crunch as the wirecutters rip through your antennae.</B></span>"
|
||||
C << "<span class='notice'><B>Its so quiet...</B></span>"
|
||||
C.h_style = "Bald"
|
||||
C.update_hair()
|
||||
else
|
||||
if(istype(C.handcuffed, /obj/item/weapon/restraints/handcuffs/cable))
|
||||
usr.visible_message("\The [usr] cuts \the [C]'s restraints with \the [src]!",\
|
||||
"You cut \the [C]'s restraints with \the [src]!",\
|
||||
"You hear cable being cut.")
|
||||
C.handcuffed = null
|
||||
C.update_inv_handcuffed()
|
||||
return
|
||||
if(istype(C.handcuffed, /obj/item/weapon/restraints/handcuffs/cable))
|
||||
usr.visible_message("\The [usr] cuts \the [C]'s restraints with \the [src]!",\
|
||||
"You cut \the [C]'s restraints with \the [src]!",\
|
||||
"You hear cable being cut.")
|
||||
C.handcuffed = null
|
||||
C.update_inv_handcuffed()
|
||||
return
|
||||
else
|
||||
..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user