veloren/assets/common/abilities/custom/dagon/dagonbombs.ron

31 lines
742 B
Rust
Raw Normal View History

2022-08-24 21:50:53 +00:00
BasicRanged(
energy_cost: 0,
2022-09-22 01:04:01 +00:00
buildup_duration: 0.5,
recover_duration: 1.5,
2024-05-13 00:47:48 +00:00
projectile: (
kind: Explosive(
radius: 5,
min_falloff: 0.1,
reagent: Some(Blue),
terrain: Some((25, Black)),
),
attack: Some((
damage: 32,
knockback: Some(15),
energy: 0,
buff: Some((
kind: Burning,
dur_secs: 5,
strength: DamageFraction(0.2),
chance: 1.0,
)),
)),
2022-08-24 21:50:53 +00:00
),
projectile_body: Object(DagonBomb),
projectile_light: None,
2022-09-22 01:04:01 +00:00
projectile_speed: 20.0,
2022-08-24 21:50:53 +00:00
num_projectiles: 1,
projectile_spread: 0.0,
2023-03-22 02:11:48 +00:00
move_efficiency: 0.3,
2022-08-24 21:50:53 +00:00
)