group_bot/assets/common/abilities/sword/cleaving_sky_splitter.ron

26 lines
716 B
Plaintext
Raw Normal View History

2024-06-11 19:51:46 -04:00
// TODO: When melee system supports it, make this attack hit front, above head, and back
ComboMelee2(
strikes: [
(
melee_constructor: (
kind: Slash(
2025-03-07 13:26:55 -05:00
damage: 22,
2024-06-11 19:51:46 -04:00
poise: 20,
knockback: 15,
energy_regen: 0,
),
range: 4.0,
angle: 30.0,
multi_target: Some(Normal),
),
buildup_duration: 0.2,
swing_duration: 0.1,
hit_timing: 0.5,
recover_duration: 0.5,
),
],
2025-03-07 13:26:55 -05:00
energy_cost_per_strike: 15,
2024-06-11 19:51:46 -04:00
meta: (
requirements: (stance: Some(Sword(Cleaving))),
),
)