Movement Slow: Difference between revisionsGive feedback
Fixed the number. Probably need to simplify the math formula on this page at some point. |
Redid math section and simplified the main formula. |
||
| Line 6: | Line 6: | ||
* The displayed speed in-game in m/s is rounded to the nearest decimal for all numbers under 10 m/s. | * The displayed speed in-game in m/s is rounded to the nearest decimal for all numbers under 10 m/s. | ||
== | == Calculation == | ||
=== Stacking Multiple Slows === | |||
While abilities and items display slow percentages (e.g., 30%), multiple sources of movement slow do not simply add together. Instead, they stack '''multiplicatively'''. | |||
To find your total slow percentage, use the following formula: | |||
<math>\text{Total Slow} = 1 - (1 - \text{Slow}_1) \times (1 - \text{Slow}_2) \times ...</math> | |||
'''Example:''' | |||
If you are affected by two slows, one providing '''30%''' and another providing '''25%''': | |||
# Convert percentages to decimals: 0.30 and 0.25. | |||
# Subtract from 1: (1 - 0.30) = '''0.70''' and (1 - 0.25) = '''0.75'''. | |||
# Multiply the remainders: 0.70 × 0.75 = '''0.525'''. | |||
# Subtract from 1: 1 - 0.525 = '''0.475'''. | |||
# Your Total Slow is '''47.5%'''. | |||
=== Calculating Final Speed === | |||
Once you have the total slow percentage, apply it to your speed. However, movement slow is calculated using 2.0 m/s as a floor - you cannot be slowed below this speed. | |||
= | <math>\text{Slowed Speed} = ((\text{Current Speed} - 2) \times (1 - \text{Total Slow})) + 2</math> | ||
'''Example:''' | |||
If you are moving at '''10 m/s''' and have '''50%''' total slow: | |||
# Subtract the floor: 10 - 2 = '''8'''. | |||
# Apply the slow: 8 × (1 - 0.50) = 8 × 0.50 = '''4'''. | |||
# Add the floor back: 4 + 2 = '''6 m/s'''. | |||
=== Movement Slow Resist === | |||
Movement Slow Resist reduces the final calculated slow percentage. Multiple sources of Movement Slow Resist stack '''additively''' (not multiplicatively). | |||
<math>\text{Actual Slow} = \text{Total Slow} \times (1 - \text{Resist}_1 - \text{Resist}_2 - ...)</math> | |||
'''Example:''' | |||
If you have '''47.5%''' total slow and '''30%''' Movement Slow Resist: | |||
<math>47.5\% \times (1 - 0.30) = 47.5\% \times 0.70 = \mathbf{33.25\%}</math> | |||
== Sources == | == Sources == | ||