diff options
| author | Supremist <sergkarv@gmail.com> | 2025-10-29 22:58:37 +0200 |
|---|---|---|
| committer | Supremist <sergkarv@gmail.com> | 2025-10-29 22:58:37 +0200 |
| commit | 9fa4cfbe2f948f4067ca1572bbc5dbfab678e7da (patch) | |
| tree | 590bb32b5a11dd2f3b5f9a0999d5e809ad1f3749 /items.py | |
| parent | 0ada03ebf6a879e0a77475d525141d1090bcd634 (diff) | |
| download | pf2e_calc-9fa4cfbe2f948f4067ca1572bbc5dbfab678e7da.tar.xz pf2e_calc-9fa4cfbe2f948f4067ca1572bbc5dbfab678e7da.zip | |
Add Attack action
Diffstat (limited to 'items.py')
| -rw-r--r-- | items.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |
