diff options
| author | Supremist <sergkarv@gmail.com> | 2025-10-29 00:40:14 +0200 |
|---|---|---|
| committer | Supremist <sergkarv@gmail.com> | 2025-10-29 00:40:14 +0200 |
| commit | c29738661837749c72e3743c71814703cd11e062 (patch) | |
| tree | 421a26874678eed3273322e7d3cbe7bc95954cc2 /game.py | |
| parent | f2c7dbddb602db06ec8e8a8c9a4134451acd52e9 (diff) | |
| download | pf2e_calc-c29738661837749c72e3743c71814703cd11e062.tar.xz pf2e_calc-c29738661837749c72e3743c71814703cd11e062.zip | |
Add simple creature stat builder
Diffstat (limited to 'game.py')
| -rw-r--r-- | game.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,6 +1,7 @@ import re from enum import Enum from dataclasses import dataclass +from abc import ABC, abstractmethod from distribution import Distribution @@ -85,3 +86,8 @@ class RollInfo: def distribution(self): return self.dice_count * d(self.die_size) + self.bonus + +class LevelingPlan(ABC): + @abstractmethod + def build(self, level: int): + pass |
