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() ..()