From 97cd9d6fd7f94c023f32d088aae079cd7f194cc4 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 28 Feb 2019 13:30:22 +0100 Subject: [PATCH] HOSTILE SPOTTED --- code/modules/mob/living/simple_animal/animals/tomato.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/modules/mob/living/simple_animal/animals/tomato.dm b/code/modules/mob/living/simple_animal/animals/tomato.dm index 037726e40f..5b89e304a7 100644 --- a/code/modules/mob/living/simple_animal/animals/tomato.dm +++ b/code/modules/mob/living/simple_animal/animals/tomato.dm @@ -75,4 +75,13 @@ say_got_target = list() // List of things to say when they engage a target reactions = list("chomp" = "!chomps",) // List of "string" = "reaction" and things they hear will be searched for string. + //Hostility war bloodshed, RAWR + hostile = 1 // Do I even attack? + view_range = 2 // Scan for targets in this range. + investigates = 1 // Do I investigate if I saw someone briefly? + cooperative = 1 // Do I ask allies to help me? + assist_distance = 2 // Radius in which I'll ask my comrades for help. + grab_resist = 100 // Chance of me resisting a grab attempt. + taser_kill = 1 // Is the mob weak to tasers + //When I stop being lazy I'll give this its own file -Shark