veloren/assets/common/abilities/axe/triple_chop.ron

56 lines
1.4 KiB
Rust
Raw Normal View History

2023-05-12 00:54:09 +00:00
ComboMelee2(
strikes: [
(
melee_constructor: (
kind: Slash(
damage: 4,
poise: 5,
knockback: 0,
energy_regen: 7,
2023-05-12 00:54:09 +00:00
),
range: 3.0,
2023-05-14 22:07:45 +00:00
angle: 30.0,
2023-05-12 00:54:09 +00:00
),
buildup_duration: 0.15,
swing_duration: 0.05,
hit_timing: 0.5,
recover_duration: 0.1,
ori_modifier: 0.6,
),
2023-05-13 15:30:59 +00:00
(
melee_constructor: (
kind: Slash(
damage: 4,
poise: 5,
knockback: 0,
energy_regen: 7,
2023-05-13 15:30:59 +00:00
),
range: 3.0,
2023-05-14 22:07:45 +00:00
angle: 30.0,
2023-05-13 15:30:59 +00:00
),
buildup_duration: 0.15,
swing_duration: 0.05,
hit_timing: 0.5,
recover_duration: 0.1,
ori_modifier: 0.6,
),
(
melee_constructor: (
kind: Slash(
damage: 8,
poise: 5,
knockback: 0,
energy_regen: 7,
2023-05-13 15:30:59 +00:00
),
range: 3.0,
2023-05-14 22:07:45 +00:00
angle: 10.0,
2023-05-13 15:30:59 +00:00
),
buildup_duration: 0.2,
swing_duration: 0.05,
hit_timing: 0.5,
recover_duration: 0.15,
ori_modifier: 0.6,
),
2023-05-12 00:54:09 +00:00
],
energy_cost_per_strike: 0,
)