-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAdventureMaps.py
More file actions
106 lines (96 loc) · 2.71 KB
/
AdventureMaps.py
File metadata and controls
106 lines (96 loc) · 2.71 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#This file contains all the maps that can be called whilst traveling
def new_destination():
print ("You are currently in " + city + ".")
if city == ("Ragni"):
print_ragni()
elif city == ("Detlas"):
print_detlas()
elif city == ("Almuj"):
print_almuj()
elif city == ("Nemract"):
print_nemract()
elif city == ("Nesaak"):
print_nesaak()
elif city == ("Troms"):
print_troms()
elif city == ("Rymek"):
print_rymek()
else:
print ("Something went totally wrong!")
def next_destination():
print ("""---------------------------------------------
1. Ragni
2. Detlas
3. Almuj
4. Nemract
5. Nesaak
6. Troms
7. Rymek
---------------------------------------------""")
input = int(input("Where would you like to go next?" ))
if input == 1:
print_ragni()
ready = input("Ready to go to Ragni? Press ENTER when ready.")
if input == (""):
townsquare.ragni_square()
else:
townsquare.ragni_square()
elif input == 2:
print_detlas()
ready = input("Ready to go to Detlas? Press ENTER when ready.")
if input == (""):
townsquare.detlas_square()
else:
townsquare.detlas_square()
elif input == 3:
print_almuj()
ready = input("Ready to go to Almuj? Press ENTER when ready.")
if input == (""):
townsquare.almuj_square()
else:
townsquare.almuj_square()
elif input == 4:
print_nemract()
ready = input("Ready to go to Nemract? Press ENTER when ready.")
if input == (""):
townsquare.nemract_square()
else:
townsquare.nemract_square()
elif input == 5:
print_nesaak()
ready = input("Ready to go to Nesaak? Press ENTER when ready.")
if input == (""):
townsquare.nesaak_square()
else:
townsquare.nesaak_square()
elif input == 6:
print_troms()
ready = input("Ready to go to Troms? Press ENTER when ready.")
if input == (""):
townsquare.troms_square()
else:
townsquare.troms_square()
elif input == 7:
print_rymek()
ready = input("Ready to go to Rymek? Press ENTER when ready.")
if input == (""):
townsquare.rymek_sqaure()
else:
townsquare.rymek_sqaure()
else:
print ("That is not a valid option.")
next_destination()
def print_ragni():
print ("")
def print_detlas():
print ("")
def print_almuj():
print ("")
def print_nemract():
print ("")
def print_nesaak():
print ("")
def print_troms():
print ("")
def print_rymek():
print ("")