From c29738661837749c72e3743c71814703cd11e062 Mon Sep 17 00:00:00 2001 From: Supremist Date: Wed, 29 Oct 2025 00:40:14 +0200 Subject: Add simple creature stat builder --- character.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'character.py') 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 -- cgit v1.2.3