-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathd2-event-info-v2.ts
More file actions
52 lines (51 loc) · 1.63 KB
/
d2-event-info-v2.ts
File metadata and controls
52 lines (51 loc) · 1.63 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
export const enum D2EventEnum {
DAWNING = 1,
CRIMSON_DAYS,
SOLSTICE_OF_HEROES,
FESTIVAL_OF_THE_LOST,
REVELRY,
GUARDIAN_GAMES,
}
export const D2EventInfo = {
[D2EventEnum.DAWNING]: {
name: 'The Dawning',
shortname: 'dawning',
sources: [464727567, 547767158, 629617846, 2364515524, 3092212681, 3952847349, 4054646289],
engram: [1170720694, 3151770741],
},
[D2EventEnum.CRIMSON_DAYS]: {
name: 'Crimson Days',
shortname: 'crimsondays',
sources: [2502262376],
engram: [191363032, 3373123597],
},
[D2EventEnum.SOLSTICE_OF_HEROES]: {
name: 'Solstice',
shortname: 'solstice',
sources: [151416041, 641018908, 1666677522, 2050870152, 3724111213],
engram: [821844118],
},
[D2EventEnum.FESTIVAL_OF_THE_LOST]: {
name: 'Festival of the Lost',
shortname: 'fotl',
sources: [1054169368, 1677921161, 1919933822, 3190938946, 3482766024, 3693722471, 4041583267],
engram: [
1123009796, 1130434762, 1130434763, 1130434764, 1130434765, 1130434767, 1451959506,
1876344833, 1876344834, 1876344835, 1876344836, 1876344837, 2113144106, 2113144107,
2113144108, 2113144109, 2113144111, 3021397983, 3485785096, 3485785098, 3485785099,
3485785100, 3485785101, 3768874632, 3768874633, 3768874637, 3768874638, 3768874639,
],
},
[D2EventEnum.REVELRY]: {
name: 'The Revelry',
shortname: 'revelry',
sources: [2187511136],
engram: [1974821348, 2570200927],
},
[D2EventEnum.GUARDIAN_GAMES]: {
name: 'Guardian Games',
shortname: 'games',
sources: [611838069, 1568732528, 2006303146, 2011810450, 2473294025, 3095773956, 3388021959],
engram: [],
},
};