updated max_hp in create-character

This commit is contained in:
Ben Cook
2019-01-02 21:07:22 -05:00
parent a80fa81993
commit a384fe3a27
7 changed files with 126 additions and 102 deletions
+1 -7
View File
@@ -944,13 +944,7 @@ class ElegantCourtier(Feature):
"""
name = "Elegant Courtier"
source = "Fighter (Samurai)"
def __init__(self, owner=None):
super().__init__(owner=owner)
if 'wisdom' not in self.owner.primary_class.saving_throw_proficiencies:
self.owner.primary_class.saving_throw_proficiencies += ('wisdom',)
else:
self.owner.primary_class.saving_throw_proficiencies += ('intelligence',)
needs_implementation = True
class TirelessSpirit(Feature):
+1 -4
View File
@@ -455,13 +455,10 @@ class IronMind(Feature):
"""
name = "Iron Mind"
source = "Ranger (Gloom Stalker)"
needs_implementation = True
def __init__(self, owner=None):
super().__init__(owner=owner)
if 'wisdom' not in self.owner.primary_class.saving_throw_proficiencies:
self.owner.primary_class.saving_throw_proficiencies += ('wisdom',)
else:
self.owner.primary_class.saving_throw_proficiencies += ('intelligence',)
class StalkersFlurry(Feature):