Added a scroll object that deals damage based on the player intelligence. Related to #60

This commit is contained in:
eichhornchen
2021-01-08 11:54:39 +01:00
parent ea58d5b426
commit 5736c2300b
3 changed files with 27 additions and 1 deletions

View File

@ -34,6 +34,7 @@ class TexturePack:
RABBIT: str
RING_OF_CRITICAL_DAMAGE: str
RING_OF_MORE_EXPERIENCE: str
SCROLL_OF_DAMAGE: str
SHIELD: str
SUNFLOWER: str
SWORD: str
@ -95,6 +96,7 @@ TexturePack.ASCII_PACK = TexturePack(
TIGER='n',
TRUMPET='/',
WALL='#',
SCROLL_OF_DAMAGE=']',
)
TexturePack.SQUIRREL_PACK = TexturePack(
@ -131,4 +133,5 @@ TexturePack.SQUIRREL_PACK = TexturePack(
TIGER='🐅',
TRUMPET='🎺',
WALL='🧱',
SCROLL_OF_DAMAGE='📜',
)