group_bot/assets/common/abilities/hammer/dual_upheaval.ron

37 lines
814 B
Plaintext
Raw Normal View History

2024-06-11 19:51:46 -04:00
BasicMelee(
2025-03-07 13:26:55 -05:00
energy_cost: 15,
buildup_duration: 0.4,
swing_duration: 0.2,
2024-06-11 19:51:46 -04:00
hit_timing: 0.5,
2025-03-07 13:26:55 -05:00
recover_duration: 0.3,
2024-06-11 19:51:46 -04:00
melee_constructor: (
kind: Bash(
2025-03-07 13:26:55 -05:00
damage: 26,
poise: 23,
2024-06-11 19:51:46 -04:00
knockback: 0,
energy_regen: 0,
),
2025-03-07 13:26:55 -05:00
range: 3.5,
2024-06-11 19:51:46 -04:00
angle: 20,
multi_target: Some(Normal),
damage_effect: Some(Buff((
kind: Staggered,
dur_secs: 10.0,
2025-03-07 13:26:55 -05:00
strength: Value(0.6),
2024-06-11 19:51:46 -04:00
chance: 1.0,
))),
attack_effect: Some((
Knockback((
direction: Up,
2025-03-07 13:26:55 -05:00
strength: 15,
2024-06-11 19:51:46 -04:00
)),
AnyDamage,
)),
),
2025-03-07 13:26:55 -05:00
ori_modifier: (
buildup: Some(0.2),
swing: Some(0.2),
recover: Some(0.2),
),
2024-06-11 19:51:46 -04:00
)