From 0ada03ebf6a879e0a77475d525141d1090bcd634 Mon Sep 17 00:00:00 2001 From: Supremist Date: Wed, 29 Oct 2025 20:58:42 +0200 Subject: Track bonuses and penalties from conditions --- items.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'items.py') diff --git a/items.py b/items.py index a26316c..f25b718 100644 --- a/items.py +++ b/items.py @@ -16,6 +16,7 @@ class Armor: class Weapon: name: str category: str + group: str main_die: int potency: int = 0 striking: int = 0 @@ -23,4 +24,5 @@ class Weapon: fatal: int = 0 deadly: int = 0 agile: bool = False + finesse: bool = False twin: bool = False -- cgit v1.2.3