-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvorstory.py
executable file
·65 lines (51 loc) · 2.87 KB
/
vorstory.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Import
from time import sleep
from painutilities import *
from asciiart import *
# Funktion Kapitel Vorstory
def exec_vorstory(sprache, short_delay = 1, long_delay = 2):
# Deutsch
if sprache == 1:
# Konsole clearen
clearscreen()
sleep(short_delay)
print('Erzähler: In einem fernen und unentdeckten Teil der Welt gibt es eine Stadt, von der nicht viele Bescheid wissen.\n')
sleep(long_delay)
print('Die wenigen, die die Stadt zu Gesicht bekommen hatten und überlebt hatten, beschrieben sie als eine Geisterstadt,\n')
sleep(long_delay)
print('wo anscheinend keine Art von Leben existierte. Jedoch es existierte Leben. Sie nannten sich die Faerens.\n')
sleep(long_delay)
print('Die Faerens sind eine Menschen ähnliche Rasse, die sehr zurückhalten lebt.\n')
sleep(short_delay)
print('Sobald jemand in ihre Nähe kommt verstecken sie sich oder wenn sie sich angegriffen fühlen töten sie dich\n')
# Enter und Konsole clearen
nextstep()
print('In dieser mysteriösen Epoche hatte das Team des Forschungsschiffes USS International den Auftrag, in der Antarktis nach einer Höhle zu suchen, die durch die Erderwärmung freigelegt wurde\n')
sleep(long_delay)
# Boot zeigen
show_boat()
sleep(short_delay)
print('Als die USS International und ihre Crew in die Nähe von der Antarktis kamen, begann ein Schneesturm aufzuziehen und ausgerechnet jetzt strandete die USS auf einer riesigen Eisscholle\n')
sleep(long_delay)
# Englisch
elif sprache == 2:
clearscreen()
sleep(short_delay)
print('Narrator: In a far and distant land exists a town that not many know about.\n')
sleep(long_delay)
print('The few that were lucky enough to see the town described it mostly as a ghost town\n')
sleep(long_delay)
print('where apparently no sight of life has been discovered. But there was life indeed, beings named the Faerens.\n')
sleep(long_delay)
print('The Faerens are nothing like Humans and are isolated from the outside world.\n')
sleep(short_delay)
print('As soon as someone comes close to them they start hiding or even attacking the intruder\n')
# Enter und Konsole clearen
nextstep()
print('A team of the research ship USS International had the task to perform an expedition in a cave that had been opened thanks to global warming\n')
sleep(long_delay)
# Boot zeigen
show_boat()
sleep(short_delay)
print('As soon as the USS International and its crew had come close to the coast a massive snow storm had started to appear which caused the ship to get stranded on the coast\n')
sleep(long_delay)