From bcd46f7181dc3eb7e4c2c7fca470a3ac1a6574e1 Mon Sep 17 00:00:00 2001 From: Archie Date: Sun, 13 Jun 2021 22:00:26 -0300 Subject: [PATCH] Description, sound. --- hyperstation/code/mobs/mimic.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hyperstation/code/mobs/mimic.dm b/hyperstation/code/mobs/mimic.dm index 362d4159..5872cd47 100644 --- a/hyperstation/code/mobs/mimic.dm +++ b/hyperstation/code/mobs/mimic.dm @@ -43,9 +43,10 @@ /obj/item/projectile, /obj/item/radio/intercom)) var/warned - var/playstyle_string = "You are a mimic, a tricky creature that can take the form of \ + var/playstyle_string = "You are a mimic, a tricky creature that can take the form of \ almost any items nearby by shift-clicking it. While morphed, you move slowly and do less damage. \ - Finally, you can restore yourself to your original form while morphed by shift-clicking yourself." + Finally, you can restore yourself to your original form while morphed by shift-clicking yourself. \ + Attacking carbon lifeforms will heal you at the cost of destructuring their DNA." /mob/living/simple_animal/hostile/hs13mimic/Initialize() . = ..() @@ -60,7 +61,7 @@ /mob/living/simple_animal/hostile/hs13mimic/Life() . = ..() if(src.mind && !warned) - SEND_SOUND(src, sound('sound/magic/mutate.ogg')) + SEND_SOUND(src, sound('sound/ambience/antag/ling_aler.ogg')) to_chat(src, src.playstyle_string) warned = TRUE