mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
303f03dd3a
Frost breath: - ori_rate reduced from 0.6 to 0.1 - time of breath increased from 1 second to 2 seconds - buildup increased from 0.4 to 0.8 - make it more gentle, with less damage per tick, but faster tick rate (50 * 1 to 10 * 5) - make Frozen debuff strength smoler, 1.5 to 0.5 and make it chance to apply debuff. - make him use it when closer range (10 and not 15) Ice spikes: - increase recovery_duration from 0.3 to 1.0 - make him slower while doing ice spikes, make ice spikes move slower - make him use it when closer range (15 and not 20) Snowball: - increase recover_duration from 0.4 to 0.9 Strike: - increase buildup_duration fron 0.6 to 0.8 - increase recover_duration from 0.5 to 1.0 - increase knockback from 40.0 to 70.0
21 lines
421 B
Plaintext
21 lines
421 B
Plaintext
BasicBeam(
|
|
buildup_duration: 0.8,
|
|
recover_duration: 0.25,
|
|
beam_duration: 0.25,
|
|
damage: 10,
|
|
tick_rate: 5.0,
|
|
range: 15.0,
|
|
max_angle: 30.0,
|
|
damage_effect: Some(Buff((
|
|
kind: Frozen,
|
|
dur_secs: 3.0,
|
|
strength: Value(0.5),
|
|
chance: 0.2,
|
|
))),
|
|
energy_regen: 0,
|
|
energy_drain: 0,
|
|
orientation_behavior: FromOri,
|
|
ori_rate: 0.1,
|
|
specifier: Frost,
|
|
)
|