Beispiel #1
0
 def max_hp(self):
     _maxhp = self._max_hp or self.character.max_hp
     _maxhp = combine_maybe_mods(self.active_effects('maxhp'), base=_maxhp)
     return _maxhp
Beispiel #2
0
 def ac(self):
     _ac = self._ac or self.character.ac
     _ac = combine_maybe_mods(self.active_effects('ac'), base=_ac)
     return _ac