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

28 lines
759 B
Rust
Raw Normal View History

2023-05-12 00:54:09 +00:00
ComboMelee2(
strikes: [
(
melee_constructor: (
kind: Slash(
2023-06-08 01:06:55 +00:00
damage: 16,
2023-05-19 01:37:59 +00:00
poise: 10,
2023-05-12 00:54:09 +00:00
knockback: 0,
2023-05-19 01:37:59 +00:00
energy_regen: 0,
2023-05-12 00:54:09 +00:00
),
range: 3.0,
angle: 45.0,
2023-05-19 01:37:59 +00:00
damage_effect: Some(Buff((
kind: Bleeding,
dur_secs: 8.0,
strength: DamageFraction(0.25),
chance: 1.0,
))),
2023-05-12 00:54:09 +00:00
),
2023-05-19 01:37:59 +00:00
buildup_duration: 0.3,
swing_duration: 0.1,
2023-05-12 00:54:09 +00:00
hit_timing: 0.5,
2023-05-19 01:37:59 +00:00
recover_duration: 0.3,
2023-05-12 00:54:09 +00:00
ori_modifier: 0.6,
),
],
2023-06-08 01:06:55 +00:00
energy_cost_per_strike: 12,
2023-05-12 00:54:09 +00:00
)