veloren/assets/common/abilities/bowsimple/basic.ron

26 lines
602 B
Rust
Raw Normal View History

2021-02-11 04:04:03 +00:00
BasicRanged(
energy_cost: 0,
buildup_duration: 0.5,
recover_duration: 0.3,
2024-05-13 00:47:48 +00:00
projectile: (
kind: Pointed,
attack: Some((
damage: 3.5,
knockback: Some(5),
energy: 4,
buff: Some((
kind: Bleeding,
dur_secs: 10,
strength: DamageFraction(0.1),
chance: 0.1,
)),
)),
2021-02-11 04:04:03 +00:00
),
projectile_body: Object(Arrow),
projectile_light: None,
projectile_speed: 100.0,
2021-05-16 03:09:39 +00:00
num_projectiles: 1,
projectile_spread: 0.0,
2023-03-22 02:11:48 +00:00
move_efficiency: 0.3,
2021-02-11 04:04:03 +00:00
)