-
Notifications
You must be signed in to change notification settings - Fork 1
/
objective-richTexts.ts
60 lines (57 loc) · 2.5 KB
/
objective-richTexts.ts
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
const richTextManifestSourceData = {
'[Aim Down Sights]': ['SandboxPerk', 104297121],
'[Air Dodge]': ['SandboxPerk', 1000136554],
'[Air Move]': ['SandboxPerk', 3605775441],
'[Alternate Weapon Action]': ['SandboxPerk', 250262009],
'[Arc]': ['Objective', 85239849],
'[Auto Rifle]': ['Objective', 28925697],
'[Block]': ['SandboxPerk', 2236497009],
'[Boost]': ['SandboxPerk', 3104860955],
'[Bow]': ['Objective', 1213975022],
'[Brake]': ['SandboxPerk', 4189070124],
'[Disruption]': ['SandboxPerk', 669536781],
'[Fusion Rifle]': ['Objective', 273967510],
'[Glaive]': ['Objective', 393380158],
'[Grenade Launcher]': ['Objective', 38253124],
'[Grenade]': ['Objective', 45245118],
'[Hand Cannon]': ['Objective', 495917258],
'[Headshot]': ['Objective', 116015535],
'[Heavy Attack]': ['SandboxPerk', 390604159],
'[Insert Medal Here]': ['Objective', 2254471463],
'[Light Attack]': ['SandboxPerk', 355406666],
'[Linear Fusion Rifle]': ['Objective', 1878887814],
'[Machine Gun]': ['Objective', 384756495],
'[Melee]': ['Objective', 44811435],
'[Pulse Rifle]': ['Objective', 189060104],
'[Quest]': ['Objective', 119206183],
'[Rocket Launcher]': ['Objective', 13215836],
'[SMG]': ['Objective', 102976778],
'[Scout Rifle]': ['Objective', 75057024],
'[Shield-Piercing]': ['SandboxPerk', 591985846],
'[Shoot]': ['SandboxPerk', 2805448568],
'[Shotgun]': ['Objective', 89840062],
'[Sidearm]': ['Objective', 62818926],
'[Sniper Rifle]': ['Objective', 273389628],
'[Solar]': ['Objective', 85535853],
'[Special Grenade Launcher]': ['Objective', 1217177904],
'[Sprint]': ['SandboxPerk', 1330059513],
'[Stagger]': ['SandboxPerk', 72139184],
'[Stasis: Glyph 0]': ['Objective', 1397002441],
'[Stasis: Glyph 1 Locked]': ['Objective', 1851419582],
'[Stasis: Glyph 2 Locked]': ['Objective', 1857129539],
'[Stasis: Glyph 3 Locked]': ['Objective', 1481711502],
'[Stasis]': ['Objective', 270151386],
'[Strand]': ['SandboxPerk', 381243875],
'[Super]': ['SandboxPerk', 1330059512],
'[Sword]': ['Objective', 298337117],
'[Trace Rifle]': ['Objective', 1047174894],
'[Void]': ['Objective', 33657378],
'[afflicted|burdened|cursed]': ['SandboxPerk', 2208422697],
'': ['Objective', 1080160166],
} as const;
export type StringsNeedingReplacement = keyof typeof richTextManifestSourceData;
const richTextManifestExamples: Record<
StringsNeedingReplacement,
readonly [tableName: 'Objective' | 'SandboxPerk', hash: number]
> = richTextManifestSourceData;
export default richTextManifestExamples;