Icon
Effect
Basic gain 10, bonus gain 3, Willpower - if (Magic - Enemy magic < 2) Magic: +1 else Gems: +10
Lore
Creatures with magical talents often become mages. Mages are irreplaceable in some tasks therefore they are valued in both times of war and times of peace. Mages form groups which are usually dedicated to some special art of magic. Most of the magic schools are official, but there are also those who practice forbidden arts.
Mages have the ability to focus their spiritual energy thus improving their magical abilities.
Code
if ($t->myData()->Magic <= ($t->hisData()->Magic + 1)) {
$t->myData()->addMagic(1);
}
else {
$t->myData()->addGems(10);
}