mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-04 20:09:16 +02:00
updated max_hp in create-character
This commit is contained in:
@@ -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):
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user