# Acceleration

Acceleration includes <mark style="color:yellow;">Max Acceleration</mark> and <mark style="color:yellow;">Max Deceleration</mark>**.** <mark style="color:yellow;">Max Acceleration</mark> is the highest rate at which your alpaca can increase its speed, which is particularly useful after obstacles or turns to quickly regain speed. <mark style="color:yellow;">Max Deceleration</mark> is the rate at which your alpaca can decrease its speed, which is beneficial before obstacles and turns, allowing your alpaca to reduce speed more efficiently and navigate these challenges safely\
\\

### Acceleration Stat Conversion

| Stat                     | Min - 0 | Max - 100 |
| ------------------------ | ------- | --------- |
| Max Acceleration         | 1       | 2         |
| Max Deceleration (Lap 1) | 1       | 2         |
| Max Deceleration (Lap 2) | 0.9     | 2         |

$$
MaxAcceleration = 1 + (Acceleration /100)
$$

***

Max Deceleration 1 Lap:

$$
MaxDeceleration = 1 + (Acceleration/100)
$$

Max Deceleration 2 Laps:

$$
MaxDeceleration = 0.9 + (((Max - Min) \* Acceleration) / 100)
$$

$$
MaxDeceleration = 0.9 + ((1.1 \* Acceleration) / 100)
$$
