mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Undo mistake, axe ability corrected.
Axe m2 cost 0 -> 100 Axe m2 dmg 8 -> 12
This commit is contained in:
parent
233595737e
commit
02b29efbfc
@ -87,19 +87,19 @@ impl ToolData {
|
|||||||
needs_timing: true,
|
needs_timing: true,
|
||||||
},
|
},
|
||||||
BasicMelee {
|
BasicMelee {
|
||||||
energy_cost: 0,
|
energy_cost: 100,
|
||||||
buildup_duration: Duration::from_millis(700),
|
buildup_duration: Duration::from_millis(700),
|
||||||
recover_duration: Duration::from_millis(100),
|
recover_duration: Duration::from_millis(100),
|
||||||
base_healthchange: -8,
|
base_healthchange: -12,
|
||||||
range: 3.5,
|
range: 3.5,
|
||||||
max_angle: 30.0,
|
max_angle: 30.0,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
Hammer(_) => vec![BasicMelee {
|
Hammer(_) => vec![BasicMelee {
|
||||||
energy_cost: 50,
|
energy_cost: 0,
|
||||||
buildup_duration: Duration::from_millis(700),
|
buildup_duration: Duration::from_millis(700),
|
||||||
recover_duration: Duration::from_millis(300),
|
recover_duration: Duration::from_millis(300),
|
||||||
base_healthchange: -15,
|
base_healthchange: -10,
|
||||||
range: 3.5,
|
range: 3.5,
|
||||||
max_angle: 60.0,
|
max_angle: 60.0,
|
||||||
}],
|
}],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user