Jacke -> Zwerg -> Schachtel -> Karte
This commit is contained in:
@@ -24,9 +24,17 @@ class ActionBasics:
|
||||
def clearFehler(self):
|
||||
self.world.fehler = ''
|
||||
|
||||
def wechsleRaum(self,raum):
|
||||
self.world.aktuellerRaum = raum
|
||||
raum.entdeckt = True
|
||||
|
||||
def liegtItemInRaum(self,itemid, raum):
|
||||
return itemid in raum.items
|
||||
|
||||
def macheItemSichtbar(self, item):
|
||||
logging.debug(f'mache sichtbar {item.name} in Raum {item.raumid}')
|
||||
item.sichtbar = True
|
||||
|
||||
def moveItemVonRaumNachInventar(self,item):
|
||||
logging.debug(f'entferne aus aktuellen Raum {item.name}')
|
||||
del self.world.aktuellerRaum.items[item.id]
|
||||
|
Reference in New Issue
Block a user