Addition of regen values to admin char info.

Contributed by robikbobik.
This commit is contained in:
MobiusDevelopment
2019-11-22 16:00:34 +00:00
parent 85ff555dcf
commit a991254272
45 changed files with 645 additions and 165 deletions

View File

@ -102,6 +102,21 @@ public class CreatureStat
return (int) getValue(Stats.ACCURACY_COMBAT);
}
public int getCpRegen()
{
return (int) getValue(Stats.REGENERATE_CP_RATE);
}
public int getHpRegen()
{
return (int) getValue(Stats.REGENERATE_HP_RATE);
}
public int getMpRegen()
{
return (int) getValue(Stats.REGENERATE_MP_RATE);
}
/**
* @return the Magic Accuracy (base+modifier) of the Creature
*/