Fix accidental removal of knockback reduction for Warriors while blocking. Also add in knockup reduction for Warrior block. Release Build 9484.

sigonasr2 10 months ago
parent d07d571f3c
commit b9cdfb923d
  1. 2
      Adventures in Lestoria/Player.cpp
  2. 4
      Adventures in Lestoria/assets/config/classes/Warrior.txt

@ -309,6 +309,7 @@ void Player::Knockback(vf2d vel){
//A new angle will be applied, but will be constrained by whichever applied velocity is strongest (either the current velocity, or the new one). This prevents continuous uncapped velocities to knockbacks applied.
if(vel==vf2d{})return;
float maxVelThreshold;
if(GetState()==State::BLOCK)vel*=1-("Warrior.Right Click Ability.Knockback Reduction"_I/100.f);
if(this->vel==vf2d{})maxVelThreshold=vel.mag();
else maxVelThreshold=std::max(vel.mag(),this->vel.mag());
this->vel+=vel;
@ -1446,6 +1447,7 @@ geom2d::circle<float>Player::Hitbox(){
}
void Player::Knockup(float duration){
if(GetState()==State::BLOCK)duration*=1-("Warrior.Right Click Ability.Knockup Reduction"_I/100.f);
knockUpTimer+=duration;
totalKnockupTime+=duration;
knockUpZAmt+=32*pow(duration,2);

@ -49,6 +49,10 @@ Warrior
# Percentage of player's normal movement speed while block is active.
SlowAmt = 0.3
# Percentage of knockback that gets reduced while blocking.
Knockback Reduction = 60%
Knockup Reduction = 60%
}
Ability 1
{

Loading…
Cancel
Save