Merchant inventory is working!

This commit is contained in:
Yohann D'ANELLO
2020-12-07 21:13:55 +01:00
parent 8540a8f354
commit b24cc1877f
6 changed files with 15 additions and 13 deletions

View File

@ -59,9 +59,10 @@ class Item(Entity):
d = super().save_state()
d["held"] = self.held
return d
@staticmethod
def get_all_items() -> list:
return [BodySnatchPotion, Bomb, Heart, Weapon, Sword]
return [BodySnatchPotion, Bomb, Heart, Sword]
class Heart(Item):