-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathobjective-richTexts.ts
More file actions
62 lines (59 loc) · 2.63 KB
/
objective-richTexts.ts
File metadata and controls
62 lines (59 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
const richTextManifestSourceData = {
'[###DestinyNamedSubstitutions.ui_player_action_jump_button###]': ['SandboxPerk', 738782202],
'[Aim Down Sights]': ['SandboxPerk', 104297121],
'[Air Dodge]': ['SandboxPerk', 1000136554],
'[Air Move]': ['SandboxPerk', 3605775441],
'[Alternate Weapon Action]': ['SandboxPerk', 156121479],
'[Arc]': ['Objective', 85535852],
'[Auto Rifle]': ['Objective', 49530695],
'[Block]': ['SandboxPerk', 2236497009],
'[Boost]': ['SandboxPerk', 3104860955],
'[Bow]': ['Objective', 1368601876],
'[Brake]': ['SandboxPerk', 4189070124],
'[Disruption]': ['SandboxPerk', 136649446],
'[Fusion Rifle]': ['Objective', 215999859],
'[Glaive]': ['Objective', 1351954994],
'[Grenade Launcher]': ['Objective', 43313268],
'[Grenade]': ['Objective', 45245118],
'[Hand Cannon]': ['Objective', 563593850],
'[Headshot]': ['Objective', 30510483],
'[Heavy Attack]': ['SandboxPerk', 390604159],
'[Insert Medal Here]': ['Objective', 2254471463],
'[Light Attack]': ['SandboxPerk', 355406666],
'[Linear Fusion Rifle]': ['Objective', 1476676901],
'[Machine Gun]': ['Objective', 172143731],
'[Melee]': ['Objective', 429378555],
'[Pulse Rifle]': ['Objective', 189060104],
'[Quest]': ['Objective', 119206183],
'[Reload]': ['SandboxPerk', 2835443516],
'[Rocket Launcher]': ['Objective', 13215836],
'[SMG]': ['Objective', 102976778],
'[Scout Rifle]': ['Objective', 75057024],
'[Shield-Piercing]': ['SandboxPerk', 200616812],
'[Shoot]': ['SandboxPerk', 909538239],
'[Shotgun]': ['Objective', 212380697],
'[Sidearm]': ['Objective', 141911950],
'[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', 1097409723],
'[Strand]': ['Objective', 289019406],
'[Super]': ['SandboxPerk', 608022904],
'[Sword]': ['Objective', 1260068656],
'[Trace Rifle]': ['Objective', 554293431],
'[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;