veloren/assets/common/abilities/sword/dash.ron

28 lines
627 B
Plaintext
Raw Normal View History

DashMelee(
2021-04-13 06:50:30 +00:00
energy_cost: 100,
base_damage: 8.0,
scaled_damage: 16.0,
2021-05-15 15:30:39 +00:00
base_poise_damage: 0,
scaled_poise_damage: 60,
base_knockback: 8.0,
scaled_knockback: 7.0,
2021-04-18 22:09:57 +00:00
range: 4.0,
angle: 60.0,
energy_drain: 300,
2021-04-13 06:50:30 +00:00
forward_speed: 3.0,
buildup_duration: 0.25,
2021-04-18 22:09:57 +00:00
charge_duration: 1.2,
swing_duration: 0.1,
recover_duration: 0.5,
ori_modifier: 0.3,
2021-04-18 22:09:57 +00:00
charge_through: true,
is_interruptible: true,
damage_kind: Piercing,
2021-07-10 16:04:12 +00:00
damage_effect: Some(Buff((
kind: Bleeding,
dur_secs: 10.0,
strength: DamageFraction(0.1),
chance: 0.1,
))),
2020-11-20 01:42:22 +00:00
)