float Creature::get_dodge() const
{
    return get_dodge_base() + get_dodge_bonus();
}
Beispiel #2
0
int Creature::get_dodge()
{
    return get_dodge_base() + get_dodge_bonus();
}