From c3ef5edcbf28c5e0135d01e7abe882eb94b8e74f Mon Sep 17 00:00:00 2001 From: CyberSpyXD <52309324+CyberSpyXD@users.noreply.github.com> Date: Mon, 24 Jun 2024 06:17:31 -0400 Subject: [PATCH] Gremorian Warriors/Workers Use Simple Melee AI (#19512) Changes their smart melee var with the idea that warriors go for brute strength over strategy and the workers are more simple in how they want to spread the infestation. Makes the former a little different from most of the usual greimorians and the latter less punishing when it comes to spread. --------- Co-authored-by: WickedCybs --- .../mob/living/simple_animal/hostile/giant_spider.dm | 4 ++++ html/changelogs/gremsoul_wickedcybs.yml | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 html/changelogs/gremsoul_wickedcybs.yml diff --git a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm index b77bac1b921..aa4fe0d0b99 100644 --- a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm +++ b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm @@ -44,6 +44,7 @@ move_to_delay = 6 speed = 3 mob_size = 6 + smart_melee = FALSE attacktext = "bitten" attack_emote = "skitters toward" @@ -110,6 +111,7 @@ armor_penetration = 15 poison_per_bite = 5 move_to_delay = 4 + smart_melee = TRUE /mob/living/simple_animal/hostile/giant_spider/emp name = "greimorian jackal" @@ -125,6 +127,7 @@ poison_type = /singleton/reagent/perconol // mildly beneficial for organics poison_per_bite = 2 move_to_delay = 5 + smart_melee = TRUE /mob/living/simple_animal/hostile/giant_spider/bombardier name = "greimorian bombardier" @@ -142,6 +145,7 @@ poison_type = /singleton/reagent/capsaicin/condensed poison_per_bite = 2 move_to_delay = 5 + smart_melee = TRUE /mob/living/simple_animal/hostile/giant_spider/bombardier/Shoot(var/target, var/start, var/mob/user, var/bullet = 0) if(target == start) diff --git a/html/changelogs/gremsoul_wickedcybs.yml b/html/changelogs/gremsoul_wickedcybs.yml new file mode 100644 index 00000000000..61185e6aac3 --- /dev/null +++ b/html/changelogs/gremsoul_wickedcybs.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - balance: "Gremorian warriors and workers now have simpler melee AI. The former relies on raw strength over strategy and the latter is single-minded in its pursuit of spreading infestation." \ No newline at end of file