veloren/assets/common/abilities/custom/frostwyvern/triplestrike.ron

66 lines
1.7 KiB
Rust
Raw Normal View History

2023-08-02 07:55:10 +00:00
ComboMelee2(
strikes: [
2023-01-28 21:25:17 +00:00
(
2023-08-02 07:55:10 +00:00
melee_constructor: (
kind: Slash(
damage: 20,
poise: 0,
knockback: 5,
energy_regen: 0,
),
range: 4.5,
angle: 30.0,
),
buildup_duration: 0.8,
swing_duration: 0.1,
2023-01-28 21:25:17 +00:00
hit_timing: 0.5,
2023-08-02 07:55:10 +00:00
recover_duration: 0.6,
movement: (
swing: Some(Forward(2.0)),
),
ori_modifier: 0.7,
2023-01-28 21:25:17 +00:00
),
(
2023-08-02 07:55:10 +00:00
melee_constructor: (
kind: Slash(
damage: 16,
poise: 0,
knockback: 5,
energy_regen: 0,
),
range: 3.5,
angle: 30.0,
),
2024-02-14 23:23:29 +00:00
buildup_duration: 1.1,
swing_duration: 0.4,
2023-01-28 21:25:17 +00:00
hit_timing: 0.5,
2023-08-02 07:55:10 +00:00
recover_duration: 0.6,
movement: (
swing: Some(Forward(2.0)),
),
ori_modifier: 0.7,
2023-01-28 21:25:17 +00:00
),
(
2023-08-02 07:55:10 +00:00
melee_constructor: (
kind: Slash(
damage: 26,
poise: 0,
knockback: 10,
energy_regen: 0,
),
range: 3.5,
angle: 30.0,
),
2024-02-14 23:23:29 +00:00
buildup_duration: 0.7,
swing_duration: 0.4,
2023-01-28 21:25:17 +00:00
hit_timing: 0.5,
2023-08-02 07:55:10 +00:00
recover_duration: 0.6,
movement: (
swing: Some(Forward(1.5)),
),
ori_modifier: 0.7,
2023-01-28 21:25:17 +00:00
),
],
2023-08-02 07:55:10 +00:00
energy_cost_per_strike: 0,
auto_progress: true,
)