-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #591 from DestinyItemManager/thicc-event-info
introduce d2-event-info-v2 as slim version
- Loading branch information
Showing
5 changed files
with
117 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## v2.0.0 | ||
|
||
- [BREAKING] d2-event-info.ts | ||
- [DEPRECATED] d2-event-info.ts in favor of d2-event-info-v2.ts | ||
- [REMOVED] type D2EventIndex | ||
- [REMOVED] const D2EventPredicateLookup | ||
- [REMOVED] const D2SourcesToEvent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
export const enum D2EventEnum { | ||
DAWNING = 1, | ||
CRIMSON_DAYS, | ||
SOLSTICE_OF_HEROES, | ||
FESTIVAL_OF_THE_LOST, | ||
REVELRY, | ||
GUARDIAN_GAMES, | ||
} | ||
|
||
export const D2EventInfo = { | ||
1: { | ||
name: 'The Dawning', | ||
shortname: 'dawning', | ||
sources: [464727567, 547767158, 629617846, 2364515524, 3092212681, 3952847349, 4054646289], | ||
engram: [1170720694, 2648089539, 3151770741, 3488374611], | ||
}, | ||
2: { | ||
name: 'Crimson Days', | ||
shortname: 'crimsondays', | ||
sources: [2502262376], | ||
engram: [191363032, 3373123597], | ||
}, | ||
3: { | ||
name: 'Solstice', | ||
shortname: 'solstice', | ||
sources: [151416041, 641018908, 1666677522, 3724111213], | ||
engram: [821844118], | ||
}, | ||
4: { | ||
name: 'Festival of the Lost', | ||
shortname: 'fotl', | ||
sources: [1054169368, 1677921161, 1919933822, 3190938946, 3693722471, 4041583267], | ||
engram: [1451959506], | ||
}, | ||
5: { | ||
name: 'The Revelry', | ||
shortname: 'revelry', | ||
sources: [2187511136], | ||
engram: [1974821348, 2570200927], | ||
}, | ||
6: { | ||
name: 'Guardian Games', | ||
shortname: 'games', | ||
sources: [611838069, 1568732528, 2006303146, 2011810450, 2473294025, 3388021959], | ||
engram: [], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters