diff --git a/code/modules/hydroponics/grown/tomato.dm b/code/modules/hydroponics/grown/tomato.dm index a7b5ac741973..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 / 10) - K.melee_damage_upper += round(seed.potency / 10) + 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.")