mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-07 13:15:53 +02:00
Add Pearl of Power, Cloak of Protection
This commit is contained in:
@@ -19,6 +19,17 @@ class MagicItem():
|
|||||||
return '\"{:s}\"'.format(str(self))
|
return '\"{:s}\"'.format(str(self))
|
||||||
|
|
||||||
|
|
||||||
|
class CloakOfProtection(MagicItem):
|
||||||
|
"""
|
||||||
|
You gain a +1 bonus to AC and Saving Throws while wearing this cloak.
|
||||||
|
|
||||||
|
"""
|
||||||
|
name = "Cloak of Protection"
|
||||||
|
ac_bonus = 1
|
||||||
|
requires_attunement = True
|
||||||
|
rarity = 'Uncommon'
|
||||||
|
|
||||||
|
|
||||||
class RingOfProtection(MagicItem):
|
class RingOfProtection(MagicItem):
|
||||||
"""
|
"""
|
||||||
You gain a +1 bonus to AC and Saving Throws while wearing this ring.
|
You gain a +1 bonus to AC and Saving Throws while wearing this ring.
|
||||||
@@ -210,3 +221,13 @@ class GlowingSword(MagicItem):
|
|||||||
This strange longsword glows at odd times.
|
This strange longsword glows at odd times.
|
||||||
"""
|
"""
|
||||||
name = "Glowing Sword"
|
name = "Glowing Sword"
|
||||||
|
|
||||||
|
|
||||||
|
class PearlOfPower(MagicItem):
|
||||||
|
"""While this pearl is on your person, you can use an action to speak its
|
||||||
|
Command Word and regain one expended spell slot. If the expended slot is of
|
||||||
|
4th Level or higher, the new slot is 3rd Level. Once you have used
|
||||||
|
the pearl, it can't be used again until the next dawn.
|
||||||
|
"""
|
||||||
|
requires_attunement = True
|
||||||
|
name = "Pearl of Power"
|
||||||
|
|||||||
Reference in New Issue
Block a user