From bb74dd4adfe03c43260bf4c94a70c711ccc0e961 Mon Sep 17 00:00:00 2001 From: keronshb Date: Fri, 10 Sep 2021 12:01:46 -0400 Subject: [PATCH] Cap fix --- .../mob/living/simple_animal/hostile/plaguerat.dm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/plaguerat.dm b/code/modules/mob/living/simple_animal/hostile/plaguerat.dm index 43432394b7..2b92894317 100644 --- a/code/modules/mob/living/simple_animal/hostile/plaguerat.dm +++ b/code/modules/mob/living/simple_animal/hostile/plaguerat.dm @@ -14,8 +14,8 @@ GLOBAL_LIST_EMPTY(plague_rats) gender = NEUTER speak_chance = 1 turns_per_move = 5 - maxHealth = 20 - health = 20 + maxHealth = 100 + health = 100 see_in_dark = 6 obj_damage = 10 butcher_results = list(/obj/item/reagent_containers/food/snacks/meat/slab = 1) @@ -25,8 +25,8 @@ GLOBAL_LIST_EMPTY(plague_rats) response_disarm_simple = "skoff at" response_harm_continuous = "slashes" response_harm_simple = "slash" - melee_damage_lower = 5 - melee_damage_upper = 7 + melee_damage_lower = 6 + melee_damage_upper = 8 attack_verb_continuous = "slashes" attack_verb_simple = "slash" attack_sound = 'sound/weapons/punch1.ogg' @@ -137,7 +137,6 @@ GLOBAL_LIST_EMPTY(plague_rats) visible_message("[src] gnaws into its food, [cap] rats are now on the station!") return var/mob/living/newmouse = new /mob/living/simple_animal/hostile/plaguerat(loc) - GLOB.plague_rats += newmouse visible_message("[src] gnaws into its food, attracting another rat!") /mob/living/simple_animal/hostile/plaguerat/proc/exit_vents()