veloren/assets/common/abilities/hammersimple/doublestrike.ron

46 lines
1.1 KiB
Rust
Raw Normal View History

2023-12-29 00:02:10 +00:00
ComboMelee2(
strikes: [
2021-02-11 04:04:03 +00:00
(
2023-12-29 00:02:10 +00:00
melee_constructor: (
kind: Bash(
damage: 24,
poise: 40,
knockback: 4,
energy_regen: 0,
),
range: 4.5,
angle: 50.0,
),
buildup_duration: 0.6,
swing_duration: 0.08,
hit_timing: 0.5,
2023-12-29 00:02:10 +00:00
recover_duration: 0.6,
movement: (
swing: Some(Forward(3.5)),
),
ori_modifier: 0.65,
2021-02-11 04:04:03 +00:00
),
(
2023-12-29 00:02:10 +00:00
melee_constructor: (
kind: Bash(
damage: 32,
poise: 40,
knockback: 16,
energy_regen: 0,
),
range: 2.5,
angle: 30.0,
),
buildup_duration: 0.6,
swing_duration: 0.25,
hit_timing: 0.5,
2023-12-29 00:02:10 +00:00
recover_duration: 1.2,
movement: (
swing: Some(Forward(2.0)),
),
ori_modifier: 0.65,
2021-02-11 04:04:03 +00:00
),
],
2023-12-29 00:02:10 +00:00
energy_cost_per_strike: 0,
)