Skip to content

Commit

Permalink
Magic_items: Fix healing potion tables
Browse files Browse the repository at this point in the history
  • Loading branch information
PJBrs committed Feb 5, 2023
1 parent f17d2eb commit 600ccb4
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions dungeonsheets/magic_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,17 +467,17 @@ class PotionOfHealing(MagicItem):
**Potions of Healing**
+-----------------+-----------+-------------+
| Potion of ... | Rarity | HP Regained |
+=================+===========+=============+
|Healing | Common | 2d4 + 2 |
+-----------------+-----------+-------------+
|Greater healing | Uncommon | 4d4 + 4 |
+-----------------+-----------+-------------+
|Superior healing | Rare | 8d4 + 8 |
+-----------------+-----------+-------------+
|Supreme healing | Very rare | 10d4 + 20 |
+-----------------+-----------+-------------+
+-----------------------------+-------------------+------------------------+
| Potion of ... | Rarity | HP Regained |
+=============================+===================+========================+
|Healing | Common | ``2d4 + 2`` |
+-----------------------------+-------------------+------------------------+
|Greater healing | Uncommon | ``4d4 + 4`` |
+-----------------------------+-------------------+------------------------+
|Superior healing | Rare | ``8d4 + 8`` |
+-----------------------------+-------------------+------------------------+
|Supreme healing | Very rare | ``10d4 + 20`` |
+-----------------------------+-------------------+------------------------+
"""
rarity = "common"
Expand All @@ -493,17 +493,17 @@ class PotionOfGreaterHealing(PotionOfHealing):
**Potions of Healing**
+-----------------+-----------+-----------------+
| Potion of ... | Rarity | HP Regained |
+=================+===========+=================+
|Healing | Common | ``2d4 + 2`` |
+-----------------+-----------+-----------------+
|Greater healing | Uncommon | ``4d4 + 4`` |
+-----------------+-----------+-----------------+
|Superior healing | Rare | ``8d4 + 8`` |
+-----------------+-----------+-----------------+
|Supreme healing | Very rare | ``10d4 + 20`` |
+-----------------+-----------+-----------------+
+-----------------------------+-------------------+------------------------+
| Potion of ... | Rarity | HP Regained |
+=============================+===================+========================+
|Healing | Common | ``2d4 + 2`` |
+-----------------------------+-------------------+------------------------+
|Greater healing | Uncommon | ``4d4 + 4`` |
+-----------------------------+-------------------+------------------------+
|Superior healing | Rare | ``8d4 + 8`` |
+-----------------------------+-------------------+------------------------+
|Supreme healing | Very rare | ``10d4 + 20`` |
+-----------------------------+-------------------+------------------------+
"""
name = "Potion of Greater Healing"
Expand All @@ -518,17 +518,17 @@ class PotionOfSuperiorHealing(PotionOfHealing):
**Potions of Healing**
+-----------------+-----------+-------------+
| Potion of ... | Rarity | HP Regained |
+=================+===========+=============+
|Healing | Common | 2d4 + 2 |
+-----------------+-----------+-------------+
|Greater healing | Uncommon | 4d4 + 4 |
+-----------------+-----------+-------------+
|Superior healing | Rare | 8d4 + 8 |
+-----------------+-----------+-------------+
|Supreme healing | Very rare | 10d4 + 20 |
+-----------------+-----------+-------------+
+-----------------------------+-------------------+------------------------+
| Potion of ... | Rarity | HP Regained |
+=============================+===================+========================+
|Healing | Common | ``2d4 + 2`` |
+-----------------------------+-------------------+------------------------+
|Greater healing | Uncommon | ``4d4 + 4`` |
+-----------------------------+-------------------+------------------------+
|Superior healing | Rare | ``8d4 + 8`` |
+-----------------------------+-------------------+------------------------+
|Supreme healing | Very rare | ``10d4 + 20`` |
+-----------------------------+-------------------+------------------------+
"""
name = "Potion of Superior Healing"
Expand All @@ -543,17 +543,17 @@ class PotionOfSupremeHealing(PotionOfHealing):
**Potions of Healing**
+-----------------+-----------+-------------+
| Potion of ... | Rarity | HP Regained |
+=================+===========+=============+
|Healing | Common | 2d4 + 2 |
+-----------------+-----------+-------------+
|Greater healing | Uncommon | 4d4 + 4 |
+-----------------+-----------+-------------+
|Superior healing | Rare | 8d4 + 8 |
+-----------------+-----------+-------------+
|Supreme healing | Very rare | 10d4 + 20 |
+-----------------+-----------+-------------+
+-----------------------------+-------------------+------------------------+
| Potion of ... | Rarity | HP Regained |
+=============================+===================+========================+
|Healing | Common | ``2d4 + 2`` |
+-----------------------------+-------------------+------------------------+
|Greater healing | Uncommon | ``4d4 + 4`` |
+-----------------------------+-------------------+------------------------+
|Superior healing | Rare | ``8d4 + 8`` |
+-----------------------------+-------------------+------------------------+
|Supreme healing | Very rare | ``10d4 + 20`` |
+-----------------------------+-------------------+------------------------+
"""
name = "Potion of Supreme Healing"
Expand Down

0 comments on commit 600ccb4

Please sign in to comment.