From f5b01af7edd9b81b8693c61aeb18080ea539c231 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 28 Feb 2019 10:22:31 +0100 Subject: [PATCH] Giving IAN eldritch powers You know this was gonna happen --- .../mob/living/simple_animal/animals/corgi.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/code/modules/mob/living/simple_animal/animals/corgi.dm b/code/modules/mob/living/simple_animal/animals/corgi.dm index 317866e6c4..28d4ac689b 100644 --- a/code/modules/mob/living/simple_animal/animals/corgi.dm +++ b/code/modules/mob/living/simple_animal/animals/corgi.dm @@ -44,6 +44,18 @@ response_disarm = "bops" response_harm = "kicks" +//CHOMPEDIT: what if ian wasn't kill +/mob/living/simple_animal/corgi/Ian/death() + ..() + var/location = get_turf(src) //lets just define this here once instead of ewverytime an if is true, less work. + visible_message("\The [src] refuses death.") + new /mob/living/simple_animal/corgi/Ian/reincarnated(location) + qdel(src) + +/mob/living/simple_animal/corgi/Ian/reincarnated + name = "Ian the undying" + desc = "It's a corgi. It defies death, through the power of cute." + /mob/living/simple_animal/corgi/Ian/Life() ..()