From 24a9f45dcff84bf3a86502e9a3a3f4e88c15133d Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Mon, 4 Feb 2019 07:15:05 +0100 Subject: [PATCH] Phase 1 synx pet Variety update. Laying the groundwork for spicing up pet play. --- code/modules/mob/living/simple_animal/animals/synx.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/synx.dm b/code/modules/mob/living/simple_animal/animals/synx.dm index e1f47444b8..82eaaddbef 100644 --- a/code/modules/mob/living/simple_animal/animals/synx.dm +++ b/code/modules/mob/living/simple_animal/animals/synx.dm @@ -185,8 +185,14 @@ mob/living/simple_animal/synx/PunchTarget() ////////////////PET VERSION///////////// //////////////////////////////////////// /mob/living/simple_animal/retaliate/synx/pet - name = "Grins" - desc = "A cold blooded, genderless, parasitic eel from the more distant and stranger areas of the cosmos. Plain, white, perpetually grinning and possessing a hunger as enthusiastic and endless as humanity's sense of exploration.. This one has a small collar on it that reads 'Grins' with a bell that doesn't seem to work." + var/names = list("Grins","Greed") + name = pick(names) + if (name == "Grins") + desc = "A cold blooded, genderless, parasitic eel from the more distant and stranger areas of the cosmos. Plain, white, perpetually grinning and possessing a hunger as enthusiastic and endless as humanity's sense of exploration.. This one has a small collar on it that reads 'Grins' with a bell that doesn't seem to work." + if (name == "Greed") + desc = "A cold blooded, genderless, parasitic eel from the more distant and stranger areas of the cosmos. Plain, white, perpetually grinning and possessing a hunger as enthusiastic and endless as humanity's sense of exploration.. This one has the name Greed burnt into its back." + + tt_desc = "synxus pergulus" icon = 'icons/mob/synx.dmi'