mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
25 lines
562 B
Rust
25 lines
562 B
Rust
RepeaterRanged(
|
|
energy_cost: 6.0,
|
|
buildup_duration: 0.2,
|
|
shoot_duration: 0.3,
|
|
recover_duration: 0.5,
|
|
max_speed: 4.0,
|
|
half_speed_at: 3,
|
|
projectile: (
|
|
kind: Pointed,
|
|
attack: Some((
|
|
damage: 5,
|
|
energy: 0,
|
|
buff: Some((
|
|
kind: Bleeding,
|
|
dur_secs: 10,
|
|
strength: DamageFraction(0.1),
|
|
chance: 0.1,
|
|
)),
|
|
)),
|
|
),
|
|
projectile_body: Object(Arrow),
|
|
projectile_light: None,
|
|
projectile_speed: 100.0,
|
|
)
|