mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-13 16:13:32 +02:00
Fixed tests: needed defaults for making character sheets for NPCs (e.g. GM notes).
This commit is contained in:
@@ -105,7 +105,6 @@ class Content(ABC):
|
||||
attrs = {"name": mechanic_name, "__doc__": msg, "source": "Unknown"}
|
||||
Mechanic = type(class_name, (SuperClass,), attrs)
|
||||
return Mechanic
|
||||
|
||||
|
||||
|
||||
class Creature(Content):
|
||||
@@ -213,3 +212,7 @@ class Creature(Content):
|
||||
self.medicine, self.nature, self.perception,
|
||||
self.performance, self.persuasion, self.religion,
|
||||
self.sleight_of_hand, self.stealth, self.survival]
|
||||
|
||||
@property
|
||||
def is_spellcaster(self):
|
||||
raise NotImplementedError
|
||||
|
||||
Reference in New Issue
Block a user