-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlstorations.py
186 lines (183 loc) · 3.85 KB
/
lstorations.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
lost_sector_order = {
13: [
1070981425,
2936791995,
3094493727,
567131519,
2829206720,
184186578,
3911969238,
912873274,
1648125538, # day 9
],
14: [
1070981425,
1344654779,
144485117,
548616653,
2936791995,
3094493727,
2019961993,
567131519,
2829206720,
184186578,
3911969238,
912873274,
1648125538, # day 13 / master LS day 1
],
15: [
660710120,
4206916276,
1898610131,
2019961993,
567131519,
2829206720,
184186578,
3911969238,
912873274,
1648125538,
1070981425, # day 11 / master LS day 1
],
16: [
3094493727,
2936791995,
1898610131,
660710120,
4206916276,
3911969238,
184186578,
567131519,
3678847134,
480864721,
145221020, # day 11
],
17: [
184186578,
567131519,
3911969238,
2829206720,
1163502296,
3678847134,
480864721,
145221020,
548616653,
55186256,
1344654779, # day 11
],
18: [
912873274,
1648125538,
1070981425,
1551471974,
184186578,
567131519,
2829206720,
55186256,
144485117,
1344654779,
548616653, # day 11
],
19: [
567131519,
184186578,
3911969238,
2829206720,
1648125538,
912873274,
1070981425,
480864721,
145221020,
4206916276,
1898610131,
],
20: [
584726931,
1869786719,
2983905030,
548616653,
55186256,
1344654779,
1898610131,
4206916276,
1070981425,
1648125538,
1163502296
],
21: [
3911969238,
184186578,
567131519,
2829206720,
480864721,
145221020,
1898610131,
4206916276,
660710120,
3094493727,
2936791995
],
22: [
480864721, # sepulcher
145221020, # extraction
3678847134, # metamorphosis
3911969238, # k1 revelation
2829206720, # k1 communion
184186578, # k1 crew quarters
912873274, # concealed void
1648125538, # bunker e15
660710120, # bay of drowned wishes
3094493727, # veles labyrinth
2936791995 # exodus garden 2a
],
23: [
1898610131, # aphelion's rest
660710120, # bay of drowned wishes
4206916276, # chamber of starlight
1070981425, # perdition
1648125538, # bunker e15
912873274, # concealed void
584726931, # thrilladrome
2983905030, # gilded precept
144485117, # scavenger's den
55186256, # skydock iv
1344654779 # the quarry
],
24: [
1070981425, # perdition
1648125538, # bunker e15
912873274, # concealed void
1163502296, # conflux
584726931, # thrilladrome
1869786719, # hydroponics delta
3094493727, # veles labyrinth
2936791995, # exodus garden 2a
2875391879, # the broken deep
3995113183, # the blooming deep
699527783 # the forgotten deep
]
}
loot_order_s13 = [
"gloves",
"chest",
"helmet",
"boots", # day 4
]
loot_order_s14 = [
"chest",
"helmet",
"boots",
"gloves", # day 4
]
loot_order = {
13: loot_order_s13,
14: loot_order_s14,
15: loot_order_s14,
16: loot_order_s14,
17: loot_order_s14,
18: loot_order_s14,
19: loot_order_s14,
20: loot_order_s14,
21: loot_order_s14,
22: loot_order_s14,
23: loot_order_s14
}