mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-05 04:18:28 +02:00
added primary ability and new AC and speed calculations
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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'
|
||||
Reference in New Issue
Block a user