From b3348a3db3816b1aa87f2784128dd71bb2d9a73f Mon Sep 17 00:00:00 2001
From: boodaliboo <40642354+boodaliboo@users.noreply.github.com>
Date: Wed, 20 May 2020 23:43:28 -0700
Subject: [PATCH 1/2] Update tomato.dm
---
code/modules/hydroponics/grown/tomato.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/modules/hydroponics/grown/tomato.dm b/code/modules/hydroponics/grown/tomato.dm
index a7b5ac741973..bb7be49da9f4 100644
--- a/code/modules/hydroponics/grown/tomato.dm
+++ b/code/modules/hydroponics/grown/tomato.dm
@@ -138,8 +138,8 @@
if(!QDELETED(src))
var/mob/living/simple_animal/hostile/killertomato/K = new /mob/living/simple_animal/hostile/killertomato(get_turf(src.loc))
K.maxHealth += round(seed.endurance / 3)
- K.melee_damage_lower += round(seed.potency / 10)
- K.melee_damage_upper += round(seed.potency / 10)
+ K.melee_damage_lower += round(seed.potency / 20)
+ K.melee_damage_upper += round(seed.potency / 20)
K.move_to_delay -= round(seed.production / 50)
K.health = K.maxHealth
K.visible_message("The Killer Tomato growls as it suddenly awakens.")
From bee8c68414163c70ad90019ad712c3fa7e372a36 Mon Sep 17 00:00:00 2001
From: boodaliboo <40642354+boodaliboo@users.noreply.github.com>
Date: Thu, 21 May 2020 09:53:49 -0700
Subject: [PATCH 2/2] changed it from 20 to 15
---
code/modules/hydroponics/grown/tomato.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/modules/hydroponics/grown/tomato.dm b/code/modules/hydroponics/grown/tomato.dm
index bb7be49da9f4..33080bdaf811 100644
--- a/code/modules/hydroponics/grown/tomato.dm
+++ b/code/modules/hydroponics/grown/tomato.dm
@@ -138,8 +138,8 @@
if(!QDELETED(src))
var/mob/living/simple_animal/hostile/killertomato/K = new /mob/living/simple_animal/hostile/killertomato(get_turf(src.loc))
K.maxHealth += round(seed.endurance / 3)
- K.melee_damage_lower += round(seed.potency / 20)
- K.melee_damage_upper += round(seed.potency / 20)
+ K.melee_damage_lower += round(seed.potency / 15)
+ K.melee_damage_upper += round(seed.potency / 15)
K.move_to_delay -= round(seed.production / 50)
K.health = K.maxHealth
K.visible_message("The Killer Tomato growls as it suddenly awakens.")