HP Recovery

From Ragnarok Project Zero wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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