-
Notifications
You must be signed in to change notification settings - Fork 3
/
black_hollow.py
82 lines (77 loc) · 5.32 KB
/
black_hollow.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
actors = {
'a': ('town_commoner', 'indoors'),
'b': ('town_thug', None),
'c': ('town_guard', None),
'd': ('town_noble', 'indoors'),
'e': ('town_veteran', 'indoors'),
'f': ('merchant', 'indoors'),
'A': ('cardinal_florian', 'indoors'),
'B': ('saint_hedwig', 'indoors'),
}
#tuple with actor creation function and the tile to underneath
items = None
exits = {
'1': ('overworld', 1, '<')
}
vault_layouts = [
[
' ',
' 1 ',
' ',
' ####### T ',
' tt #,,,,,# c ###### ',
' #,,,,,# #,,,,# T ',
' T #,,a,,# T #,,,,# t T ',
' tt T #,,,,,+ #,,,,# TT ',
' t #,,,,,# #,,,,# ',
' #,,,,,#t +,,,,# ',
' t ######### #,,,,# t ',
' #,,,,,,# #,,,,# T t ',
' T #,,,,,,# #,,,,#t t ',
' #,,,,,,# ######### b ',
' #,,,,,,+ #,,,,,# ',
' t #,a,,,,# #,,,,,#################### ',
' t #,a,,,,# #,,,,,#,,,,,,,,,,,,,,,,,,# ',
' T #,,,,,,# +,,a,,#,,,,,,,,,,#,#,#,#,# ',
' ######## T #,,,,,#,#,A,,,,,,,,,,,,,,+ ',
' #,,,,#t #,,,,,#,#,B,,,,,,,,,,,,,,+ ',
' T #,,,,# T #,,,,,#,,,,,,,,,,#,#,#,#,# ',
' #,,,,# ###+###,,,,,,,,,,,,,,,,,,# T ',
' #,f,,+ c t#################### t ',
' t #,,,,# ',
' TT #,,,,# c ',
' #,,,,# T ',
' ######## ####### ######+### ',
' #,,,,,,# #,,,,,###+#####,,,,,,,,# ',
'Tt #,,,,,,# #,,,,,#,,,,,,,#,,,,,a,,# ',
' #,,,,,,+ +,,,,,#,,,,f,,#,,,,,,,,# ',
' t #,,,,,,# #,,,,,#,,,,,,,#,,,,,,,,# t ',
' #,,aa,,# #,,,,,#,,,,,,,########## ',
' #,,,,,,# #,,,,,#,,,,,,,# TT ',
' #,,,,,,# ############### tt ',
' Tt #,,,,,,#T ',
' t #,,,,,,#TT ###### T T ',
' ################## #,,,,# ####### ',
' #,,,,,,,,,#,,,,,,# #,,,,# #,,,,,# ',
' #,,,,,,,,,#,,,,,,# +,,d,# #,,,,,# T ',
' #,,,,,,,,,#,,,,,,+ #,,e,# +,,,,,# ',
' t #,,,,a,,,,#,,,f,,# #,,,,# #,,,,,# ',
' #,,,,,,,,,#,,,,,,# #,,,,#t #,,,,,# T ',
' #####+#####,,,,,,# ######### ####### ',
' T######## #,,,,,,# tT ',
' b T #,,,,,,# b ',
' c #,,,,,,# ',
' ####+####t ####+### +,,,,,,# ',
' #,,,,,,,###+##,,,,,,# #,,a,,,# ',
' Tt #,,,,,,,#,,,,#,,,,,,# #,,,,,,# ',
' #,,,,,,,#,,,,#,,,,,,# ######### T ',
' #,,,,,,,######,,aa,,# #,,,,,# ',
' #,,,,,,,# #,,,,,,# #,,,,,# ',
' ######### #,,,,,,#T #,,,,,# ',
' ######## T +,,,,,# ',
' #,,,,,# ',
' T T #,,,,,# T ',
' ####### t ',
' ',
' t ',
' ']]