veloren/assets/common/abilities/sword/spin.ron
Sam e98edbcc7a Conversion of poise damage to health damage now scales depending on the poise state the target is in.
Entities are now immune to poise damage for 1 second after exiting a poise state.
Rebalanced most phyiscal damage attacks on player-accessible tools.
2022-01-12 22:18:59 -05:00

25 lines
590 B
Rust

SpinMelee(
buildup_duration: 0.35,
swing_duration: 0.4,
recover_duration: 0.5,
base_damage: 13.0,
base_poise_damage: 0,
knockback: ( strength: 10.0, direction: Away),
range: 3.5,
damage_effect: Some(Buff((
kind: Bleeding,
dur_secs: 10.0,
strength: DamageFraction(0.1),
chance: 0.1,
))),
energy_cost: 20.0,
is_infinite: false,
movement_behavior: ForwardGround,
is_interruptible: true,
forward_speed: 1.0,
num_spins: 3,
specifier: None,
target: Some(OutOfGroup),
damage_kind: Slashing,
)