mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-08 16:02:48 +00:00
* [MIRROR] Mob Ability Sequences Again Again (I swear this time) * [MIRROR] Fix: Cult construct can attack while their spells are on cooldown (All spells no longer have a Melee CD by default) [MDB IGNORE] * Update code/datums/actions/cooldown_action.dm
12 lines
468 B
Plaintext
12 lines
468 B
Plaintext
/datum/action/cooldown/mob_cooldown/dash_attack
|
|
name = "Dashing And Attacking"
|
|
icon_icon = 'icons/mob/actions/actions_items.dmi'
|
|
button_icon_state = "sniper_zoom"
|
|
desc = "Allows you to dash and fire at a target simultaneously."
|
|
cooldown_time = 3 SECONDS
|
|
shared_cooldown = MOB_SHARED_COOLDOWN_2
|
|
sequence_actions = list(
|
|
/datum/action/cooldown/mob_cooldown/dash = 0.1 SECONDS,
|
|
/datum/action/cooldown/mob_cooldown/projectile_attack/kinetic_accelerator = 0,
|
|
)
|