mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 15:17:01 +01:00
Hot Ice Firebot tweaks (#5082)
## About The Pull Request Cooldown between using of the foam 5s->8s Range of the foam 5->7 Increased the temperature range in which firebot will not use the foam Changed color of the foam ## Why It's Good For The Game Hot Ice Firebots proved to be real good at doing their job, these tweaks are there to slightly reduce their 'power' and so they don't spam the foam as much ## Proof Of Testing <img width="479" height="461" alt="image" src="https://github.com/user-attachments/assets/53b9a460-9227-4316-a159-41db8cd65f7e" /> ## Changelog 🆑 balance: Firebots with Hot Ice foam cooldown 5s->8s, range 5->7, changed color of the foam to reflect the upgrade /🆑
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
//Air alarms will trigger above this temperature
|
||||
#define AIRALARM_TLV_TEMP_WARN_MAX (BODYTEMP_HEAT_WARNING_1 - 27)
|
||||
//Firebots with hot ice witll use their foam below this temperature
|
||||
#define FIREBOT_HOTICE_TLV_TEMP_WARN_MIN (AIRALARM_TLV_TEMP_WARN_MIN + 13)
|
||||
#define FIREBOT_HOTICE_TLV_TEMP_WARN_MIN (AIRALARM_TLV_TEMP_WARN_MIN + 11)
|
||||
//Firebots with hot ice witll use their foam above this temperature
|
||||
#define FIREBOT_HOTICE_TLV_TEMP_WARN_MAX (AIRALARM_TLV_TEMP_WARN_MAX - 13)
|
||||
#define FIREBOT_HOTICE_TLV_TEMP_WARN_MAX (AIRALARM_TLV_TEMP_WARN_MAX - 11)
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
if(!COOLDOWN_FINISHED(src, foam_cooldown))
|
||||
return
|
||||
var/datum/effect_system/fluid_spread/foam/firefighting_freon/foam = new
|
||||
foam.set_up(5, holder = src, location = loc)
|
||||
foam.set_up(7, holder = src, location = loc)
|
||||
foam.start()
|
||||
|
||||
COOLDOWN_START(src, foam_cooldown, 5 SECONDS)
|
||||
COOLDOWN_START(src, foam_cooldown, 8 SECONDS)
|
||||
|
||||
/mob/living/basic/bot/firebot/hotice_upgrade/update_overlays()
|
||||
. = ..()
|
||||
@@ -45,6 +45,7 @@
|
||||
/obj/effect/particle_effect/fluid/foam/firefighting_freon/Initialize(mapload)
|
||||
. = ..()
|
||||
RemoveElement(/datum/element/atmos_sensitive)
|
||||
src.add_atom_colour("#00fff7", FIXED_COLOUR_PRIORITY)
|
||||
|
||||
/obj/effect/particle_effect/fluid/foam/firefighting_freon/process()
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user