From b359bc663bc7c904063ca0a15a0b1ee588c183fb Mon Sep 17 00:00:00 2001 From: DZD Date: Thu, 26 Feb 2015 15:04:25 -0500 Subject: [PATCH] Swaps Xeno sentinel and hunter health values --- code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm | 4 ++-- .../mob/living/carbon/alien/humanoid/caste/sentinel.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm index 0adc5d9d775..7a607c72e77 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm @@ -1,8 +1,8 @@ /mob/living/carbon/alien/humanoid/hunter name = "alien hunter" caste = "h" - maxHealth = 150 - health = 150 + maxHealth = 125 + health = 125 storedPlasma = 100 max_plasma = 150 icon_state = "alienh_s" diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm index a06482242c2..5870ca062d8 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm @@ -1,8 +1,8 @@ /mob/living/carbon/alien/humanoid/sentinel name = "alien sentinel" caste = "s" - maxHealth = 125 - health = 125 + maxHealth = 150 + health = 150 storedPlasma = 100 max_plasma = 250 icon_state = "aliens_s"