Added party XP thresholds to GM sheets.

This commit is contained in:
Mark Wolfman
2021-09-30 21:10:34 -05:00
parent 1d67463566
commit 5b8ef004c7
14 changed files with 152 additions and 20 deletions
+3
View File
@@ -104,3 +104,6 @@ class Monster(Creature, metaclass=SpellFactory):
def is_beast(self):
is_beast = "beast" in self.description.lower()
return is_beast
def has_feature(self, *args, **kwargs):
return False
+3 -3
View File
@@ -1080,7 +1080,7 @@ class Stonemelder(Monster):
attacks. It knows the following sorcerer spells (an asterisked
spell is from *Princes of the Apocalypse* appendix B):
- Cantrips (at will): acid splash, blade ward, light mending, mold earth*
- Cantrips (at will): acid splash, blade ward, light, mending, mold earth*
- 1st level (4 slots): expeditious retreat, false life, shield
- 2nd level (3 slots): Maximilian's earthen grasp,* shatter
- 3rd level (3 slots): erupting earth,* meld into stone
@@ -1123,9 +1123,9 @@ class Stonemelder(Monster):
climb_speed = 0
hp_max = 75
hit_dice = "10d8 + 30"
spells = ["acid splash", "blade ward", "light mending", "mold earth*",
spells = ["acid splash", "blade ward", "light", "mending", "mold earth",
"expeditious retreat", "false life", "shield",
"Maximilian's earthen grasp*", "shatter" "erupting earth*",
"maximilian's earthen grasp", "shatter", "erupting earth",
"meld into stone", "stoneskin"]