HP Recovery

From iRO Wiki
Jump to navigation Jump to search

General

HP recovery happens every 3 seconds while sitting and every 6 seconds while standing. Characters with HP Recovery While Moving also regen HP every 12 seconds while walking.

See also: Increase HP Recovery, Spiritual Cadence, Song of Lutie

Calculations

var HPR = Math.max( 1, Math.floor(MAX_HP / 200) );
HPR += Math.floor( VIT / 5 );
HPR = Math.floor( HPR * (1 + HPR_MOD * 0.01) );

HPR_MOD : Sum of modifiers

Base value of 1 per 200 HP, minimum 1. Then +1 for every 5 VIT. Finally increase by modifiers.

Modifiers