summaryrefslogtreecommitdiff
path: root/items.py
diff options
context:
space:
mode:
authorSupremist <sergkarv@gmail.com>2025-10-29 22:58:37 +0200
committerSupremist <sergkarv@gmail.com>2025-10-29 22:58:37 +0200
commit9fa4cfbe2f948f4067ca1572bbc5dbfab678e7da (patch)
tree590bb32b5a11dd2f3b5f9a0999d5e809ad1f3749 /items.py
parent0ada03ebf6a879e0a77475d525141d1090bcd634 (diff)
downloadpf2e_calc-9fa4cfbe2f948f4067ca1572bbc5dbfab678e7da.tar.xz
pf2e_calc-9fa4cfbe2f948f4067ca1572bbc5dbfab678e7da.zip
Add Attack action
Diffstat (limited to 'items.py')
-rw-r--r--items.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/items.py b/items.py
index f25b718..cd14c69 100644
--- a/items.py
+++ b/items.py
@@ -26,3 +26,8 @@ class Weapon:
agile: bool = False
finesse: bool = False
twin: bool = False
+ propulsive: bool = False
+ thrown: int = 0
+
+ def dice_count(self):
+ return self.striking+1