Added a Gamemode for selling interfaces, as well as the base of the player/merchant interaction, related to issue #18

This commit is contained in:
eichhornchen
2020-12-05 21:43:13 +01:00
parent 3886bee1ba
commit ba68e68584
5 changed files with 18 additions and 4 deletions

View File

@ -117,6 +117,12 @@ class Player(FightingEntity):
queue.append((new_y, new_x))
self.paths = predecessors
def add_to_inventory(self, obj : Item) -> None :
"""
Adds an object to inventory
"""
self.inventory.append(obj)
def save_state(self) -> dict:
"""
Saves the state of the entity into a dictionary