Uhr in der Küche.

unversionierte Dateien
This commit is contained in:
Olli Graf
2022-06-18 11:01:26 +02:00
parent a986d14fbc
commit 6876dab8df
4 changed files with 36 additions and 0 deletions

13
BewegungsModul.py Normal file
View File

@@ -0,0 +1,13 @@
# Bewegungsmodul - Steuert die Bewegungen aller NPC.
import logging
class BewegungsModul:
def __init__(self, world):
self.world = world
def bewegeNPCS(self):
skip

9
ConfigError.py Normal file
View File

@@ -0,0 +1,9 @@
class ConfigError(Exception):
def __init_(self,message):
self.message = message
super().__init(message)
def __str__(self):
return self.message

10
HilfeModul.py Normal file
View File

@@ -0,0 +1,10 @@
import logging
class HilfeModul():
def __init__(self, world):
self.world = world
def hilfe(self, command):

View File

@@ -393,6 +393,7 @@ Du stehst in der Küche. In der Ecke steht ein Kühlschrank.
<item name='Loch' id='44' display='' raum='30' imobil='true' adjektiv='0' msgid='8' visible='true' />
<item name='Plakette' id='45' display='' raum='42' imobil='true' adjektiv='0' msgid='2' visible='true' />
<item name='Kühlschrank' id='46' display='' raum='43' imobil='true' adjektiv='0' msgid='2' visible='true' />
<item name='Uhr' id='47' display='' raum='43' imobil='true' adjektiv='0' msgid='2' visible='true' />
</items>
<personen>
@@ -558,6 +559,9 @@ Du stehst in der Küche. In der Ecke steht ein Kühlschrank.
<text id='item-46'>
Wie überraschend, er ist weiß.
</text>
<text id='item-47'>
Die Uhr ist bei 22:04 Uhr stehen geblieben.
</text>
<text id='raum-21'>
Im Tunnel ist es zu dunkel, um etwas zu sehen. Aber du spürst einen leichten Wind, der von Osten durch den Tunnel weht.
</text>