From f007e695812d085eb5c3a4bc8f42e95854a70f63 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Fri, 31 Jul 2015 09:35:54 -0500 Subject: [PATCH 1/2] Nerfs slaughter demon They are now slower, but get a temporary speed boost upon exiting blood (good idea Lumi) They now have 200 health instead of 250 --- .../simple_animal/slaughter/slaughter.dm | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm index 18f71aa35a8..d18181fb054 100644 --- a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm +++ b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm @@ -12,7 +12,7 @@ icon = 'icons/mob/mob.dmi' icon_state = "daemon" icon_living = "daemon" - speed = 0 + speed = 1 a_intent = "harm" stop_automated_movement = 1 status_flags = CANPUSH @@ -21,18 +21,25 @@ minbodytemp = 0 faction = list("slaughter") attacktext = "wildly tears into" - maxHealth = 250 - health = 250 + maxHealth = 200 + health = 200 environment_smash = 1 melee_damage_lower = 30 melee_damage_upper = 30 see_in_dark = 8 + var/boost = 0 bloodcrawl = BLOODCRAWL_EAT see_invisible = SEE_INVISIBLE_MINIMUM var/playstyle_string = "You are the Slaughter Demon, a terible creature from another existence. You have a single desire: To kill. \ You may Ctrl+Click on blood pools to travel through them, appearing and dissaapearing from the station at will. \ Pulling a dead or critical mob while you enter a pool will pull them in with you, allowing you to feast. " +/mob/living/simple_animal/slaughter/Life() + ..() + if(boost Date: Fri, 31 Jul 2015 09:39:57 -0500 Subject: [PATCH 2/2] Updated playstyle string --- code/modules/mob/living/simple_animal/slaughter/slaughter.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm index d18181fb054..ff0c9866215 100644 --- a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm +++ b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm @@ -32,7 +32,8 @@ see_invisible = SEE_INVISIBLE_MINIMUM var/playstyle_string = "You are the Slaughter Demon, a terible creature from another existence. You have a single desire: To kill. \ You may Ctrl+Click on blood pools to travel through them, appearing and dissaapearing from the station at will. \ - Pulling a dead or critical mob while you enter a pool will pull them in with you, allowing you to feast. " + Pulling a dead or critical mob while you enter a pool will pull them in with you, allowing you to feast. \ + You move quickly upon leaving a pool of blood, but the material world will soon sap your strength and leave you sluggish. " /mob/living/simple_animal/slaughter/Life() ..()