Rebalanced GATES gains and reduced boost timers

Reduced top-speed from 100%+ to 75%+, reduced handling buff from 50%+ to 25%+, reduced boost-time on gates to half the time.
This commit is contained in:
VelocitOni 2022-09-22 00:00:32 -04:00
parent 5cbaeb5835
commit d9beb0daa6
2 changed files with 2 additions and 2 deletions

View file

@ -3293,7 +3293,7 @@ static void K_GetKartBoostPower(player_t *player)
if (player->gateBoost) // SPB Juicebox boost
{
ADDBOOST(FRACUNIT, 4*FRACUNIT, sliptidehandling); // + 100% top speed, + 400% acceleration, +50% handling
ADDBOOST(3*FRACUNIT/4, 4*FRACUNIT, sliptidehandling/2); // + 75% top speed, + 400% acceleration, +25% handling
}
if (player->ringboost) // Ring Boost

View file

@ -121,7 +121,7 @@ static void Obj_MantaCollide(mobj_t *manta, mobj_t *other)
if (other->player != NULL)
{
other->player->gateBoost += addBoost;
other->player->gateBoost += addBoost/2;
if (P_IsDisplayPlayer(other->player) == true)
{