Snowflake fun removal

This commit is contained in:
ZomgPonies
2015-05-15 15:36:39 -04:00
parent 7120277444
commit 4ceb335a5e
2 changed files with 8 additions and 49 deletions
+7 -26
View File
@@ -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
..()