mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-08-22 10:24:42 -05:00
Rebalanced Items & Bug Fixed
I updated the player prefabs to be more in line with one another and increased the max speed they can have
This commit is contained in:
@@ -35,12 +35,12 @@ public class Nitro : MonoBehaviour
|
||||
if(isNitroing){
|
||||
if(tempTimer > 0){
|
||||
|
||||
tempTimer -= .01f;
|
||||
tempTimer -= .02f;
|
||||
|
||||
Debug.Log("nitro is on");
|
||||
|
||||
if(playerStats.CurVel < playerStats.HardCapMaxVel){
|
||||
playerStats.CurVel += playerStats.Acc * 10;
|
||||
playerStats.CurVel += playerStats.Acc * 50;
|
||||
}
|
||||
else if(playerStats.CurVel > playerStats.HardCapMaxVel){
|
||||
playerStats.CurVel = playerStats.HardCapMaxVel;
|
||||
|
||||
@@ -19,10 +19,10 @@ MonoBehaviour:
|
||||
maxVelM: 15
|
||||
minVelM: 0
|
||||
curVelM: 0
|
||||
accM: 0.3
|
||||
accM: 0.1
|
||||
jumpPowM: 0
|
||||
jumpNumM: 0
|
||||
tractionM: -2.2
|
||||
tractionM: -4
|
||||
kickPowM: 0
|
||||
recovTimeM: 0
|
||||
playerGravM: 0
|
||||
|
||||
@@ -23,7 +23,7 @@ MonoBehaviour:
|
||||
jumpPowM: 0
|
||||
jumpNumM: 0
|
||||
tractionM: 0
|
||||
kickPowM: 500
|
||||
kickPowM: 700
|
||||
recovTimeM: 0
|
||||
playerGravM: 0
|
||||
costM: 3
|
||||
|
||||
Reference in New Issue
Block a user