Finish encounter, test, dice unittest, attack actions

This commit is contained in:
Matthew DeMartino
2021-05-23 14:52:18 -04:00
parent 4bc844a6bf
commit 89143c5cbc
10 changed files with 262 additions and 93 deletions
+3
View File
@@ -28,6 +28,9 @@ class Monster(Agent):
hp_max = 10
hit_dice = "1d6"
def __init__(self):
super(Monster, self).__init__()
@property
def is_beast(self):
is_beast = "beast" in self.description.lower()