mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
double ring hitbox, buff ring boost to 20% top speed increase
This commit is contained in:
parent
9b66e419f1
commit
4a68f98dc2
2 changed files with 3 additions and 3 deletions
|
|
@ -5451,7 +5451,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
||||||
S_NULL, // xdeathstate
|
S_NULL, // xdeathstate
|
||||||
sfx_itemup, // deathsound
|
sfx_itemup, // deathsound
|
||||||
38*FRACUNIT, // speed
|
38*FRACUNIT, // speed
|
||||||
24*FRACUNIT, // radius
|
48*FRACUNIT, // radius
|
||||||
48*FRACUNIT, // height
|
48*FRACUNIT, // height
|
||||||
0, // display offset
|
0, // display offset
|
||||||
100, // mass
|
100, // mass
|
||||||
|
|
|
||||||
|
|
@ -1964,7 +1964,7 @@ static void K_GetKartBoostPower(player_t *player)
|
||||||
|
|
||||||
if (player->kartstuff[k_invincibilitytimer]) // Invincibility
|
if (player->kartstuff[k_invincibilitytimer]) // Invincibility
|
||||||
{
|
{
|
||||||
speedboost = max(speedboost, 3*FRACUNIT/8); // + 37.5%
|
speedboost = max(speedboost, (3*FRACUNIT)/8); // + 37.5%
|
||||||
accelboost = max(accelboost, 3*FRACUNIT); // + 300%
|
accelboost = max(accelboost, 3*FRACUNIT); // + 300%
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1975,7 +1975,7 @@ static void K_GetKartBoostPower(player_t *player)
|
||||||
|
|
||||||
if (player->kartstuff[k_ringboost]) // Ring Boost
|
if (player->kartstuff[k_ringboost]) // Ring Boost
|
||||||
{
|
{
|
||||||
speedboost = max(speedboost, FRACUNIT/8); // + 12.5%
|
speedboost = max(speedboost, FRACUNIT/5); // + 20%
|
||||||
accelboost = max(accelboost, 2*FRACUNIT); // + 200%
|
accelboost = max(accelboost, 2*FRACUNIT); // + 200%
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue