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

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-06-11 19:51:46 -04:00
ComboMelee2(
strikes: [
(
melee_constructor: (
kind: Slash(
damage: 5,
poise: 5,
knockback: 0,
energy_regen: 0,
),
range: 3.5,
angle: 90.0,
damage_effect: Some(BuffsVulnerable(0.5, Parried)),
),
buildup_duration: 0.15,
swing_duration: 0.1,
hit_timing: 0.5,
recover_duration: 0.2,
),
(
melee_constructor: (
kind: Slash(
damage: 8,
poise: 5,
knockback: 0,
energy_regen: 0,
),
range: 3.5,
angle: 90.0,
damage_effect: Some(BuffsVulnerable(0.5, Parried)),
),
buildup_duration: 0.15,
swing_duration: 0.1,
hit_timing: 0.5,
2025-03-07 13:26:55 -05:00
recover_duration: 0.35,
2024-06-11 19:51:46 -04:00
),
],
energy_cost_per_strike: 2.5,
auto_progress: true,
meta: (
2025-03-07 13:26:55 -05:00
capabilities: ("BLOCKS"),
2024-06-11 19:51:46 -04:00
),
)