mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-28 00:28:27 +02:00
21 lines
388 B
Python
21 lines
388 B
Python
class MagicItem():
|
|
"""
|
|
Generic Magic Item. Add description here.
|
|
|
|
"""
|
|
name = ''
|
|
ac_bonus = 0
|
|
requires_attunement = False
|
|
rarity = ''
|
|
|
|
|
|
class RingOfProtection(MagicItem):
|
|
"""
|
|
You gain a +1 bonus to AC and Saving Throws while wearing this ring.
|
|
|
|
"""
|
|
name = "Ring of Protection"
|
|
ac_bonus = 1
|
|
requires_attunement = True
|
|
rarity = 'Rare'
|