mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Balance tweaks
This commit is contained in:
parent
cbbbab6bff
commit
e37e4016d6
@ -1,19 +1,19 @@
|
||||
RapidMelee(
|
||||
buildup_duration: 0.2,
|
||||
swing_duration: 0.1,
|
||||
swing_duration: 0.15,
|
||||
recover_duration: 0.3,
|
||||
melee_constructor: (
|
||||
kind: Slash(
|
||||
damage: 3,
|
||||
damage: 2.5,
|
||||
poise: 1,
|
||||
knockback: 0,
|
||||
energy_regen: 2,
|
||||
),
|
||||
range: 5.0,
|
||||
range: 4.0,
|
||||
angle: 5.0,
|
||||
),
|
||||
energy_cost: 0,
|
||||
max_strikes: None,
|
||||
move_modifier: 0.35,
|
||||
ori_modifier: 0.25,
|
||||
move_modifier: 0.3,
|
||||
ori_modifier: 0.2,
|
||||
)
|
||||
|
@ -3,7 +3,7 @@ ChargedMelee(
|
||||
energy_drain: 0,
|
||||
melee_constructor: (
|
||||
kind: Slash(
|
||||
damage: 10,
|
||||
damage: 5,
|
||||
poise: 0,
|
||||
knockback: 0,
|
||||
energy_regen: 0,
|
||||
|
BIN
assets/voxygen/element/skills/sword/agile_feint.png
(Stored with Git LFS)
BIN
assets/voxygen/element/skills/sword/agile_feint.png
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/element/skills/sword/agile_flurry.png
(Stored with Git LFS)
BIN
assets/voxygen/element/skills/sword/agile_flurry.png
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/element/skills/sword/agile_quick_draw.png
(Stored with Git LFS)
BIN
assets/voxygen/element/skills/sword/agile_quick_draw.png
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/element/skills/sword/cleaving_blade_fever.png
(Stored with Git LFS)
BIN
assets/voxygen/element/skills/sword/cleaving_blade_fever.png
(Stored with Git LFS)
Binary file not shown.
@ -814,9 +814,13 @@ impl<'a> AgentData<'a> {
|
||||
> agent.action_state.counters[FloatCounters::GuardedTimer as usize]
|
||||
{
|
||||
agent.action_state.timers[Timers::GuardedCycle as usize] = 0.0;
|
||||
agent.action_state.counters[FloatCounters::GuardedTimer as usize] =
|
||||
rng.gen_range(3.0..6.0);
|
||||
agent.action_state.conditions[Conditions::GuardedDefend as usize] ^= true;
|
||||
agent.action_state.counters[FloatCounters::GuardedTimer as usize] =
|
||||
if agent.action_state.conditions[Conditions::GuardedDefend as usize] {
|
||||
rng.gen_range(3.0..6.0)
|
||||
} else {
|
||||
rng.gen_range(6.0..10.0)
|
||||
};
|
||||
}
|
||||
if let Some(pos) = agent.action_state.positions[Positions::GuardedCover as usize] {
|
||||
if pos.distance_squared(self.pos.0) < 3_f32.powi(2) {
|
||||
|
Loading…
Reference in New Issue
Block a user