1 Overview
2 Notes
3 Bleeding
4 Blind
5 Chaos
6 Coma
7 Critical Wounds
8 Curse
9 Divest
10 Frozen
11 Hallucination
12 Hell's Power
13 Poison
14 Silence
15 Sleep
16 Slow Casting
17 Stone
18 Stun
19 Undead
There are many status debuffs (or status ailments) in Ragnarok Online that work against you in many ways. Both player characters and monsters are capable of inflicting them.
The following formulae will split into two kind of calculations:
Calculated by percentage, 10000 means 100%; 1 means = 0.01%.
Example of Chance (sc_def)
Initial = 50% -> sc_def = 5000 (50% of 50%) -> Final = 25%
Example of Duration (tick_def)
Initial = 5000ms -> tick_def = 5000 (50% of 5000) -> Final = 2500ms
Direct modification to the formula and it's calculated after percentual resistance is applied.
Example of Chance (sc_def2)
Initial = 25% -> sc_def2 = 2000 (25% - 20%) -> Final = 5%
Example of Duration (tick_def2)
Initial = 2500ms -> tick_def2 = 2000 (2500 - 2000) -> Final = 500ms
FinalChance = BaseChance * (1 - sc_def / 10000) - sc_def2
FinalDuration = BaseDuration * (1 - tick_def / 10000) - tick_def2
tar = Target
cst = Caster
LD = Level Difference (tarBaseLvl - cstBaseLvl)