The player now has two hands and a slot for a helmet and a chestplate. Accordingly, new classes of items have been added.

This commit is contained in:
eichhornchen
2021-01-06 10:46:36 +01:00
parent 601062237d
commit f3fe04e13a
4 changed files with 118 additions and 31 deletions

View File

@ -31,6 +31,9 @@ class TexturePack:
TIGER: str
WALL: str
EAGLE: str
SHIELD: str
CHESTPLATE: str
HELMET: str
ASCII_PACK: "TexturePack"
SQUIRREL_PACK: "TexturePack"
@ -78,6 +81,8 @@ TexturePack.ASCII_PACK = TexturePack(
TIGER='n',
WALL='#',
EAGLE='µ',
CHESTPLATE='(',
HELMET='0',
)
TexturePack.SQUIRREL_PACK = TexturePack(
@ -106,4 +111,6 @@ TexturePack.SQUIRREL_PACK = TexturePack(
TIGER='🐅',
WALL='🧱',
EAGLE='🦅',
CHESTPLATE='🦺',
HELMET='⛑️',
)