Port goliaths to basic mobs, Round 2 (#30566)

* Port goliaths to basic mobs.

* linting whitespace

* more linting

* wtf

* Addresses reviews on prior PR, adjusts behavior for food searching

* Missing Comma

* Goliath aggro range

* Reduces goliath speed to 5 from 3

---------

Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com>
Co-authored-by: warriorstar-orion <orion@snowfrost.garden>
This commit is contained in:
PollardTheDragon
2025-10-21 19:27:27 +00:00
committed by GitHub
co-authored by warriorstar-orion
parent 28f7414c64
commit dc3f8f6cc9
26 changed files with 541 additions and 235 deletions
+8
View File
@@ -53,6 +53,8 @@
#define BB_OBSTACLE_TARGETING_WHITELIST "BB_targeting_whitelist"
/// some behaviors that check current_target also set this on deep crit mobs
#define BB_BASIC_MOB_EXECUTION_TARGET "BB_basic_execution_target"
/// Blackboard key storing how long your targeting strategy has held a particular target
#define BB_BASIC_MOB_HAS_TARGET_TIME "BB_BASIC_MOB_HAS_TARGET_TIME"
//Hunting BB keys
@@ -230,3 +232,9 @@
// Malf Drones
/// Are we active?
#define BB_MALF_DRONE_PASSIVE "BB_MALF_DRONE_PASSIVE"
// Goliath AI keys
/// Key where we store the tentacleing ability
#define BB_GOLIATH_TENTACLES "BB_GOLIATH_TENTACLES"
/// Key where goliath stores a hole it wants to get into
#define BB_GOLIATH_HOLE_TARGET "BB_GOLIATH_HOLE"
+10
View File
@@ -279,5 +279,15 @@
/// From base of /datum/action/cooldown/proc/set_statpanel_format(): (list/stat_panel_data)
#define COMSIG_ACTION_SET_STATPANEL "ability_set_statpanel"
/// Fired by a mob which has been grabbed by a goliath
#define COMSIG_GOLIATH_TENTACLED_GRABBED "goliath_tentacle_grabbed"
/// Fired by a goliath tentacle which is returning to the earth
#define COMSIG_GOLIATH_TENTACLE_RETRACTING "goliath_tentacle_retracting"
/// Called from /mob/living/carbon/help_shake_act, before any hugs have occurred. (mob/living/helper)
#define COMSIG_CARBON_PRE_MISC_HELP "carbon_pre_misc_help"
/// Stops the rest of help act (hugging, etc) from occurring
#define COMPONENT_BLOCK_MISC_HELP (1<<0)
/// From base of /client/Move(): (direction, old_dir)
#define COMSIG_MOB_CLIENT_MOVED "mob_client_moved"