Uhr in der Küche.
unversionierte Dateien
This commit is contained in:
13
BewegungsModul.py
Normal file
13
BewegungsModul.py
Normal 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
9
ConfigError.py
Normal 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
10
HilfeModul.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import logging
|
||||||
|
|
||||||
|
class HilfeModul():
|
||||||
|
|
||||||
|
def __init__(self, world):
|
||||||
|
|
||||||
|
self.world = world
|
||||||
|
|
||||||
|
def hilfe(self, command):
|
||||||
|
|
@@ -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='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='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='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>
|
</items>
|
||||||
<personen>
|
<personen>
|
||||||
@@ -558,6 +559,9 @@ Du stehst in der Küche. In der Ecke steht ein Kühlschrank.
|
|||||||
<text id='item-46'>
|
<text id='item-46'>
|
||||||
Wie überraschend, er ist weiß.
|
Wie überraschend, er ist weiß.
|
||||||
</text>
|
</text>
|
||||||
|
<text id='item-47'>
|
||||||
|
Die Uhr ist bei 22:04 Uhr stehen geblieben.
|
||||||
|
</text>
|
||||||
<text id='raum-21'>
|
<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.
|
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>
|
</text>
|
||||||
|
Reference in New Issue
Block a user