summaryrefslogtreecommitdiff
path: root/character.py
diff options
context:
space:
mode:
Diffstat (limited to 'character.py')
-rw-r--r--character.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/character.py b/character.py
index e7bc97b..75329ed 100644
--- a/character.py
+++ b/character.py
@@ -1,9 +1,9 @@
import re
import json
-from abc import ABC, abstractmethod
from dataclasses import dataclass, asdict
from items import Armor
+from game import LevelingPlan
_skill_ability = {
@@ -32,11 +32,6 @@ _skill_ability = {
"lore2": "int"
}
-class LevelingPlan(ABC):
- @abstractmethod
- def build(self, level: int):
- pass
-
class FeaturesPlan(LevelingPlan, dict):
@classmethod