Add body snatch potion
This commit is contained in:
@ -109,7 +109,7 @@ class InventoryDisplay(MenuDisplay):
|
||||
rep = self.pack[item.name.upper()]
|
||||
selection = f"[{rep}]" if i == self.menu.position else f" {rep} "
|
||||
self.addstr(self.pad, 2 + i, 0, selection
|
||||
+ " " + _(item.name).capitalize())
|
||||
+ " " + item.translated_name.capitalize())
|
||||
|
||||
@property
|
||||
def truewidth(self) -> int:
|
||||
|
@ -56,6 +56,7 @@ TexturePack.ASCII_PACK = TexturePack(
|
||||
RABBIT='Y',
|
||||
TIGER='n',
|
||||
TEDDY_BEAR='8',
|
||||
BODY_SNATCH_POTION='S',
|
||||
)
|
||||
|
||||
TexturePack.SQUIRREL_PACK = TexturePack(
|
||||
@ -75,4 +76,5 @@ TexturePack.SQUIRREL_PACK = TexturePack(
|
||||
RABBIT='🐇',
|
||||
TIGER='🐅',
|
||||
TEDDY_BEAR='🧸',
|
||||
BODY_SNATCH_POTION='🔀',
|
||||
)
|
||||
|
Reference in New Issue
Block a user