veloren/assets/common/abilities/sceptre/healingbomb.ron
iOddishGX 31e2e93786 Lowered the energy cost from 80 to 40
Increased the healing multiplier
Lowered the damage output
Increased the radius
Made the projectile slightly faster
2020-12-01 20:01:24 +00:00

18 lines
440 B
Plaintext

BasicRanged(
energy_cost: 400,
buildup_duration: 800,
recover_duration: 50,
projectile: Heal(
heal: 100.0,
damage: 50.0,
radius: 6.0,
),
projectile_body: Object(BoltNature),
/*projectile_light: Some(LightEmitter {
col: (0.0, 1.0, 0.0).into(),
..Default::default()
}),*/
projectile_gravity: Some(Gravity(0.5)),
projectile_speed: 40.0,
can_continue: false,
)