Upgrades
Upgrades are modifiers that can improve Mr. Boulder’s and Critters & Vehicles’ stat in specific Chapter.
It is purchasable using Coins
One type of Upgrade can have multiple levels, each level can affect multiple attributes
Base Stat
Launching Power, determines maximum launching power
Max Speed, determines maximum speed Mr. Boulder can have before affected by Terminal Deceleration
Aerodynamics, determines the rate of deceleration Mr. Boulder have
Strength, determines how easy Mr. Boulder breaking the wall
Aerodynamics
A resistance that will reduce any slowdown applied by other entities except Massive Wall. The reduction is flat and clamped to 0.
Enemy Slowdown: finalEnemySlowdown = Max(enemySlowdown - slowResistance, 0) mcSpeed = mcSpeed - finalEnemySlowdown
Rolling Deceleration rollDeceleration = Max(terrainSlowdown - slowResistance, 0) mcSpeed = mcSpeed - rollDeceleration * deltaTime
Strength
A resistance that will reduce Massive Wall strength and speed reduction. The reduction is flat and clamped to a minimum value.
Massive Wall final wall strength finalWallStrength = Max(wallStrength - wallResistance, 0)
Pass / Stop mcSpeed > finalWallStrength + minWallStrength ? pass : stop
Speed after passing the wall mcSpeed = Max(mcSpeed - finalWallStrength, minWallStrength)
Limit Break
Last updated