Monsters now have a spells attribute that will eventually hold a list of spells.

This commit is contained in:
Mark Wolfman
2021-07-13 00:13:04 -05:00
parent d110ef6cda
commit f4f101e39c
14 changed files with 191 additions and 137 deletions
+1 -1
View File
@@ -274,7 +274,7 @@ class Druid(CharClass):
try:
NewMonster = find_content(shape, valid_classes=[monsters.Monster])
new_shape = NewMonster()
except AttributeError:
except exceptions.ContentNotFound:
msg = (
f"Wild shape '{shape}' not found. Please add it to"
" ``monsters.py``"