coh-content-db-homecoming 2.0.0-rc.9 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build.yml +1 -1
- package/CHANGELOG.md +8 -1
- package/README.md +32 -15
- package/dist/bundle.head.json +1 -1
- package/dist/bundle.json +1 -1
- package/dist/coh-content-db-homecoming.js +1421 -187
- package/dist/coh-content-db-homecoming.js.map +1 -1
- package/dist/coh-content-db-homecoming.mjs +1422 -188
- package/dist/coh-content-db-homecoming.mjs.map +1 -1
- package/jest.config.mjs +4 -0
- package/package.json +18 -18
- package/src/main/resources/images/badges/accolade/mazebreaker.png +0 -0
- package/src/main/resources/images/badges/accomplishment/brass-tax.png +0 -0
- package/src/main/resources/images/badges/accomplishment/business-savvy.png +0 -0
- package/src/main/resources/images/badges/accomplishment/chromatic-combatant.png +0 -0
- package/src/main/resources/images/badges/accomplishment/front-person.png +0 -0
- package/src/main/resources/images/badges/accomplishment/generational-trauma.png +0 -0
- package/src/main/resources/images/badges/accomplishment/heart-of-gold.png +0 -0
- package/src/main/resources/images/badges/accomplishment/justified-ends.png +0 -0
- package/src/main/resources/images/badges/accomplishment/psychopomp.png +0 -0
- package/src/main/resources/images/badges/accomplishment/staring-into-the-abyss.png +0 -0
- package/src/main/resources/images/badges/accomplishment/tested-by-combat.png +0 -0
- package/src/main/resources/images/badges/accomplishment/thicker-than-water.png +0 -0
- package/src/main/resources/images/badges/accomplishment/truth-seeker.png +0 -0
- package/src/main/resources/images/badges/accomplishment/uncomfortable-truths.png +0 -0
- package/src/main/resources/images/badges/achievement/master-of-zoes-task-force.png +0 -0
- package/src/main/resources/images/badges/achievement/tf-zoe.png +0 -0
- package/src/main/resources/images/badges/achievement/variety-act-h.png +0 -0
- package/src/main/resources/images/badges/achievement/variety-act-v.png +0 -0
- package/src/main/resources/images/badges/defeat/mutated-marauder.png +0 -0
- package/src/main/resources/images/badges/defeat/peacekeeper.png +0 -0
- package/src/main/resources/images/badges/defeat/two-birds-one-stone.png +0 -0
- package/src/main/resources/images/badges/event/home-for-the-holidays.png +0 -0
- package/src/main/resources/images/badges/event/hypothermia.png +0 -0
- package/src/main/resources/images/badges/event/license-to-chill.png +0 -0
- package/src/main/ts/badge/accolade/_accolade-badges.ts +4 -0
- package/src/main/ts/badge/accolade/atlas-tour-guide.ts +2 -2
- package/src/main/ts/badge/accolade/between-realities.ts +1 -1
- package/src/main/ts/badge/accolade/mazebreaker.ts +23 -0
- package/src/main/ts/badge/accolade/protector-of-paragon-city.ts +2 -2
- package/src/main/ts/badge/accolade/the-prettiest-one.ts +33 -0
- package/src/main/ts/badge/accolade/walked-down-memory-lane.ts +2 -2
- package/src/main/ts/badge/accomplishment/_accomplishment-badges.ts +26 -0
- package/src/main/ts/badge/accomplishment/brass-tax.ts +20 -0
- package/src/main/ts/badge/accomplishment/business-savvy.ts +19 -0
- package/src/main/ts/badge/accomplishment/chromatic-combatant.ts +17 -0
- package/src/main/ts/badge/accomplishment/front-person.ts +19 -0
- package/src/main/ts/badge/accomplishment/generational-trauma.ts +21 -0
- package/src/main/ts/badge/accomplishment/heart-of-gold.ts +19 -0
- package/src/main/ts/badge/accomplishment/justified-ends.ts +19 -0
- package/src/main/ts/badge/accomplishment/psychopomp.ts +20 -0
- package/src/main/ts/badge/accomplishment/staring-into-the-abyss.ts +20 -0
- package/src/main/ts/badge/accomplishment/tested-by-combat.ts +17 -0
- package/src/main/ts/badge/accomplishment/thicker-than-water.ts +19 -0
- package/src/main/ts/badge/accomplishment/truth-seeker.ts +20 -0
- package/src/main/ts/badge/accomplishment/uncomfortable-truths.ts +20 -0
- package/src/main/ts/badge/achievement/_achievement-badges.ts +12 -0
- package/src/main/ts/badge/achievement/cataclysmic.ts +1 -1
- package/src/main/ts/badge/achievement/decimator.ts +1 -1
- package/src/main/ts/badge/achievement/eliminator.ts +1 -1
- package/src/main/ts/badge/achievement/eradicator.ts +1 -1
- package/src/main/ts/badge/achievement/executioner.ts +1 -1
- package/src/main/ts/badge/achievement/jailbreaker.ts +17 -0
- package/src/main/ts/badge/achievement/knockback-king.ts +20 -0
- package/src/main/ts/badge/achievement/master-of-zoes-task-force.ts +26 -0
- package/src/main/ts/badge/achievement/relentless.ts +1 -1
- package/src/main/ts/badge/achievement/snow-warning.ts +17 -0
- package/src/main/ts/badge/achievement/subterranean-striker.ts +17 -0
- package/src/main/ts/badge/achievement/until-the-end-of-the-world.ts +1 -1
- package/src/main/ts/badge/defeat/_defeat-badges.ts +6 -0
- package/src/main/ts/badge/defeat/mutated-marauder.ts +17 -0
- package/src/main/ts/badge/defeat/peacekeeper.ts +21 -0
- package/src/main/ts/badge/defeat/two-birds-one-stone.ts +17 -0
- package/src/main/ts/badge/event/_event-badges.ts +46 -46
- package/src/main/ts/badge/event/home-for-the-holidays.ts +1 -1
- package/src/main/ts/badge/event/hypothermia.ts +1 -1
- package/src/main/ts/badge/event/license-to-chill.ts +1 -1
- package/src/main/ts/badge/event/snowbound.ts +1 -1
- package/src/main/ts/badge/exploration/_exploration-badges.ts +10 -2
- package/src/main/ts/badge/exploration/fueled-by-greed.ts +21 -0
- package/src/main/ts/badge/exploration/in-their-prime.ts +22 -0
- package/src/main/ts/badge/exploration/lucid-dreamer.ts +20 -0
- package/src/main/ts/badge/exploration/marked-out.ts +19 -0
- package/src/main/ts/badge/exploration/on-the-shoulders-of-giants.ts +1 -1
- package/src/main/ts/badge/exploration/protest-too-much.ts +20 -0
- package/src/main/ts/badge/exploration/quay-to-the-city.ts +22 -0
- package/src/main/ts/badge/exploration/raving-mad.ts +19 -0
- package/src/main/ts/badge/exploration/tourist-trapped.ts +20 -0
- package/src/main/ts/badge/exploration/tried-and-true.ts +2 -2
- package/src/main/ts/badge/gladiator/mob-specialist.ts +1 -1
- package/src/main/ts/badge/history/_history-badges.ts +6 -0
- package/src/main/ts/badge/history/bicentennial.ts +1 -1
- package/src/main/ts/badge/history/christie-consolidation.ts +92 -0
- package/src/main/ts/badge/history/flagtown-memorialist.ts +68 -0
- package/src/main/ts/badge/history/patron-of-the-arts.ts +49 -0
- package/src/main/ts/contact/_contacts.ts +14 -0
- package/src/main/ts/contact/adelard-ziegler.ts +12 -0
- package/src/main/ts/contact/alexander-the-great.ts +12 -0
- package/src/main/ts/contact/dap-dap-tha-deal-maka.ts +12 -0
- package/src/main/ts/contact/erin-west.ts +12 -0
- package/src/main/ts/contact/robert-kogan.ts +12 -0
- package/src/main/ts/contact/wyllie-galloway.ts +12 -0
- package/src/main/ts/contact/zoe-langston.ts +12 -0
- package/src/main/ts/homecoming.ts +1 -1
- package/src/main/ts/mission/_missions.ts +14 -0
- package/src/main/ts/mission/cutting-back-old-growth.ts +18 -0
- package/src/main/ts/mission/death-resurrected.ts +19 -0
- package/src/main/ts/mission/hunting-the-hunters.ts +18 -0
- package/src/main/ts/mission/know-thy-enemy.ts +18 -0
- package/src/main/ts/mission/mergers-and-acquisitions.ts +18 -0
- package/src/main/ts/mission/the-sunlight-and-the-spotlight.ts +18 -0
- package/src/main/ts/mission/zoe-task-force.ts +14 -0
- package/src/main/ts/zone/_zones.ts +0 -2
- package/src/main/ts/zone/abandoned-sewer-network.ts +3 -0
- package/src/main/ts/zone/abandoned-sewers-trial.ts +3 -0
- package/src/main/ts/zone/architect-entertainment-buildings.ts +1 -0
- package/src/main/ts/zone/arena-cage-match.ts +2 -0
- package/src/main/ts/zone/atlas-park.ts +3 -0
- package/src/main/ts/zone/black-shroud-dimension.ts +5 -1
- package/src/main/ts/zone/bloody-bay.ts +3 -0
- package/src/main/ts/zone/boomtown.ts +3 -0
- package/src/main/ts/zone/breakout.ts +3 -0
- package/src/main/ts/zone/brickstown.ts +3 -0
- package/src/main/ts/zone/cap-au-diable.ts +3 -0
- package/src/main/ts/zone/cascade-archipelago.ts +3 -0
- package/src/main/ts/zone/cimerora.ts +3 -0
- package/src/main/ts/zone/creys-folly.ts +3 -0
- package/src/main/ts/zone/croatoa.ts +3 -0
- package/src/main/ts/zone/dark-astoria.ts +3 -0
- package/src/main/ts/zone/echo-atlas-park.ts +7 -1
- package/src/main/ts/zone/echo-dark-astoria.ts +3 -0
- package/src/main/ts/zone/echo-faultline.ts +7 -1
- package/src/main/ts/zone/echo-galaxy-city.ts +3 -0
- package/src/main/ts/zone/echo-rikti-crash-site.ts +4 -1
- package/src/main/ts/zone/eden.ts +3 -0
- package/src/main/ts/zone/faultline.ts +3 -0
- package/src/main/ts/zone/firebase-zulu.ts +3 -0
- package/src/main/ts/zone/first-ward.ts +3 -0
- package/src/main/ts/zone/founders-falls.ts +3 -0
- package/src/main/ts/zone/grandville.ts +3 -0
- package/src/main/ts/zone/hydra-missions.ts +7 -1
- package/src/main/ts/zone/imperial-city.ts +3 -0
- package/src/main/ts/zone/independence-port.ts +3 -0
- package/src/main/ts/zone/kallisti-wharf.ts +4 -0
- package/src/main/ts/zone/kings-row.ts +3 -0
- package/src/main/ts/zone/mayhem-atlas-park.ts +3 -0
- package/src/main/ts/zone/mayhem-brickstown.ts +3 -0
- package/src/main/ts/zone/mayhem-founders-falls.ts +3 -0
- package/src/main/ts/zone/mayhem-independence-port.ts +3 -0
- package/src/main/ts/zone/mayhem-kings-row.ts +3 -0
- package/src/main/ts/zone/mayhem-peregrine-island.ts +3 -0
- package/src/main/ts/zone/mayhem-skyway-city.ts +3 -0
- package/src/main/ts/zone/mayhem-steel-canyon.ts +3 -0
- package/src/main/ts/zone/mayhem-talos-island.ts +3 -0
- package/src/main/ts/zone/mercy-island.ts +3 -0
- package/src/main/ts/zone/midnighter-club.ts +3 -0
- package/src/main/ts/zone/monster-island.ts +3 -0
- package/src/main/ts/zone/nerva-archipelago.ts +3 -0
- package/src/main/ts/zone/neutropolis.ts +3 -0
- package/src/main/ts/zone/night-ward.ts +3 -0
- package/src/main/ts/zone/nova-praetoria.ts +3 -0
- package/src/main/ts/zone/ouroboros.ts +3 -0
- package/src/main/ts/zone/paragon-dance-party.ts +3 -0
- package/src/main/ts/zone/peregrine-island.ts +3 -0
- package/src/main/ts/zone/perez-park.ts +3 -0
- package/src/main/ts/zone/phone.ts +2 -0
- package/src/main/ts/zone/pocket-d.ts +3 -0
- package/src/main/ts/zone/port-oakes.ts +3 -0
- package/src/main/ts/zone/recluses-victory.ts +3 -0
- package/src/main/ts/zone/rikti-war-zone.ts +3 -0
- package/src/main/ts/zone/safeguard-atlas-park.ts +3 -0
- package/src/main/ts/zone/safeguard-brickstown.ts +3 -0
- package/src/main/ts/zone/safeguard-founders-falls.ts +3 -0
- package/src/main/ts/zone/safeguard-independence-port.ts +3 -0
- package/src/main/ts/zone/safeguard-kings-row.ts +3 -0
- package/src/main/ts/zone/safeguard-peregrine-island.ts +3 -0
- package/src/main/ts/zone/safeguard-skyway-city.ts +3 -0
- package/src/main/ts/zone/safeguard-steel-canyon.ts +3 -0
- package/src/main/ts/zone/safeguard-talos-island.ts +3 -0
- package/src/main/ts/zone/sewer-network.ts +3 -0
- package/src/main/ts/zone/sharkhead-isle.ts +3 -0
- package/src/main/ts/zone/sirens-call.ts +3 -0
- package/src/main/ts/zone/skyway-city.ts +3 -0
- package/src/main/ts/zone/st-martial.ts +3 -0
- package/src/main/ts/zone/steel-canyon.ts +3 -0
- package/src/main/ts/zone/striga-isle.ts +3 -0
- package/src/main/ts/zone/studio-55.ts +6 -1
- package/src/main/ts/zone/talos-island.ts +3 -0
- package/src/main/ts/zone/terra-volta.ts +3 -0
- package/src/main/ts/zone/the-abyss.ts +3 -0
- package/src/main/ts/zone/the-chantry.ts +3 -0
- package/src/main/ts/zone/the-hive.ts +3 -0
- package/src/main/ts/zone/the-hollows.ts +3 -0
- package/src/main/ts/zone/the-labyrinth-of-fog.ts +3 -0
- package/src/main/ts/zone/the-storm-palace.ts +3 -0
- package/src/main/ts/zone/underground-imperial.ts +3 -0
- package/src/main/ts/zone/underground-neutropolis.ts +3 -0
- package/src/main/ts/zone/underground-nova.ts +3 -0
- package/src/main/ts/zone/warburg.ts +3 -0
- package/src/test/ts/link-tests.test.ts +1 -1
- package/src/test/ts/mission.test.ts +20 -0
- package/src/main/ts/zone/praetoria.ts +0 -7
- /package/src/main/resources/images/badges/event/{winter-login.png → snowbound.png} +0 -0
- /package/src/main/{lint/utils/rollup-replace.ts → ts/utils/bundle-metadata.ts} +0 -0
|
@@ -5,519 +5,863 @@ var cohContentDb = require('coh-content-db');
|
|
|
5
5
|
const AbandonedSewerNetwork = {
|
|
6
6
|
key: "abandoned-sewer-network",
|
|
7
7
|
name: "Abandoned Sewer Network",
|
|
8
|
+
type: "trial",
|
|
9
|
+
morality: "heroic",
|
|
10
|
+
levelRange: [36, 40],
|
|
8
11
|
links: [{ title: "Abandoned Sewer Network", href: "https://homecoming.wiki/wiki/Abandoned_Sewer_Network" }]
|
|
9
12
|
};
|
|
10
13
|
|
|
11
14
|
const AbandonedSewersTrial$1 = {
|
|
12
15
|
key: "abandoned-sewers-trial",
|
|
13
16
|
name: "Abandoned Sewers Trial",
|
|
17
|
+
type: "trial",
|
|
18
|
+
morality: "heroic",
|
|
19
|
+
levelRange: 38,
|
|
14
20
|
links: [{ title: "Abandoned Sewers Trial", href: "https://homecoming.wiki/wiki/Abandoned_Sewers_Trial" }]
|
|
15
21
|
};
|
|
16
22
|
|
|
17
23
|
const ArchitectEntertainmentBuildings = {
|
|
18
24
|
key: "architect-entertainment-buildings",
|
|
19
25
|
name: "Architect Entertainment Buildings",
|
|
26
|
+
type: "building",
|
|
20
27
|
links: [{ title: "Architect Entertainment Buildings", href: "https://homecoming.wiki/wiki/Architect_Entertainment_Buildings" }]
|
|
21
28
|
};
|
|
22
29
|
|
|
23
30
|
const ArenaCageMatch = {
|
|
24
31
|
key: "arena-cage-match",
|
|
25
|
-
name: "Arena: Cage Match"
|
|
32
|
+
name: "Arena: Cage Match",
|
|
33
|
+
type: "arena",
|
|
34
|
+
links: [{ title: "Arena", href: "https://homecoming.wiki/wiki/Arena" }]
|
|
26
35
|
};
|
|
27
36
|
|
|
28
37
|
const AtlasPark = {
|
|
29
38
|
key: "atlas-park",
|
|
30
39
|
name: "Atlas Park",
|
|
40
|
+
type: "city",
|
|
41
|
+
morality: "heroic",
|
|
42
|
+
levelRange: [1, 6],
|
|
31
43
|
links: [{ title: "Atlas Park", href: "https://homecoming.wiki/wiki/Atlas_Park" }]
|
|
32
44
|
};
|
|
33
45
|
|
|
46
|
+
const PeregrineIsland = {
|
|
47
|
+
key: "peregrine-island",
|
|
48
|
+
name: "Peregrine Island",
|
|
49
|
+
type: "city",
|
|
50
|
+
morality: "heroic",
|
|
51
|
+
levelRange: [41, 50],
|
|
52
|
+
links: [{ title: "Peregrine Island", href: "https://homecoming.wiki/wiki/Peregrine_Island" }]
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
const MariaJenkins = {
|
|
56
|
+
key: "maria-jenkins",
|
|
57
|
+
name: "Maria Jenkins",
|
|
58
|
+
title: "Former Heroine",
|
|
59
|
+
morality: "heroic",
|
|
60
|
+
location: { zoneKey: PeregrineIsland.key, coords: [-1043, 0, -2783] },
|
|
61
|
+
levelRange: [45, 50],
|
|
62
|
+
links: [{ title: "Maria Jenkins", href: "https://homecoming.wiki/wiki/Maria_Jenkins" }]
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
const TakeDownNightstar = {
|
|
66
|
+
key: "take-down-nightstar",
|
|
67
|
+
name: "Take down Nightstar",
|
|
68
|
+
type: "mission",
|
|
69
|
+
morality: "heroic",
|
|
70
|
+
contactKeys: MariaJenkins.key,
|
|
71
|
+
levelRange: [45, 50],
|
|
72
|
+
links: [
|
|
73
|
+
{ title: "Take down Nightstar", href: "https://homecoming.wiki/wiki/Maria_Jenkins#Take_down_Nightstar" }
|
|
74
|
+
]
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
const CapAuDiable = {
|
|
78
|
+
key: "cap-au-diable",
|
|
79
|
+
name: "Cap Au Diable",
|
|
80
|
+
type: "city",
|
|
81
|
+
morality: "villainous",
|
|
82
|
+
levelRange: [8, 20],
|
|
83
|
+
links: [{ title: "Cap Au Diable", href: "https://homecoming.wiki/wiki/Cap_au_Diable" }]
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const DmitriKrylov = {
|
|
87
|
+
key: "dmitri-krylov",
|
|
88
|
+
name: "Dmitri Krylov",
|
|
89
|
+
title: "Metahuman Researcher",
|
|
90
|
+
morality: "villainous",
|
|
91
|
+
location: { zoneKey: CapAuDiable.key, coords: [2878, -72, -182] },
|
|
92
|
+
levelRange: [10, 14],
|
|
93
|
+
links: [{ title: "Dmitri Krylov", href: "https://homecoming.wiki/wiki/Dmitri_Krylov" }]
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
const BringCitizensToVahzilokSurgeons = {
|
|
97
|
+
key: "bring-citizens-to-vahzilok-surgeons",
|
|
98
|
+
name: "Bring citizens to Vahzilok surgeons",
|
|
99
|
+
type: "mission",
|
|
100
|
+
morality: "villainous",
|
|
101
|
+
contactKeys: DmitriKrylov.key,
|
|
102
|
+
levelRange: [10, 14],
|
|
103
|
+
links: [
|
|
104
|
+
{ title: "Bring citizens to Vahzilok surgeons", href: "https://homecoming.wiki/wiki/Dmitri_Krylov#Bring_citizens_to_Vahzilok_surgeons" }
|
|
105
|
+
]
|
|
106
|
+
};
|
|
107
|
+
|
|
34
108
|
const BlackShroudDimension = {
|
|
35
109
|
key: "black-shroud-dimension",
|
|
36
110
|
name: "Black Shroud Dimension",
|
|
111
|
+
type: "mission",
|
|
112
|
+
notes: `Located in the ${cohContentDb.missionLink(TakeDownNightstar)} and ${cohContentDb.missionLink(BringCitizensToVahzilokSurgeons)} missions.`,
|
|
37
113
|
links: [{ title: "Shrouded Badge", href: "https://homecoming.wiki/wiki/Shrouded_Badge" }]
|
|
38
114
|
};
|
|
39
115
|
|
|
40
116
|
const BloodyBay = {
|
|
41
117
|
key: "bloody-bay",
|
|
42
118
|
name: "Bloody Bay",
|
|
119
|
+
type: "pvp",
|
|
120
|
+
morality: "all",
|
|
121
|
+
levelRange: [25, 25],
|
|
43
122
|
links: [{ title: "Bloody Bay", href: "https://homecoming.wiki/wiki/Bloody_Bay" }]
|
|
44
123
|
};
|
|
45
124
|
|
|
46
125
|
const Boomtown = {
|
|
47
126
|
key: "boomtown",
|
|
48
127
|
name: "Boomtown",
|
|
128
|
+
type: "hazard",
|
|
129
|
+
morality: "heroic",
|
|
130
|
+
levelRange: [11, 19],
|
|
49
131
|
links: [{ title: "Boomtown", href: "https://homecoming.wiki/wiki/Boomtown" }]
|
|
50
132
|
};
|
|
51
133
|
|
|
52
134
|
const Breakout = {
|
|
53
135
|
key: "breakout",
|
|
54
136
|
name: "Breakout",
|
|
137
|
+
type: "tutorial",
|
|
138
|
+
morality: "villain",
|
|
139
|
+
levelRange: [1, 1],
|
|
55
140
|
links: [{ title: "Breakout", href: "https://homecoming.wiki/wiki/Breakout" }]
|
|
56
141
|
};
|
|
57
142
|
|
|
58
143
|
const Brickstown = {
|
|
59
144
|
key: "brickstown",
|
|
60
145
|
name: "Brickstown",
|
|
146
|
+
type: "city",
|
|
147
|
+
morality: "heroic",
|
|
148
|
+
levelRange: [30, 38],
|
|
61
149
|
links: [{ title: "Brickstown", href: "https://homecoming.wiki/wiki/Brickstown" }]
|
|
62
150
|
};
|
|
63
151
|
|
|
64
|
-
const CapAuDiable = {
|
|
65
|
-
key: "cap-au-diable",
|
|
66
|
-
name: "Cap Au Diable",
|
|
67
|
-
links: [{ title: "Cap Au Diable", href: "https://homecoming.wiki/wiki/Cap_au_Diable" }]
|
|
68
|
-
};
|
|
69
|
-
|
|
70
152
|
const CascadeArchipelago = {
|
|
71
153
|
key: "cascade-archipelago",
|
|
72
154
|
name: "Cascade Archipelago",
|
|
155
|
+
type: "hazard",
|
|
156
|
+
morality: "heroic",
|
|
157
|
+
levelRange: [40, 44],
|
|
73
158
|
links: [{ title: "Cascade Archipelago", href: "https://homecoming.wiki/wiki/Cascade_Archipelago" }]
|
|
74
159
|
};
|
|
75
160
|
|
|
76
161
|
const Cimerora = {
|
|
77
162
|
key: "cimerora",
|
|
78
163
|
name: "Cimerora",
|
|
164
|
+
type: "co-op",
|
|
165
|
+
morality: "all",
|
|
166
|
+
levelRange: 35,
|
|
79
167
|
links: [{ title: "Cimerora", href: "https://homecoming.wiki/wiki/Cimerora" }]
|
|
80
168
|
};
|
|
81
169
|
|
|
82
170
|
const CreysFolly = {
|
|
83
171
|
key: "creys-folly",
|
|
84
172
|
name: `Crey's Folly`,
|
|
173
|
+
type: "hazard",
|
|
174
|
+
morality: "heroic",
|
|
175
|
+
levelRange: [31, 39],
|
|
85
176
|
links: [{ title: `Crey's Folly`, href: "https://homecoming.wiki/wiki/Crey%27s_Folly" }]
|
|
86
177
|
};
|
|
87
178
|
|
|
88
179
|
const Croatoa = {
|
|
89
180
|
key: "croatoa",
|
|
90
181
|
name: "Croatoa",
|
|
182
|
+
type: "city",
|
|
183
|
+
morality: "heroic",
|
|
184
|
+
levelRange: [25, 34],
|
|
91
185
|
links: [{ title: "Croatoa", href: "https://homecoming.wiki/wiki/Croatoa" }]
|
|
92
186
|
};
|
|
93
187
|
|
|
94
188
|
const DarkAstoria = {
|
|
95
189
|
key: "dark-astoria",
|
|
96
190
|
name: "Dark Astoria",
|
|
191
|
+
type: "co-op",
|
|
192
|
+
morality: "all",
|
|
193
|
+
levelRange: [50, 54],
|
|
97
194
|
links: [{ title: "Dark Astoria", href: "https://homecoming.wiki/wiki/Dark_Astoria" }]
|
|
98
195
|
};
|
|
99
196
|
|
|
100
197
|
const EchoAtlasPark = {
|
|
101
198
|
key: "echo-atlas-park",
|
|
102
199
|
name: "Echo: Atlas Park",
|
|
103
|
-
|
|
200
|
+
type: "echo",
|
|
201
|
+
morality: "heroic",
|
|
202
|
+
levelRange: [1, 6],
|
|
203
|
+
links: [
|
|
204
|
+
{ title: "Echo: Atlas Park", href: "https://homecoming.wiki/wiki/Echo:_Atlas_Park" },
|
|
205
|
+
{ title: "Echo: Atlas Park Badge Guide", href: "https://forums.homecomingservers.com/topic/881-echo-atlas-park-badge-guide/" }
|
|
206
|
+
]
|
|
104
207
|
};
|
|
105
208
|
|
|
106
209
|
const EchoDarkAstoria = {
|
|
107
210
|
key: "echo-dark-astoria",
|
|
108
211
|
name: "Echo: Dark Astoria",
|
|
212
|
+
type: "echo",
|
|
213
|
+
morality: "heroic",
|
|
214
|
+
levelRange: [21, 29],
|
|
109
215
|
links: [{ title: "Echo: Dark Astoria", href: "https://homecoming.wiki/wiki/Echo:_Dark_Astoria" }]
|
|
110
216
|
};
|
|
111
217
|
|
|
112
218
|
const EchoFaultline = {
|
|
113
219
|
key: "echo-faultline",
|
|
114
220
|
name: "Echo: Faultline",
|
|
115
|
-
|
|
221
|
+
type: "echo",
|
|
222
|
+
morality: "heroic",
|
|
223
|
+
levelRange: [15, 25],
|
|
224
|
+
links: [
|
|
225
|
+
{ title: "Echo: Faultline", href: "https://homecoming.wiki/wiki/Echo:_Faultline" },
|
|
226
|
+
{ title: "I25 Faultline badge changes", href: "https://forums.homecomingservers.com/topic/931-echo-falutline-badger-hunter-helpline/" }
|
|
227
|
+
]
|
|
116
228
|
};
|
|
117
229
|
|
|
118
230
|
const EchoGalaxyCity = {
|
|
119
231
|
key: "echo-galaxy-city",
|
|
120
232
|
name: "Echo: Galaxy City",
|
|
233
|
+
type: "echo",
|
|
234
|
+
morality: "heroic",
|
|
235
|
+
levelRange: [1, 6],
|
|
121
236
|
links: [{ title: "Echo: Galaxy City", href: "https://homecoming.wiki/wiki/Echo:_Galaxy_City" }]
|
|
122
237
|
};
|
|
123
238
|
|
|
124
239
|
const EchoRiktiCrashSite = {
|
|
125
240
|
key: "echo-rikti-crash-site",
|
|
126
241
|
name: "Echo: Rikti Crash Site",
|
|
127
|
-
|
|
242
|
+
type: "echo",
|
|
243
|
+
morality: "heroic",
|
|
244
|
+
levelRange: [40, 50],
|
|
245
|
+
links: [{ title: "Echo: Rikti Crash Site", href: "https://homecoming.wiki/wiki/Echo:_Rikti_Crash_Site" }]
|
|
128
246
|
};
|
|
129
247
|
|
|
130
248
|
const Eden = {
|
|
131
249
|
key: "eden",
|
|
132
250
|
name: "Eden",
|
|
251
|
+
type: "trial",
|
|
252
|
+
morality: "heroic",
|
|
253
|
+
levelRange: [33, 39],
|
|
133
254
|
links: [{ title: "Eden", href: "https://homecoming.wiki/wiki/Eden" }]
|
|
134
255
|
};
|
|
135
256
|
|
|
136
257
|
const Faultline = {
|
|
137
258
|
key: "faultline",
|
|
138
259
|
name: "Faultline",
|
|
260
|
+
type: "city",
|
|
261
|
+
morality: "heroic",
|
|
262
|
+
levelRange: [15, 25],
|
|
139
263
|
links: [{ title: "Faultline", href: "https://homecoming.wiki/wiki/Faultline" }]
|
|
140
264
|
};
|
|
141
265
|
|
|
142
266
|
const FirebaseZulu = {
|
|
143
267
|
key: "firebase-zulu",
|
|
144
268
|
name: "Firebase Zulu",
|
|
269
|
+
type: "hazard",
|
|
270
|
+
morality: "heroic",
|
|
271
|
+
levelRange: [40, 44],
|
|
145
272
|
links: [{ title: "Firebase Zulu", href: "https://homecoming.wiki/wiki/Firebase_Zulu" }]
|
|
146
273
|
};
|
|
147
274
|
|
|
148
275
|
const FirstWard = {
|
|
149
276
|
key: "first-ward",
|
|
150
277
|
name: "First Ward",
|
|
278
|
+
type: "co-op",
|
|
279
|
+
morality: "all",
|
|
280
|
+
levelRange: [20, 30],
|
|
151
281
|
links: [{ title: "First Ward", href: "https://homecoming.wiki/wiki/First_Ward" }]
|
|
152
282
|
};
|
|
153
283
|
|
|
154
284
|
const FoundersFalls = {
|
|
155
285
|
key: "founders-falls",
|
|
156
286
|
name: `Founders' Falls`,
|
|
287
|
+
type: "city",
|
|
288
|
+
morality: "heroic",
|
|
289
|
+
levelRange: [31, 40],
|
|
157
290
|
links: [{ title: `Founders' Falls`, href: "https://homecoming.wiki/wiki/Founders%27_Falls" }]
|
|
158
291
|
};
|
|
159
292
|
|
|
160
293
|
const Grandville = {
|
|
161
294
|
key: "grandville",
|
|
162
295
|
name: "Grandville",
|
|
296
|
+
type: "city",
|
|
297
|
+
morality: "villainous",
|
|
298
|
+
levelRange: [40, 50],
|
|
163
299
|
links: [{ title: "Grandville", href: "https://homecoming.wiki/wiki/Grandville" }]
|
|
164
300
|
};
|
|
165
301
|
|
|
302
|
+
const TinaMacintyre = {
|
|
303
|
+
key: "tina-macintyre",
|
|
304
|
+
name: "Tina Macintyre",
|
|
305
|
+
title: "Portal Corporation Research Scientist",
|
|
306
|
+
morality: "heroic",
|
|
307
|
+
location: { zoneKey: PeregrineIsland.key, coords: [-1680.5, 0, -3638.5] },
|
|
308
|
+
levelRange: [40, 45],
|
|
309
|
+
links: [{ title: "Tina Macintyre", href: "https://homecoming.wiki/wiki/Tina_Macintyre" }]
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
const TheHydraDimension = {
|
|
313
|
+
key: "the-hydra-dimension",
|
|
314
|
+
name: "The Hydra Dimension",
|
|
315
|
+
type: "mission",
|
|
316
|
+
morality: "heroic",
|
|
317
|
+
contactKeys: TinaMacintyre.key,
|
|
318
|
+
levelRange: [45, 50],
|
|
319
|
+
links: [
|
|
320
|
+
{ title: "The Hydra Dimension", href: "https://homecoming.wiki/wiki/Tina_Macintyre#The_Hydra_Dimension_(40-45)" }
|
|
321
|
+
]
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
const UnaiKemen = {
|
|
325
|
+
key: "unai-kemen",
|
|
326
|
+
name: "Unai Kemen",
|
|
327
|
+
title: "Portal Corp Security Chief",
|
|
328
|
+
morality: "heroic",
|
|
329
|
+
location: { zoneKey: PeregrineIsland.key, coords: [-1519.5, 0.5, -3425] },
|
|
330
|
+
levelRange: [45, 50],
|
|
331
|
+
links: [{ title: "Unai Kemen", href: "https://homecoming.wiki/wiki/Unai_Kemen" }]
|
|
332
|
+
};
|
|
333
|
+
|
|
334
|
+
const GetSomeSamplesOfHydraManDna = {
|
|
335
|
+
key: "get-some-samples-of-hydra-man-dna",
|
|
336
|
+
name: "Get some samples of Hydra Man DNA",
|
|
337
|
+
type: "mission",
|
|
338
|
+
morality: "heroic",
|
|
339
|
+
contactKeys: UnaiKemen.key,
|
|
340
|
+
levelRange: [45, 50],
|
|
341
|
+
links: [
|
|
342
|
+
{ title: "Get some samples of Hydra Man DNA", href: "https://homecoming.wiki/wiki/Unai_Kemen#Get_some_samples_of_Hydra_Man_DNA" }
|
|
343
|
+
]
|
|
344
|
+
};
|
|
345
|
+
|
|
166
346
|
const HydraMissionMap = {
|
|
167
347
|
key: "hydra-mission-map",
|
|
168
348
|
name: "Hydra Mission Map",
|
|
349
|
+
type: "mission",
|
|
350
|
+
morality: "heroic",
|
|
351
|
+
levelRange: [36, 40],
|
|
352
|
+
notes: `Located within the ${cohContentDb.missionLink(TheHydraDimension)} and ${cohContentDb.missionLink(GetSomeSamplesOfHydraManDna)} missions.`,
|
|
169
353
|
links: [{ title: "Hydra Missions", href: "https://homecoming.wiki/wiki/Multidimensional_Badge" }]
|
|
170
354
|
};
|
|
171
355
|
|
|
172
356
|
const ImperialCity = {
|
|
173
357
|
key: "imperial-city",
|
|
174
358
|
name: "Imperial City",
|
|
359
|
+
type: "city",
|
|
360
|
+
morality: "praetorian",
|
|
361
|
+
levelRange: [9, 15],
|
|
175
362
|
links: [{ title: "Imperial City", href: "https://homecoming.wiki/wiki/Imperial_City" }]
|
|
176
363
|
};
|
|
177
364
|
|
|
178
365
|
const IndependencePort = {
|
|
179
366
|
key: "independence-port",
|
|
180
367
|
name: "Independence Port",
|
|
368
|
+
type: "city",
|
|
369
|
+
morality: "heroic",
|
|
370
|
+
levelRange: [20, 30],
|
|
181
371
|
links: [{ title: "Independence Port", href: "https://homecoming.wiki/wiki/Independence_Port" }]
|
|
182
372
|
};
|
|
183
373
|
|
|
184
374
|
const KallistiWharf = {
|
|
185
375
|
key: "kallisti-wharf",
|
|
186
|
-
name: "Kallisti Wharf"
|
|
376
|
+
name: "Kallisti Wharf",
|
|
377
|
+
type: "co-op",
|
|
378
|
+
morality: "all",
|
|
379
|
+
levelRange: [40, 50],
|
|
380
|
+
links: [{ title: "Kallisti Wharf", href: "https://homecoming.wiki/wiki/Kallisti_Wharf" }]
|
|
187
381
|
};
|
|
188
382
|
|
|
189
383
|
const KingsRow = {
|
|
190
384
|
key: "kings-row",
|
|
191
385
|
name: "Kings Row",
|
|
386
|
+
type: "city",
|
|
387
|
+
morality: "heroic",
|
|
388
|
+
levelRange: [5, 10],
|
|
192
389
|
links: [{ title: "Kings Row", href: "https://homecoming.wiki/wiki/Kings_Row" }]
|
|
193
390
|
};
|
|
194
391
|
|
|
195
392
|
const MayhemAtlasPark = {
|
|
196
393
|
key: "mayhem-atlas-park",
|
|
197
394
|
name: "Mayhem: Atlas Park",
|
|
395
|
+
type: "mayhem",
|
|
396
|
+
morality: "villainous",
|
|
397
|
+
levelRange: [5, 10],
|
|
198
398
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
199
399
|
};
|
|
200
400
|
|
|
201
401
|
const MayhemBrickstown = {
|
|
202
402
|
key: "mayhem-brickstown",
|
|
203
403
|
name: "Mayhem: Brickstown",
|
|
404
|
+
type: "mayhem",
|
|
405
|
+
morality: "villainous",
|
|
406
|
+
levelRange: [35, 40],
|
|
204
407
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
205
408
|
};
|
|
206
409
|
|
|
207
410
|
const MayhemFoundersFalls = {
|
|
208
411
|
key: "mayhem-founders-falls",
|
|
209
412
|
name: `Mayhem: Founder's Falls`,
|
|
413
|
+
type: "mayhem",
|
|
414
|
+
morality: "villainous",
|
|
415
|
+
levelRange: [40, 45],
|
|
210
416
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
211
417
|
};
|
|
212
418
|
|
|
213
419
|
const MayhemIndependencePort = {
|
|
214
420
|
key: "mayhem-independence-port",
|
|
215
421
|
name: "Mayhem: Independence Port",
|
|
422
|
+
type: "mayhem",
|
|
423
|
+
morality: "villainous",
|
|
424
|
+
levelRange: [25, 30],
|
|
216
425
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
217
426
|
};
|
|
218
427
|
|
|
219
428
|
const MayhemKingsRow = {
|
|
220
429
|
key: "mayhem-kings-row",
|
|
221
430
|
name: "Mayhem: Kings Row",
|
|
431
|
+
type: "mayhem",
|
|
432
|
+
morality: "villainous",
|
|
433
|
+
levelRange: [10, 15],
|
|
222
434
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
223
435
|
};
|
|
224
436
|
|
|
225
437
|
const MayhemPeregrineIsland = {
|
|
226
438
|
key: "mayhem-peregrine-island",
|
|
227
439
|
name: "Mayhem: Peregrine Island",
|
|
440
|
+
type: "mayhem",
|
|
441
|
+
morality: "villainous",
|
|
442
|
+
levelRange: [45, 50],
|
|
228
443
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
229
444
|
};
|
|
230
445
|
|
|
231
446
|
const MayhemSkywayCity = {
|
|
232
447
|
key: "mayhem-skyway-city",
|
|
233
448
|
name: "Mayhem: Skyway City",
|
|
449
|
+
type: "mayhem",
|
|
450
|
+
morality: "villainous",
|
|
451
|
+
levelRange: [15, 20],
|
|
234
452
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
235
453
|
};
|
|
236
454
|
|
|
237
455
|
const MayhemSteelCanyon = {
|
|
238
456
|
key: "mayhem-steel-canyon",
|
|
239
457
|
name: "Mayhem: Steel Canyon",
|
|
458
|
+
type: "mayhem",
|
|
459
|
+
morality: "villainous",
|
|
460
|
+
levelRange: [20, 25],
|
|
240
461
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
241
462
|
};
|
|
242
463
|
|
|
243
464
|
const MayhemTalosIsland = {
|
|
244
465
|
key: "mayhem-talos-island",
|
|
245
466
|
name: "Mayhem: Talos Island",
|
|
467
|
+
type: "mayhem",
|
|
468
|
+
morality: "villainous",
|
|
469
|
+
levelRange: [30, 35],
|
|
246
470
|
links: [{ title: "Mayhem Mission", href: "https://homecoming.wiki/wiki/Mayhem_Mission" }]
|
|
247
471
|
};
|
|
248
472
|
|
|
249
473
|
const MercyIsland = {
|
|
250
474
|
key: "mercy-island",
|
|
251
475
|
name: "Mercy Island",
|
|
476
|
+
type: "city",
|
|
477
|
+
morality: "villainous",
|
|
478
|
+
levelRange: [1, 8],
|
|
252
479
|
links: [{ title: "Mercy Island", href: "https://homecoming.wiki/wiki/Mercy_Island" }]
|
|
253
480
|
};
|
|
254
481
|
|
|
255
482
|
const MidnighterClub = {
|
|
256
483
|
key: "midnighter-club",
|
|
257
484
|
name: "Midnighter Club",
|
|
485
|
+
type: "co-op",
|
|
486
|
+
morality: "all",
|
|
487
|
+
levelRange: 1,
|
|
258
488
|
links: [{ title: "Midnighter Club", href: "https://homecoming.wiki/wiki/Midnighter_Club" }]
|
|
259
489
|
};
|
|
260
490
|
|
|
261
491
|
const MonsterIsland = {
|
|
262
492
|
key: "monster-island",
|
|
263
493
|
name: "Monster Island",
|
|
494
|
+
type: "hazard",
|
|
495
|
+
morality: "villainous",
|
|
496
|
+
levelRange: [45, 50],
|
|
264
497
|
links: [{ title: "Monster Island", href: "https://homecoming.wiki/wiki/Monster_Island" }]
|
|
265
498
|
};
|
|
266
499
|
|
|
267
500
|
const NervaArchipelago = {
|
|
268
501
|
key: "nerva-archipelago",
|
|
269
502
|
name: "Nerva Archipelago",
|
|
503
|
+
type: "city",
|
|
504
|
+
morality: "villainous",
|
|
505
|
+
levelRange: [25, 40],
|
|
270
506
|
links: [{ title: "Nerva Archipelago", href: "https://homecoming.wiki/wiki/Nerva_Archipelago" }]
|
|
271
507
|
};
|
|
272
508
|
|
|
273
509
|
const Neutropolis = {
|
|
274
510
|
key: "neutropolis",
|
|
275
511
|
name: "Neutropolis",
|
|
512
|
+
type: "city",
|
|
513
|
+
morality: "praetorian",
|
|
514
|
+
levelRange: [15, 20],
|
|
276
515
|
links: [{ title: "Neutropolis", href: "https://homecoming.wiki/wiki/Neutropolis" }]
|
|
277
516
|
};
|
|
278
517
|
|
|
279
518
|
const NightWard = {
|
|
280
519
|
key: "night-ward",
|
|
281
520
|
name: "Night Ward",
|
|
521
|
+
type: "co-op",
|
|
522
|
+
morality: "all",
|
|
523
|
+
levelRange: [25, 30],
|
|
282
524
|
links: [{ title: "Night Ward", href: "https://homecoming.wiki/wiki/Night_Ward" }]
|
|
283
525
|
};
|
|
284
526
|
|
|
285
527
|
const NovaPraetoria = {
|
|
286
528
|
key: "nova-praetoria",
|
|
287
529
|
name: "Nova Praetoria",
|
|
530
|
+
type: "city",
|
|
531
|
+
morality: "praetorian",
|
|
532
|
+
levelRange: [1, 9],
|
|
288
533
|
links: [{ title: "Nova Praetoria", href: "https://homecoming.wiki/wiki/Nova_Praetoria" }]
|
|
289
534
|
};
|
|
290
535
|
|
|
291
536
|
const Ouroboros = {
|
|
292
537
|
key: "ouroboros",
|
|
293
538
|
name: "Ouroboros",
|
|
539
|
+
type: "co-op",
|
|
540
|
+
morality: "all",
|
|
541
|
+
levelRange: 15,
|
|
294
542
|
links: [{ title: "Ouroboros", href: "https://homecoming.wiki/wiki/Ouroboros" }]
|
|
295
543
|
};
|
|
296
544
|
|
|
297
545
|
const ParagonDanceParty = {
|
|
298
546
|
key: "paragon-dance-party",
|
|
299
547
|
name: "Paragon Dance Party",
|
|
548
|
+
type: "building",
|
|
549
|
+
morality: "hero",
|
|
550
|
+
levelRange: 1,
|
|
300
551
|
links: [{ title: "Paragon Dance Party", href: "https://homecoming.wiki/wiki/Paragon_Dance_Party" }]
|
|
301
552
|
};
|
|
302
553
|
|
|
303
|
-
const PeregrineIsland = {
|
|
304
|
-
key: "peregrine-island",
|
|
305
|
-
name: "Peregrine Island",
|
|
306
|
-
links: [{ title: "Peregrine Island", href: "https://homecoming.wiki/wiki/Peregrine_Island" }]
|
|
307
|
-
};
|
|
308
|
-
|
|
309
554
|
const PerezPark = {
|
|
310
555
|
key: "perez-park",
|
|
311
556
|
name: "Perez Park",
|
|
557
|
+
type: "hazard",
|
|
558
|
+
morality: "heroic",
|
|
559
|
+
levelRange: [7, 14],
|
|
312
560
|
links: [{ title: "Perez Park", href: "https://homecoming.wiki/wiki/Perez_Park" }]
|
|
313
561
|
};
|
|
314
562
|
|
|
315
563
|
const Phone = {
|
|
316
564
|
key: "phone",
|
|
317
|
-
name: "(Phone Only)"
|
|
565
|
+
name: "(Phone Only)",
|
|
566
|
+
type: "other",
|
|
567
|
+
notes: `Not a physical location\u2014 Used for contacts only accessible via your phone.`
|
|
318
568
|
};
|
|
319
569
|
|
|
320
570
|
const PocketD = {
|
|
321
571
|
key: "pocket-d",
|
|
322
572
|
name: "Pocket D",
|
|
573
|
+
type: "co-op",
|
|
574
|
+
morality: "all",
|
|
575
|
+
levelRange: 1,
|
|
323
576
|
links: [{ title: "Pocket D", href: "https://homecoming.wiki/wiki/Pocket_D" }]
|
|
324
577
|
};
|
|
325
578
|
|
|
326
579
|
const PortOakes = {
|
|
327
580
|
key: "port-oakes",
|
|
328
581
|
name: "Port Oakes",
|
|
582
|
+
type: "city",
|
|
583
|
+
morality: "villainous",
|
|
584
|
+
levelRange: [7, 12],
|
|
329
585
|
links: [{ title: "Port Oakes", href: "https://homecoming.wiki/wiki/Port_Oakes" }]
|
|
330
586
|
};
|
|
331
587
|
|
|
332
|
-
const Praetoria = {
|
|
333
|
-
key: "praetoria",
|
|
334
|
-
name: "Praetoria",
|
|
335
|
-
links: [{ title: "Praetoria", href: "https://homecoming.wiki/wiki/Praetoria" }]
|
|
336
|
-
};
|
|
337
|
-
|
|
338
588
|
const ReclusesVictory = {
|
|
339
589
|
key: "recluses-victory",
|
|
340
590
|
name: `Recluse's Victory`,
|
|
591
|
+
type: "pvp",
|
|
592
|
+
morality: "all",
|
|
593
|
+
levelRange: [50, 50],
|
|
341
594
|
links: [{ title: `Recluse's Victory`, href: "https://homecoming.wiki/wiki/Recluse%27s_Victory" }]
|
|
342
595
|
};
|
|
343
596
|
|
|
344
597
|
const RiktiWarZone = {
|
|
345
598
|
key: "rikti-war-zone",
|
|
346
599
|
name: "Rikti War Zone",
|
|
600
|
+
type: "co-op",
|
|
601
|
+
morality: "all",
|
|
602
|
+
levelRange: [35, 50],
|
|
347
603
|
links: [{ title: "Rikti War Zone", href: "https://homecoming.wiki/wiki/Rikti_War_Zone" }]
|
|
348
604
|
};
|
|
349
605
|
|
|
350
606
|
const SafeguardAtlasPark = {
|
|
351
607
|
key: "safeguard-atlas-park",
|
|
352
608
|
name: "Safeguard: Atlas Park",
|
|
609
|
+
type: "safeguard",
|
|
610
|
+
morality: "heroic",
|
|
611
|
+
levelRange: [5, 10],
|
|
353
612
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
354
613
|
};
|
|
355
614
|
|
|
356
615
|
const SafeguardBrickstown = {
|
|
357
616
|
key: "safeguard-brickstown",
|
|
358
617
|
name: "Safeguard: Brickstown",
|
|
618
|
+
type: "safeguard",
|
|
619
|
+
morality: "heroic",
|
|
620
|
+
levelRange: [35, 40],
|
|
359
621
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
360
622
|
};
|
|
361
623
|
|
|
362
624
|
const SafeguardFoundersFalls = {
|
|
363
625
|
key: "safeguard-founders-falls",
|
|
364
626
|
name: `Safeguard: Founder's Falls`,
|
|
627
|
+
type: "safeguard",
|
|
628
|
+
morality: "heroic",
|
|
629
|
+
levelRange: [40, 45],
|
|
365
630
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
366
631
|
};
|
|
367
632
|
|
|
368
633
|
const SafeguardIndependencePort = {
|
|
369
634
|
key: "safeguard-independence-port",
|
|
370
635
|
name: "Safeguard: Independence Port",
|
|
636
|
+
type: "safeguard",
|
|
637
|
+
morality: "heroic",
|
|
638
|
+
levelRange: [25, 30],
|
|
371
639
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
372
640
|
};
|
|
373
641
|
|
|
374
642
|
const SafeguardKingsRow = {
|
|
375
643
|
key: "safeguard-kings-row",
|
|
376
644
|
name: "Safeguard: Kings Row",
|
|
645
|
+
type: "safeguard",
|
|
646
|
+
morality: "heroic",
|
|
647
|
+
levelRange: [10, 15],
|
|
377
648
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
378
649
|
};
|
|
379
650
|
|
|
380
651
|
const SafeguardPeregrineIsland = {
|
|
381
652
|
key: "safeguard-peregrine-island",
|
|
382
653
|
name: "Safeguard: Peregrine Island",
|
|
654
|
+
type: "safeguard",
|
|
655
|
+
morality: "heroic",
|
|
656
|
+
levelRange: [45, 50],
|
|
383
657
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
384
658
|
};
|
|
385
659
|
|
|
386
660
|
const SafeguardSkywayCity = {
|
|
387
661
|
key: "safeguard-skyway-city",
|
|
388
662
|
name: "Safeguard: Skyway City",
|
|
663
|
+
type: "safeguard",
|
|
664
|
+
morality: "heroic",
|
|
665
|
+
levelRange: [15, 20],
|
|
389
666
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
390
667
|
};
|
|
391
668
|
|
|
392
669
|
const SafeguardSteelCanyon = {
|
|
393
670
|
key: "safeguard-steel-canyon",
|
|
394
671
|
name: "Safeguard: Steel Canyon",
|
|
672
|
+
type: "safeguard",
|
|
673
|
+
morality: "heroic",
|
|
674
|
+
levelRange: [20, 25],
|
|
395
675
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
396
676
|
};
|
|
397
677
|
|
|
398
678
|
const SafeguardTalosIsland = {
|
|
399
679
|
key: "safeguard-talos-island",
|
|
400
680
|
name: "Safeguard: Talos Island",
|
|
681
|
+
type: "safeguard",
|
|
682
|
+
morality: "heroic",
|
|
683
|
+
levelRange: [30, 35],
|
|
401
684
|
links: [{ title: "Safeguard Mission", href: "https://homecoming.wiki/wiki/Safeguard_Mission" }]
|
|
402
685
|
};
|
|
403
686
|
|
|
404
687
|
const SewerNetwork = {
|
|
405
688
|
key: "sewer-network",
|
|
406
689
|
name: "Sewer Network",
|
|
690
|
+
type: "trial",
|
|
691
|
+
morality: "heroic",
|
|
692
|
+
levelRange: [3, 10],
|
|
407
693
|
links: [{ title: "Sewer Network", href: "https://homecoming.wiki/wiki/Sewer_Network" }]
|
|
408
694
|
};
|
|
409
695
|
|
|
410
696
|
const SharkheadIsle = {
|
|
411
697
|
key: "sharkhead-isle",
|
|
412
698
|
name: "Sharkhead Isle",
|
|
699
|
+
type: "city",
|
|
700
|
+
morality: "villainous",
|
|
701
|
+
levelRange: [20, 30],
|
|
413
702
|
links: [{ title: "Sharkhead Isle", href: "https://homecoming.wiki/wiki/Sharkhead_Isle" }]
|
|
414
703
|
};
|
|
415
704
|
|
|
416
705
|
const SirensCall = {
|
|
417
706
|
key: "sirens-call",
|
|
418
707
|
name: `Siren's Call`,
|
|
708
|
+
type: "pvp",
|
|
709
|
+
morality: "all",
|
|
710
|
+
levelRange: [30, 30],
|
|
419
711
|
links: [{ title: `Siren's Call`, href: "https://homecoming.wiki/wiki/Siren%27s_Call" }]
|
|
420
712
|
};
|
|
421
713
|
|
|
422
714
|
const SkywayCity = {
|
|
423
715
|
key: "skyway-city",
|
|
424
716
|
name: "Skyway City",
|
|
717
|
+
type: "city",
|
|
718
|
+
morality: "heroic",
|
|
719
|
+
levelRange: [10, 19],
|
|
425
720
|
links: [{ title: "Skyway City", href: "https://homecoming.wiki/wiki/Skyway_City" }]
|
|
426
721
|
};
|
|
427
722
|
|
|
428
723
|
const StMartial = {
|
|
429
724
|
key: "st-martial",
|
|
430
725
|
name: "St. Martial",
|
|
726
|
+
type: "city",
|
|
727
|
+
morality: "villainous",
|
|
728
|
+
levelRange: [29, 40],
|
|
431
729
|
links: [{ title: "St. Martial", href: "https://homecoming.wiki/wiki/St._Martial" }]
|
|
432
730
|
};
|
|
433
731
|
|
|
434
732
|
const SteelCanyon = {
|
|
435
733
|
key: "steel-canyon",
|
|
436
734
|
name: "Steel Canyon",
|
|
735
|
+
type: "city",
|
|
736
|
+
morality: "heroic",
|
|
737
|
+
levelRange: [10, 19],
|
|
437
738
|
links: [{ title: "Steel Canyon", href: "https://homecoming.wiki/wiki/Steel_Canyon" }]
|
|
438
739
|
};
|
|
439
740
|
|
|
440
741
|
const StrigaIsle = {
|
|
441
742
|
key: "striga-isle",
|
|
442
743
|
name: "Striga Isle",
|
|
744
|
+
type: "co-op",
|
|
745
|
+
morality: "all",
|
|
746
|
+
levelRange: [20, 29],
|
|
443
747
|
links: [{ title: "Striga Isle", href: "https://homecoming.wiki/wiki/Striga_Isle" }]
|
|
444
748
|
};
|
|
445
749
|
|
|
446
750
|
const Studio55 = {
|
|
447
751
|
key: "studio-55",
|
|
448
752
|
name: "Studio 55",
|
|
753
|
+
type: "building",
|
|
754
|
+
morality: "all",
|
|
755
|
+
levelRange: 1,
|
|
756
|
+
notes: `Acts as the Praetorian Earth's connection to the ${cohContentDb.zoneLink(PocketD)} zone.`,
|
|
449
757
|
links: [{ title: "Studio 55", href: "https://homecoming.wiki/wiki/Studio_55" }]
|
|
450
758
|
};
|
|
451
759
|
|
|
452
760
|
const TalosIsland = {
|
|
453
761
|
key: "talos-island",
|
|
454
762
|
name: "Talos Island",
|
|
763
|
+
type: "city",
|
|
764
|
+
morality: "heroic",
|
|
765
|
+
levelRange: [20, 27],
|
|
455
766
|
links: [{ title: "Talos Island", href: "https://homecoming.wiki/wiki/Talos_Island" }]
|
|
456
767
|
};
|
|
457
768
|
|
|
458
769
|
const TerraVolta = {
|
|
459
770
|
key: "terra-volta",
|
|
460
771
|
name: "Terra Volta",
|
|
772
|
+
type: "trial",
|
|
773
|
+
morality: "heroic",
|
|
774
|
+
levelRange: [20, 29],
|
|
461
775
|
links: [{ title: "Terra Volta", href: "https://homecoming.wiki/wiki/Terra_Volta" }]
|
|
462
776
|
};
|
|
463
777
|
|
|
464
778
|
const TheAbyss = {
|
|
465
779
|
key: "the-abyss",
|
|
466
780
|
name: "The Abyss",
|
|
781
|
+
type: "co-op",
|
|
782
|
+
morality: "all",
|
|
783
|
+
levelRange: [45, 50],
|
|
467
784
|
links: [{ title: "The Abyss", href: "https://homecoming.wiki/wiki/The_Abyss" }]
|
|
468
785
|
};
|
|
469
786
|
|
|
470
787
|
const TheChantry = {
|
|
471
788
|
key: "the-chantry",
|
|
472
789
|
name: "The Chantry",
|
|
790
|
+
type: "hazard",
|
|
791
|
+
morality: "heroic",
|
|
792
|
+
levelRange: [44, 47],
|
|
473
793
|
links: [{ title: "The Chantry", href: "https://homecoming.wiki/wiki/The_Chantry" }]
|
|
474
794
|
};
|
|
475
795
|
|
|
476
796
|
const TheHive = {
|
|
477
797
|
key: "the-hive",
|
|
478
798
|
name: "The Hive",
|
|
799
|
+
type: "co-op",
|
|
800
|
+
morality: "all",
|
|
801
|
+
levelRange: [45, 50],
|
|
479
802
|
links: [{ title: "The Hive", href: "https://homecoming.wiki/wiki/The_Hive" }]
|
|
480
803
|
};
|
|
481
804
|
|
|
482
805
|
const TheHollows = {
|
|
483
806
|
key: "the-hollows",
|
|
484
807
|
name: "The Hollows",
|
|
808
|
+
type: "hazard",
|
|
809
|
+
morality: "heroic",
|
|
810
|
+
levelRange: [5, 15],
|
|
485
811
|
links: [{ title: "The Hollows", href: "https://homecoming.wiki/wiki/The_Hollows" }]
|
|
486
812
|
};
|
|
487
813
|
|
|
488
814
|
const TheLabyrinthOfFog = {
|
|
489
815
|
key: "the-labyrinth-of-fog",
|
|
490
816
|
name: "The Labyrinth of Fog",
|
|
817
|
+
type: "co-op",
|
|
818
|
+
morality: "all",
|
|
819
|
+
levelRange: [45, 50],
|
|
491
820
|
links: [{ title: "The Labyrinth of Fog", href: "https://homecoming.wiki/wiki/The_Labyrinth_of_Fog" }]
|
|
492
821
|
};
|
|
493
822
|
|
|
494
823
|
const TheStormPalace = {
|
|
495
824
|
key: "the-storm-palace",
|
|
496
825
|
name: "The Storm Palace",
|
|
826
|
+
type: "trial",
|
|
827
|
+
morality: "heroic",
|
|
828
|
+
levelRange: [48, 53],
|
|
497
829
|
links: [{ title: "The Storm Palace", href: "https://homecoming.wiki/wiki/The_Storm_Palace" }]
|
|
498
830
|
};
|
|
499
831
|
|
|
500
832
|
const UndergroundImperial = {
|
|
501
833
|
key: "underground-imperial",
|
|
502
834
|
name: "Underground Imperial",
|
|
835
|
+
type: "city",
|
|
836
|
+
morality: "praetorian",
|
|
837
|
+
levelRange: [9, 15],
|
|
503
838
|
links: [{ title: "Underground Imperial", href: "https://homecoming.wiki/wiki/Underground_Imperial" }]
|
|
504
839
|
};
|
|
505
840
|
|
|
506
841
|
const UndergroundNeutropolis = {
|
|
507
842
|
key: "underground-neutropolis",
|
|
508
843
|
name: "Underground Neutropolis",
|
|
844
|
+
type: "city",
|
|
845
|
+
morality: "praetorian",
|
|
846
|
+
levelRange: [15, 20],
|
|
509
847
|
links: [{ title: "Underground Neutropolis", href: "https://homecoming.wiki/wiki/Underground_Neutropolis" }]
|
|
510
848
|
};
|
|
511
849
|
|
|
512
850
|
const UndergroundNova = {
|
|
513
851
|
key: "underground-nova",
|
|
514
852
|
name: "Underground Nova",
|
|
853
|
+
type: "city",
|
|
854
|
+
morality: "praetorian",
|
|
855
|
+
levelRange: [1, 10],
|
|
515
856
|
links: [{ title: "Underground Nova", href: "https://homecoming.wiki/wiki/Underground_Nova" }]
|
|
516
857
|
};
|
|
517
858
|
|
|
518
859
|
const Warburg = {
|
|
519
860
|
key: "warburg",
|
|
520
861
|
name: "Warburg",
|
|
862
|
+
type: "pvp",
|
|
863
|
+
morality: "all",
|
|
864
|
+
levelRange: [38, 38],
|
|
521
865
|
links: [{ title: "Warburg", href: "https://homecoming.wiki/wiki/Warburg" }]
|
|
522
866
|
};
|
|
523
867
|
|
|
@@ -577,7 +921,6 @@ const ZONES = [
|
|
|
577
921
|
Phone,
|
|
578
922
|
PocketD,
|
|
579
923
|
PortOakes,
|
|
580
|
-
Praetoria,
|
|
581
924
|
ReclusesVictory,
|
|
582
925
|
RiktiWarZone,
|
|
583
926
|
SafeguardAtlasPark,
|
|
@@ -3782,50 +4125,6 @@ const GanglandFury = {
|
|
|
3782
4125
|
]
|
|
3783
4126
|
};
|
|
3784
4127
|
|
|
3785
|
-
const TinaMacintyre = {
|
|
3786
|
-
key: "tina-macintyre",
|
|
3787
|
-
name: "Tina Macintyre",
|
|
3788
|
-
title: "Portal Corporation Research Scientist",
|
|
3789
|
-
morality: "heroic",
|
|
3790
|
-
location: { zoneKey: PeregrineIsland.key, coords: [-1680.5, 0, -3638.5] },
|
|
3791
|
-
levelRange: [40, 45],
|
|
3792
|
-
links: [{ title: "Tina Macintyre", href: "https://homecoming.wiki/wiki/Tina_Macintyre" }]
|
|
3793
|
-
};
|
|
3794
|
-
|
|
3795
|
-
const TheHydraDimension = {
|
|
3796
|
-
key: "the-hydra-dimension",
|
|
3797
|
-
name: "The Hydra Dimension",
|
|
3798
|
-
type: "mission",
|
|
3799
|
-
morality: "heroic",
|
|
3800
|
-
contactKeys: TinaMacintyre.key,
|
|
3801
|
-
levelRange: [45, 50],
|
|
3802
|
-
links: [
|
|
3803
|
-
{ title: "The Hydra Dimension", href: "https://homecoming.wiki/wiki/Tina_Macintyre#The_Hydra_Dimension_(40-45)" }
|
|
3804
|
-
]
|
|
3805
|
-
};
|
|
3806
|
-
|
|
3807
|
-
const UnaiKemen = {
|
|
3808
|
-
key: "unai-kemen",
|
|
3809
|
-
name: "Unai Kemen",
|
|
3810
|
-
title: "Portal Corp Security Chief",
|
|
3811
|
-
morality: "heroic",
|
|
3812
|
-
location: { zoneKey: PeregrineIsland.key, coords: [-1519.5, 0.5, -3425] },
|
|
3813
|
-
levelRange: [45, 50],
|
|
3814
|
-
links: [{ title: "Unai Kemen", href: "https://homecoming.wiki/wiki/Unai_Kemen" }]
|
|
3815
|
-
};
|
|
3816
|
-
|
|
3817
|
-
const GetSomeSamplesOfHydraManDna = {
|
|
3818
|
-
key: "get-some-samples-of-hydra-man-dna",
|
|
3819
|
-
name: "Get some samples of Hydra Man DNA",
|
|
3820
|
-
type: "mission",
|
|
3821
|
-
morality: "heroic",
|
|
3822
|
-
contactKeys: UnaiKemen.key,
|
|
3823
|
-
levelRange: [45, 50],
|
|
3824
|
-
links: [
|
|
3825
|
-
{ title: "Get some samples of Hydra Man DNA", href: "https://homecoming.wiki/wiki/Unai_Kemen#Get_some_samples_of_Hydra_Man_DNA" }
|
|
3826
|
-
]
|
|
3827
|
-
};
|
|
3828
|
-
|
|
3829
4128
|
const Multidimensional = {
|
|
3830
4129
|
type: "exploration",
|
|
3831
4130
|
key: "multidimensional",
|
|
@@ -3845,50 +4144,6 @@ const Multidimensional = {
|
|
|
3845
4144
|
]
|
|
3846
4145
|
};
|
|
3847
4146
|
|
|
3848
|
-
const MariaJenkins = {
|
|
3849
|
-
key: "maria-jenkins",
|
|
3850
|
-
name: "Maria Jenkins",
|
|
3851
|
-
title: "Former Heroine",
|
|
3852
|
-
morality: "heroic",
|
|
3853
|
-
location: { zoneKey: PeregrineIsland.key, coords: [-1043, 0, -2783] },
|
|
3854
|
-
levelRange: [45, 50],
|
|
3855
|
-
links: [{ title: "Maria Jenkins", href: "https://homecoming.wiki/wiki/Maria_Jenkins" }]
|
|
3856
|
-
};
|
|
3857
|
-
|
|
3858
|
-
const TakeDownNightstar = {
|
|
3859
|
-
key: "take-down-nightstar",
|
|
3860
|
-
name: "Take down Nightstar",
|
|
3861
|
-
type: "mission",
|
|
3862
|
-
morality: "heroic",
|
|
3863
|
-
contactKeys: MariaJenkins.key,
|
|
3864
|
-
levelRange: [45, 50],
|
|
3865
|
-
links: [
|
|
3866
|
-
{ title: "Take down Nightstar", href: "https://homecoming.wiki/wiki/Maria_Jenkins#Take_down_Nightstar" }
|
|
3867
|
-
]
|
|
3868
|
-
};
|
|
3869
|
-
|
|
3870
|
-
const DmitriKrylov = {
|
|
3871
|
-
key: "dmitri-krylov",
|
|
3872
|
-
name: "Dmitri Krylov",
|
|
3873
|
-
title: "Metahuman Researcher",
|
|
3874
|
-
morality: "villainous",
|
|
3875
|
-
location: { zoneKey: CapAuDiable.key, coords: [2878, -72, -182] },
|
|
3876
|
-
levelRange: [10, 14],
|
|
3877
|
-
links: [{ title: "Dmitri Krylov", href: "https://homecoming.wiki/wiki/Dmitri_Krylov" }]
|
|
3878
|
-
};
|
|
3879
|
-
|
|
3880
|
-
const BringCitizensToVahzilokSurgeons = {
|
|
3881
|
-
key: "bring-citizens-to-vahzilok-surgeons",
|
|
3882
|
-
name: "Bring citizens to Vahzilok surgeons",
|
|
3883
|
-
type: "mission",
|
|
3884
|
-
morality: "villainous",
|
|
3885
|
-
contactKeys: DmitriKrylov.key,
|
|
3886
|
-
levelRange: [10, 14],
|
|
3887
|
-
links: [
|
|
3888
|
-
{ title: "Bring citizens to Vahzilok surgeons", href: "https://homecoming.wiki/wiki/Dmitri_Krylov#Bring_citizens_to_Vahzilok_surgeons" }
|
|
3889
|
-
]
|
|
3890
|
-
};
|
|
3891
|
-
|
|
3892
4147
|
const Shrouded = {
|
|
3893
4148
|
type: "exploration",
|
|
3894
4149
|
key: "shrouded",
|
|
@@ -10229,8 +10484,8 @@ const TriedAndTrue = {
|
|
|
10229
10484
|
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10230
10485
|
requirements: [
|
|
10231
10486
|
{ key: "loc-0", type: "location", location: { zoneKey: AtlasPark.key, coords: [66, -634.5, -681.9] } },
|
|
10232
|
-
{ key: "loc-1", type: "location",
|
|
10233
|
-
{ key: "loc-2", type: "location",
|
|
10487
|
+
{ key: "loc-1", type: "location", location: { coords: [1520, -813.2, -2688.1] }, notes: `During the ${cohContentDb.missionLink(OmegaTeamMemorial)} mission.` },
|
|
10488
|
+
{ key: "loc-2", type: "location", location: { coords: [1520, -813.2, -2688.1] }, notes: `During the first mission in the ${cohContentDb.missionLink(DrKahnTaskForce)}.` }
|
|
10234
10489
|
]
|
|
10235
10490
|
};
|
|
10236
10491
|
|
|
@@ -10249,7 +10504,7 @@ Ms. Liberty and Longbow have refused to confirm or deny the persistent rumor tha
|
|
|
10249
10504
|
],
|
|
10250
10505
|
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10251
10506
|
requirements: [
|
|
10252
|
-
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [4286, 148, 2720] } }
|
|
10507
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [4286, 148, 2720], icon: "badge", iconText: "1" } }
|
|
10253
10508
|
]
|
|
10254
10509
|
};
|
|
10255
10510
|
|
|
@@ -10445,6 +10700,153 @@ Some speak of finding lost secrets, long forgotten, laying hidden amongst the fo
|
|
|
10445
10700
|
]
|
|
10446
10701
|
};
|
|
10447
10702
|
|
|
10703
|
+
const FueledByGreed = {
|
|
10704
|
+
type: "exploration",
|
|
10705
|
+
key: "fueled-by-greed",
|
|
10706
|
+
setTitleId: [2452],
|
|
10707
|
+
name: "Fueled By Greed",
|
|
10708
|
+
releaseDate: "2025-06-17",
|
|
10709
|
+
morality: "all",
|
|
10710
|
+
badgeText: `What started as Lou's Auto Shop was eventually bought by his brother-in-law, Manny, and turned into a full-service fuel station and repair shop.
|
|
10711
|
+
The station suffered a major fire in 1974, claiming Lou's life - Manny was investigated for insurance fraud and arson, and the station became eminent domain of the Wharf in 1997.
|
|
10712
|
+
When the Rikti attacked, plans for the station were sidelined and eventually lost entirely.`,
|
|
10713
|
+
links: [
|
|
10714
|
+
{ title: "Fueled By Greed Badge", href: "https://homecoming.wiki/wiki/Fueled_By_Greed_Badge" }
|
|
10715
|
+
],
|
|
10716
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10717
|
+
requirements: [
|
|
10718
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [1562.5, 42, 5176.1], icon: "badge", iconText: "4" } }
|
|
10719
|
+
]
|
|
10720
|
+
};
|
|
10721
|
+
|
|
10722
|
+
const InTheirPrime = {
|
|
10723
|
+
type: "exploration",
|
|
10724
|
+
key: "in-their-prime",
|
|
10725
|
+
setTitleId: [2450],
|
|
10726
|
+
name: "In Their Prime",
|
|
10727
|
+
releaseDate: "2025-06-17",
|
|
10728
|
+
morality: "all",
|
|
10729
|
+
badgeText: `Padma Wadkar was not only a brilliant doctor but also moonlit as the heroine 'Brightshield', who selflessly sacrificed herself during the Rikti War to keep a portal open for survivors as long as she could.
|
|
10730
|
+
Brightshield herself did not use the portal, even as bombs fell and buildings nearby collapsed.
|
|
10731
|
+
Her body was recovered days later, and her identity was revealed to the public a few weeks afterward.
|
|
10732
|
+
The new hospital built here is dedicated to her memory`,
|
|
10733
|
+
links: [
|
|
10734
|
+
{ title: "In Their Prime Badge", href: "https://homecoming.wiki/wiki/In_Their_Prime_Badge" }
|
|
10735
|
+
],
|
|
10736
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10737
|
+
requirements: [
|
|
10738
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [6465.4, 50.2, 1732.1], icon: "badge", iconText: "2" } }
|
|
10739
|
+
]
|
|
10740
|
+
};
|
|
10741
|
+
|
|
10742
|
+
const MarkedOut = {
|
|
10743
|
+
type: "exploration",
|
|
10744
|
+
key: "marked-out",
|
|
10745
|
+
setTitleId: [2454],
|
|
10746
|
+
name: "Marked Out",
|
|
10747
|
+
releaseDate: "2025-06-17",
|
|
10748
|
+
morality: "all",
|
|
10749
|
+
badgeText: `This site commemorates the final protest held against developer-tycoon Mark Maxwell's aggressive demolitions of the theatres in the Row. The last theatre, named The Redwood, stood here and shielded more than 500 protestors in its final days.`,
|
|
10750
|
+
links: [
|
|
10751
|
+
{ title: "Marked Out Badge", href: "https://homecoming.wiki/wiki/Marked_Out_Badge" }
|
|
10752
|
+
],
|
|
10753
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10754
|
+
requirements: [
|
|
10755
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [1891.5, 41.8, 971.7], icon: "badge", iconText: "6" } }
|
|
10756
|
+
]
|
|
10757
|
+
};
|
|
10758
|
+
|
|
10759
|
+
const ProtestTooMuch = {
|
|
10760
|
+
type: "exploration",
|
|
10761
|
+
key: "protest-too-much",
|
|
10762
|
+
setTitleId: [2451],
|
|
10763
|
+
name: "Protest Too Much",
|
|
10764
|
+
releaseDate: "2025-06-17",
|
|
10765
|
+
morality: "all",
|
|
10766
|
+
badgeText: `At this location in June of 2018, a man by the name of Kieran Holt, who was later determined to be wrongfully detained, was assaulted by members of the PPD for resisting arrest while protesting their corruption.
|
|
10767
|
+
Holt died, hours later, in his holding cell from his injuries. The resulting media coverage led to the swift loss of public trust in the local PPD and their removal, in favor of Blackwing Industries after heated debates.`,
|
|
10768
|
+
links: [
|
|
10769
|
+
{ title: "Protest Too Much Badge", href: "https://homecoming.wiki/wiki/Protest_Too_Much_Badge" }
|
|
10770
|
+
],
|
|
10771
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10772
|
+
requirements: [
|
|
10773
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [5875.5, 47.9, 4979.9], icon: "badge", iconText: "3" } }
|
|
10774
|
+
]
|
|
10775
|
+
};
|
|
10776
|
+
|
|
10777
|
+
const QuayToTheCity = {
|
|
10778
|
+
type: "exploration",
|
|
10779
|
+
key: "quay-to-the-city",
|
|
10780
|
+
setTitleId: [2455],
|
|
10781
|
+
name: "Quay to the City",
|
|
10782
|
+
releaseDate: "2025-06-17",
|
|
10783
|
+
morality: "all",
|
|
10784
|
+
badgeText: `Kallisti Marina is all that is left of a larger harbor that originally gave Kallisti Wharf half of its name.
|
|
10785
|
+
The first half, Kallisti, is a greek word that means 'The prettiest one'.
|
|
10786
|
+
Back when it gained the moniker, there were many Greek immigrants to the area, and it was noted for its placid, beautiful waters, bright blue, full of fish and free of the pollution that would come later.
|
|
10787
|
+
Before Independence Port, this Marina was the first port of call for imports and immigrants alike.`,
|
|
10788
|
+
links: [
|
|
10789
|
+
{ title: "Quay to the City Badge", href: "https://homecoming.wiki/wiki/Quay_To_The_City_Badge" }
|
|
10790
|
+
],
|
|
10791
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10792
|
+
requirements: [
|
|
10793
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [2143.5, 12.4, -547.1], icon: "badge", iconText: "7" } }
|
|
10794
|
+
]
|
|
10795
|
+
};
|
|
10796
|
+
|
|
10797
|
+
const RavingMad = {
|
|
10798
|
+
type: "exploration",
|
|
10799
|
+
key: "raving-mad",
|
|
10800
|
+
setTitleId: [2453],
|
|
10801
|
+
name: "Raving Mad",
|
|
10802
|
+
releaseDate: "2025-06-17",
|
|
10803
|
+
morality: "all",
|
|
10804
|
+
badgeText: `Before Collier Industrial Park got its much-needed renaissance, the abandoned Collier warehouses had slowly become either self-storage parks or 'criminal-chic' locations for raves that bred influence amongst the gang patrons, namely the Skulls and the Family.`,
|
|
10805
|
+
links: [
|
|
10806
|
+
{ title: "Raving Mad Badge", href: "https://homecoming.wiki/wiki/Raving_Mad_Badge" }
|
|
10807
|
+
],
|
|
10808
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10809
|
+
requirements: [
|
|
10810
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [447.7, 115.4, 3204], icon: "badge", iconText: "5" } }
|
|
10811
|
+
]
|
|
10812
|
+
};
|
|
10813
|
+
|
|
10814
|
+
const TouristTrapped = {
|
|
10815
|
+
type: "exploration",
|
|
10816
|
+
key: "tourist-trapped",
|
|
10817
|
+
setTitleId: [2456],
|
|
10818
|
+
name: "Tourist Trapped",
|
|
10819
|
+
releaseDate: "2025-06-17",
|
|
10820
|
+
morality: "all",
|
|
10821
|
+
badgeText: `Many who visit the Wharf take a paddle boat out to Turtle Rock Island as a "must see" location.
|
|
10822
|
+
Known for its curious rock formations, incredible views of the Wharf, and the once-a-day alignment of One Statesman Tower with the rising sun, tourists end up here taking photos more than any other place in the Wharf.`,
|
|
10823
|
+
links: [
|
|
10824
|
+
{ title: "Tourist Trapped Badge", href: "https://homecoming.wiki/wiki/Tourist_Trapped_Badge" }
|
|
10825
|
+
],
|
|
10826
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png",
|
|
10827
|
+
requirements: [
|
|
10828
|
+
{ key: "loc-0", type: "location", location: { zoneKey: KallistiWharf.key, coords: [5339.4, 72.1, 738.7], icon: "badge", iconText: "8" } }
|
|
10829
|
+
]
|
|
10830
|
+
};
|
|
10831
|
+
|
|
10832
|
+
const LucidDreamer = {
|
|
10833
|
+
type: "exploration",
|
|
10834
|
+
key: "lucid-dreamer",
|
|
10835
|
+
setTitleId: [2573],
|
|
10836
|
+
name: "Lucid Dreamer",
|
|
10837
|
+
releaseDate: "2025-11-25",
|
|
10838
|
+
morality: "all",
|
|
10839
|
+
badgeText: `You've gone much deeper into the Labyrinth of Fog, perhaps deeper than you ought to... Lurking in the darkest depths of the maze hid a shadow of Atlas Park, wreathed in nightmare. What purpose this place serves is a mystery waiting to be uncovered.`,
|
|
10840
|
+
notes: ` `,
|
|
10841
|
+
links: [
|
|
10842
|
+
{ title: "Lucid Dreamer Badge", href: "https://homecoming.wiki/wiki/Lucid_Dreamer_Badge" }
|
|
10843
|
+
],
|
|
10844
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/labyrinth.png",
|
|
10845
|
+
requirements: [
|
|
10846
|
+
{ key: "loc-0", type: "location", location: { zoneKey: TheLabyrinthOfFog.key } }
|
|
10847
|
+
]
|
|
10848
|
+
};
|
|
10849
|
+
|
|
10448
10850
|
const EXPLORATION_BADGES = [
|
|
10449
10851
|
// Bloody Bay
|
|
10450
10852
|
Lobbyist,
|
|
@@ -10671,6 +11073,13 @@ const EXPLORATION_BADGES = [
|
|
|
10671
11073
|
Unsubtle,
|
|
10672
11074
|
// Kallisti Wharf
|
|
10673
11075
|
OnTheShouldersOfGiants,
|
|
11076
|
+
FueledByGreed,
|
|
11077
|
+
InTheirPrime,
|
|
11078
|
+
MarkedOut,
|
|
11079
|
+
ProtestTooMuch,
|
|
11080
|
+
QuayToTheCity,
|
|
11081
|
+
RavingMad,
|
|
11082
|
+
TouristTrapped,
|
|
10674
11083
|
// Peregrine Island
|
|
10675
11084
|
PortalParter,
|
|
10676
11085
|
UseMightForRight,
|
|
@@ -11017,7 +11426,8 @@ const EXPLORATION_BADGES = [
|
|
|
11017
11426
|
PartyAnimal,
|
|
11018
11427
|
// Labyrinth of Fog
|
|
11019
11428
|
HiddenInTheFog,
|
|
11020
|
-
LabRat
|
|
11429
|
+
LabRat,
|
|
11430
|
+
LucidDreamer
|
|
11021
11431
|
];
|
|
11022
11432
|
|
|
11023
11433
|
const NullTheGull = {
|
|
@@ -19309,6 +19719,409 @@ const NutrientRich = {
|
|
|
19309
19719
|
]
|
|
19310
19720
|
};
|
|
19311
19721
|
|
|
19722
|
+
const AdelardZiegler = {
|
|
19723
|
+
key: "adelard-ziegler",
|
|
19724
|
+
name: "Adelard Ziegler",
|
|
19725
|
+
title: "International Intelligence Liaison",
|
|
19726
|
+
morality: "heroic",
|
|
19727
|
+
location: { zoneKey: KallistiWharf.key, coords: [6072, 65, 1304] },
|
|
19728
|
+
levelRange: [40, 50],
|
|
19729
|
+
links: [{ title: "Adelard Ziegler", href: "https://homecoming.wiki/wiki/Adelard_Ziegler" }]
|
|
19730
|
+
};
|
|
19731
|
+
|
|
19732
|
+
const HuntingTheHunters = {
|
|
19733
|
+
key: "hunting-the-hunters",
|
|
19734
|
+
name: "Hunting the Hunters",
|
|
19735
|
+
type: "story-arc",
|
|
19736
|
+
morality: "heroic",
|
|
19737
|
+
contactKeys: AdelardZiegler.key,
|
|
19738
|
+
levelRange: [40, 50],
|
|
19739
|
+
links: [
|
|
19740
|
+
{ title: "Hunting the Hunters", href: "https://homecoming.wiki/wiki/Adelard_Ziegler#Hunting_the_Hunters" }
|
|
19741
|
+
],
|
|
19742
|
+
flashback: {
|
|
19743
|
+
id: "28.06",
|
|
19744
|
+
levelRange: [50]
|
|
19745
|
+
}
|
|
19746
|
+
};
|
|
19747
|
+
|
|
19748
|
+
const StaringIntoTheAbyss = {
|
|
19749
|
+
type: "accomplishment",
|
|
19750
|
+
key: "staring-into-the-abyss",
|
|
19751
|
+
setTitleId: [2559],
|
|
19752
|
+
name: "Staring Into The Abyss",
|
|
19753
|
+
releaseDate: "2025-06-17",
|
|
19754
|
+
morality: "heroic",
|
|
19755
|
+
badgeText: `You assisted Adelard Ziegler with his investigation into the disappearance of the majority of the Council's Void Hunter division.
|
|
19756
|
+
What you found out was disturbing, with an ominous warning about a possible invasion coming soon.`,
|
|
19757
|
+
links: [
|
|
19758
|
+
{ title: "Staring Into The Abyss Badge", href: "https://homecoming.wiki/wiki/Staring_Into_The_Abyss_Badge" }
|
|
19759
|
+
],
|
|
19760
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/staring-into-the-abyss.png",
|
|
19761
|
+
requirements: [
|
|
19762
|
+
{ key: HuntingTheHunters.key, type: "mission", missionKey: HuntingTheHunters.key }
|
|
19763
|
+
]
|
|
19764
|
+
};
|
|
19765
|
+
|
|
19766
|
+
const DapDapThaDealMaka = {
|
|
19767
|
+
key: "dap-dap-tha-deal-maka",
|
|
19768
|
+
name: "Dap-Dap tha Deal-Maka",
|
|
19769
|
+
title: "Acquisition Specialist",
|
|
19770
|
+
morality: "villainous",
|
|
19771
|
+
location: { zoneKey: KallistiWharf.key, coords: [1578, 47, 4995] },
|
|
19772
|
+
levelRange: [40, 50],
|
|
19773
|
+
links: [{ title: "Dap-Dap tha Deal-Maka", href: "https://homecoming.wiki/wiki/Dap-Dap_tha_Deal-Maka" }]
|
|
19774
|
+
};
|
|
19775
|
+
|
|
19776
|
+
const MergersAndAcquisitions = {
|
|
19777
|
+
key: "mergers-and-acquisitions",
|
|
19778
|
+
name: "Mergers and Acquisitions",
|
|
19779
|
+
type: "story-arc",
|
|
19780
|
+
morality: "villainous",
|
|
19781
|
+
contactKeys: DapDapThaDealMaka.key,
|
|
19782
|
+
levelRange: [40, 50],
|
|
19783
|
+
links: [
|
|
19784
|
+
{ title: "Mergers and Acquisitions", href: "https://homecoming.wiki/wiki/Dap-Dap_tha_Deal-Maka#Mergers_and_Acquisitions" }
|
|
19785
|
+
],
|
|
19786
|
+
flashback: {
|
|
19787
|
+
id: "28.02",
|
|
19788
|
+
levelRange: [50]
|
|
19789
|
+
}
|
|
19790
|
+
};
|
|
19791
|
+
|
|
19792
|
+
const BusinessSavvy = {
|
|
19793
|
+
type: "accomplishment",
|
|
19794
|
+
key: "business-savvy",
|
|
19795
|
+
setTitleId: [2560],
|
|
19796
|
+
name: "Business Savvy",
|
|
19797
|
+
releaseDate: "2025-06-17",
|
|
19798
|
+
morality: "villainous",
|
|
19799
|
+
badgeText: `You bumbled, hustled and crashed through a number of people and places to help Dap-Dap establish the Freaklok as an organization worthy of being taken seriously, especially by the Freakshow.`,
|
|
19800
|
+
links: [
|
|
19801
|
+
{ title: "Business Savvy Badge", href: "https://homecoming.wiki/wiki/Business_Savvy_Badge" }
|
|
19802
|
+
],
|
|
19803
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/business-savvy.png",
|
|
19804
|
+
requirements: [
|
|
19805
|
+
{ key: MergersAndAcquisitions.key, type: "mission", missionKey: MergersAndAcquisitions.key }
|
|
19806
|
+
]
|
|
19807
|
+
};
|
|
19808
|
+
|
|
19809
|
+
const ErinWest = {
|
|
19810
|
+
key: "erin-west",
|
|
19811
|
+
name: "Erin West",
|
|
19812
|
+
title: "Public Relations Specialist",
|
|
19813
|
+
morality: "rogue",
|
|
19814
|
+
location: { zoneKey: KallistiWharf.key, coords: [7213, 55, 2649] },
|
|
19815
|
+
levelRange: [40, 50],
|
|
19816
|
+
links: [{ title: "Erin West", href: "https://homecoming.wiki/wiki/Erin_West" }]
|
|
19817
|
+
};
|
|
19818
|
+
|
|
19819
|
+
const CuttingBackOldGrowth = {
|
|
19820
|
+
key: "cutting-back-old-growth",
|
|
19821
|
+
name: "Cutting Back Old Growth",
|
|
19822
|
+
type: "story-arc",
|
|
19823
|
+
morality: "rogue",
|
|
19824
|
+
contactKeys: ErinWest.key,
|
|
19825
|
+
levelRange: [40, 50],
|
|
19826
|
+
links: [
|
|
19827
|
+
{ title: "Cutting Back Old Growth", href: "https://homecoming.wiki/wiki/Erin_West#Cutting_Back_Old_Growth" }
|
|
19828
|
+
],
|
|
19829
|
+
flashback: {
|
|
19830
|
+
id: "28.03",
|
|
19831
|
+
levelRange: [50]
|
|
19832
|
+
}
|
|
19833
|
+
};
|
|
19834
|
+
|
|
19835
|
+
const FrontPerson = {
|
|
19836
|
+
type: "accomplishment",
|
|
19837
|
+
key: "front-person",
|
|
19838
|
+
setTitleId: [2561],
|
|
19839
|
+
name: "Front Person",
|
|
19840
|
+
releaseDate: "2025-06-17",
|
|
19841
|
+
morality: "villainous",
|
|
19842
|
+
badgeText: `When Crey needed someone to give them a good face to recover their image, they called you.`,
|
|
19843
|
+
links: [
|
|
19844
|
+
{ title: "Front Person Badge", href: "https://homecoming.wiki/wiki/Front_Person_Badge" }
|
|
19845
|
+
],
|
|
19846
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/front-person.png",
|
|
19847
|
+
requirements: [
|
|
19848
|
+
{ key: CuttingBackOldGrowth.key, type: "mission", missionKey: CuttingBackOldGrowth.key }
|
|
19849
|
+
]
|
|
19850
|
+
};
|
|
19851
|
+
|
|
19852
|
+
const RobertKogan = {
|
|
19853
|
+
key: "robert-kogan",
|
|
19854
|
+
name: "Robert Kogan",
|
|
19855
|
+
title: "Nil",
|
|
19856
|
+
morality: "vigilante",
|
|
19857
|
+
location: { zoneKey: KallistiWharf.key, coords: [1789, 57, 3436] },
|
|
19858
|
+
levelRange: [40, 50],
|
|
19859
|
+
links: [{ title: "Robert Kogan", href: "https://homecoming.wiki/wiki/Robert_Kogan" }]
|
|
19860
|
+
};
|
|
19861
|
+
|
|
19862
|
+
const TheSunlightAndTheSpotlight = {
|
|
19863
|
+
key: "the-sunlight-and-the-spotlight",
|
|
19864
|
+
name: "The Sunlight and the Spotlight",
|
|
19865
|
+
type: "story-arc",
|
|
19866
|
+
morality: "vigilante",
|
|
19867
|
+
contactKeys: RobertKogan.key,
|
|
19868
|
+
levelRange: [40, 50],
|
|
19869
|
+
links: [
|
|
19870
|
+
{ title: "The Sunlight and the Spotlight", href: "https://homecoming.wiki/wiki/Robert_Kogan#The_Sunlight_and_the_Spotlight" }
|
|
19871
|
+
],
|
|
19872
|
+
flashback: {
|
|
19873
|
+
id: "28.04",
|
|
19874
|
+
levelRange: [50]
|
|
19875
|
+
}
|
|
19876
|
+
};
|
|
19877
|
+
|
|
19878
|
+
const JustifiedEnds = {
|
|
19879
|
+
type: "accomplishment",
|
|
19880
|
+
key: "justified-ends",
|
|
19881
|
+
setTitleId: [2562],
|
|
19882
|
+
name: "Justified Ends",
|
|
19883
|
+
releaseDate: "2025-06-17",
|
|
19884
|
+
morality: "heroic",
|
|
19885
|
+
badgeText: `Some evils can't be beaten while keeping your hands clean. You've done what was needed when others wouldn't.`,
|
|
19886
|
+
links: [
|
|
19887
|
+
{ title: "Justified Ends Badge", href: "https://homecoming.wiki/wiki/Justified_Ends_Badge" }
|
|
19888
|
+
],
|
|
19889
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/justified-ends.png",
|
|
19890
|
+
requirements: [
|
|
19891
|
+
{ key: TheSunlightAndTheSpotlight.key, type: "mission", missionKey: TheSunlightAndTheSpotlight.key }
|
|
19892
|
+
]
|
|
19893
|
+
};
|
|
19894
|
+
|
|
19895
|
+
const AlexanderTheGreat = {
|
|
19896
|
+
key: "alexander-the-great",
|
|
19897
|
+
name: "Alexander the Great",
|
|
19898
|
+
title: "Ex-Warrior",
|
|
19899
|
+
morality: "rogue",
|
|
19900
|
+
location: { zoneKey: KallistiWharf.key, coords: [2147.2, 11.9, -423.5] },
|
|
19901
|
+
levelRange: [40, 50],
|
|
19902
|
+
links: [{ title: "Alexander the Great", href: "https://homecoming.wiki/wiki/Alexander_the_Great" }]
|
|
19903
|
+
};
|
|
19904
|
+
|
|
19905
|
+
const KnowThyEnemy = {
|
|
19906
|
+
key: "know-thy-enemy",
|
|
19907
|
+
name: "Know Thy Enemy",
|
|
19908
|
+
type: "story-arc",
|
|
19909
|
+
morality: "heroic",
|
|
19910
|
+
contactKeys: AlexanderTheGreat.key,
|
|
19911
|
+
levelRange: [40, 50],
|
|
19912
|
+
links: [
|
|
19913
|
+
{ title: "Know Thy Enemy", href: "https://homecoming.wiki/wiki/Alexander_the_Great#Know_Thy_Enemy" }
|
|
19914
|
+
],
|
|
19915
|
+
flashback: {
|
|
19916
|
+
id: "28.04",
|
|
19917
|
+
levelRange: [50]
|
|
19918
|
+
}
|
|
19919
|
+
};
|
|
19920
|
+
|
|
19921
|
+
const ThickerThanWater = {
|
|
19922
|
+
type: "accomplishment",
|
|
19923
|
+
key: "thicker-than-water",
|
|
19924
|
+
setTitleId: [2563],
|
|
19925
|
+
name: "Thicker Than Water",
|
|
19926
|
+
releaseDate: "2025-06-17",
|
|
19927
|
+
morality: "heroic",
|
|
19928
|
+
badgeText: `Alexander 'the Great' Pavlidis used the full quote: 'The blood of the battlefield is thicker than the water of the womb.' His former brothers in arms among the Warriors have fallen victim to demonic trickery but he remains honorbound to try to save their souls.`,
|
|
19929
|
+
links: [
|
|
19930
|
+
{ title: "Thicker Than Water Badge", href: "https://homecoming.wiki/wiki/Thicker_Than_Water_Badge" }
|
|
19931
|
+
],
|
|
19932
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/thicker-than-water.png",
|
|
19933
|
+
requirements: [
|
|
19934
|
+
{ key: KnowThyEnemy.key, type: "mission", missionKey: KnowThyEnemy.key }
|
|
19935
|
+
]
|
|
19936
|
+
};
|
|
19937
|
+
|
|
19938
|
+
const GenerationalTrauma = {
|
|
19939
|
+
type: "accomplishment",
|
|
19940
|
+
key: "generational-trauma",
|
|
19941
|
+
setTitleId: [2564],
|
|
19942
|
+
name: "Generational Trauma",
|
|
19943
|
+
releaseDate: "2025-06-17",
|
|
19944
|
+
morality: "heroic",
|
|
19945
|
+
badgeText: `You have discovered the consequences of helping Sister Valeria in the past - your encounter with Livia was actually the first time you met the host Nictus inside Arakhn, which now harbors milennia of hatred for you as a result.
|
|
19946
|
+
The fact that Ourboros did not mend this is telling.`,
|
|
19947
|
+
acquisition: `Complete the bonus objectives in the ${cohContentDb.missionLink(HuntingTheHunters)} story arc.`,
|
|
19948
|
+
links: [
|
|
19949
|
+
{ title: "Generational Trauma Badge", href: "https://homecoming.wiki/wiki/Generational_Trauma_Badge" }
|
|
19950
|
+
],
|
|
19951
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/generational-trauma.png",
|
|
19952
|
+
requirements: [
|
|
19953
|
+
{ key: HuntingTheHunters.key, type: "mission", missionKey: HuntingTheHunters.key }
|
|
19954
|
+
]
|
|
19955
|
+
};
|
|
19956
|
+
|
|
19957
|
+
const UncomfortableTruths = {
|
|
19958
|
+
type: "accomplishment",
|
|
19959
|
+
key: "uncomfortable-truths",
|
|
19960
|
+
setTitleId: [2565],
|
|
19961
|
+
name: "Uncomfortable Truths",
|
|
19962
|
+
releaseDate: "2025-06-17",
|
|
19963
|
+
morality: "villainous",
|
|
19964
|
+
badgeText: `Sometimes the only thing it takes to completely rock a person's world is to learn a few uncomfortable truths.`,
|
|
19965
|
+
acquisition: `Complete bonus objectives in the ${cohContentDb.missionLink(CuttingBackOldGrowth)} story arc.`,
|
|
19966
|
+
links: [
|
|
19967
|
+
{ title: "Uncomfortable Truths Badge", href: "https://homecoming.wiki/wiki/Uncomfortable_Truths_Badge" }
|
|
19968
|
+
],
|
|
19969
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/uncomfortable-truths.png",
|
|
19970
|
+
requirements: [
|
|
19971
|
+
{ key: CuttingBackOldGrowth.key, type: "mission", missionKey: CuttingBackOldGrowth.key }
|
|
19972
|
+
]
|
|
19973
|
+
};
|
|
19974
|
+
|
|
19975
|
+
const TruthSeeker = {
|
|
19976
|
+
type: "accomplishment",
|
|
19977
|
+
key: "truth-seeker",
|
|
19978
|
+
setTitleId: [2566],
|
|
19979
|
+
name: "Truth Seeker",
|
|
19980
|
+
releaseDate: "2025-06-17",
|
|
19981
|
+
morality: "villainous",
|
|
19982
|
+
badgeText: `No mystery is too small to intrigue you. You gave Erin West closure by uncovering the truth about her mentor's death.`,
|
|
19983
|
+
acquisition: `Complete bonus objectives in the ${cohContentDb.missionLink(CuttingBackOldGrowth)} story arc.`,
|
|
19984
|
+
links: [
|
|
19985
|
+
{ title: "Truth Seeker Badge", href: "https://homecoming.wiki/wiki/Truth_Seeker_Badge" }
|
|
19986
|
+
],
|
|
19987
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/truth-seeker.png",
|
|
19988
|
+
requirements: [
|
|
19989
|
+
{ key: CuttingBackOldGrowth.key, type: "mission", missionKey: CuttingBackOldGrowth.key }
|
|
19990
|
+
]
|
|
19991
|
+
};
|
|
19992
|
+
|
|
19993
|
+
const BrassTax = {
|
|
19994
|
+
type: "accomplishment",
|
|
19995
|
+
key: "brass-tax",
|
|
19996
|
+
setTitleId: [2567],
|
|
19997
|
+
name: "Brass Tax",
|
|
19998
|
+
releaseDate: "2025-06-17",
|
|
19999
|
+
morality: "villainous",
|
|
20000
|
+
badgeText: `You negotiated with Nemesis, to the joyful sounds of shattering brass, on his own home turf in the Shadow Shard.`,
|
|
20001
|
+
acquisition: `Complete the bonus objectives in the story arc ${cohContentDb.missionLink(MergersAndAcquisitions)}.`,
|
|
20002
|
+
links: [
|
|
20003
|
+
{ title: "Brass Tax Badge", href: "https://homecoming.wiki/wiki/Brass_Tax_Badge" }
|
|
20004
|
+
],
|
|
20005
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/brass-tax.png",
|
|
20006
|
+
requirements: [
|
|
20007
|
+
{ key: MergersAndAcquisitions.key, type: "mission", missionKey: MergersAndAcquisitions.key }
|
|
20008
|
+
]
|
|
20009
|
+
};
|
|
20010
|
+
|
|
20011
|
+
const ChromaticCombatant = {
|
|
20012
|
+
type: "accomplishment",
|
|
20013
|
+
key: "chromatic-combatant",
|
|
20014
|
+
setTitleId: [2576],
|
|
20015
|
+
name: "Chromatic Combatant",
|
|
20016
|
+
releaseDate: "2025-11-25",
|
|
20017
|
+
morality: "all",
|
|
20018
|
+
badgeText: `You've shown yourself amongst greatest of your otherworldeer peers by mastering the Tests of Combat. The phantoms knows your true worth after defeating all Four Generals of Achlys at the same time.`,
|
|
20019
|
+
acquisition: `Complete the Test of Apathy offered by The Watcher, Teleute in the Core of the Labyrinth of Fog.`,
|
|
20020
|
+
links: [
|
|
20021
|
+
{ title: "Chromatic Combatant Badge", href: "https://homecoming.wiki/wiki/Chromatic_Combatant_Badge" }
|
|
20022
|
+
],
|
|
20023
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/chromatic-combatant.png"
|
|
20024
|
+
};
|
|
20025
|
+
|
|
20026
|
+
const ZoeLangston = {
|
|
20027
|
+
key: "zoe-langston",
|
|
20028
|
+
name: `Marigold 'Zoe' Langston`,
|
|
20029
|
+
title: "Heiress to the Langston Dynasty",
|
|
20030
|
+
morality: "all",
|
|
20031
|
+
location: { zoneKey: KallistiWharf.key, coords: [475, -280, 3899] },
|
|
20032
|
+
levelRange: [40, 50],
|
|
20033
|
+
links: [{ title: `Marigold 'Zoe' Langston`, href: `https://homecoming.wiki/wiki/Zoe_Langston` }]
|
|
20034
|
+
};
|
|
20035
|
+
|
|
20036
|
+
const ZoeTaskForce = {
|
|
20037
|
+
key: "zoe-task-force",
|
|
20038
|
+
name: "Zoe Task Force",
|
|
20039
|
+
type: "task-force",
|
|
20040
|
+
morality: "all",
|
|
20041
|
+
contactKeys: ZoeLangston.key,
|
|
20042
|
+
levelRange: [40, 50],
|
|
20043
|
+
links: [
|
|
20044
|
+
{ title: "Zoe Task Force", href: "https://homecoming.wiki/wiki/Zoe_Task_Force" }
|
|
20045
|
+
]
|
|
20046
|
+
};
|
|
20047
|
+
|
|
20048
|
+
const HeartOfGold = {
|
|
20049
|
+
type: "accomplishment",
|
|
20050
|
+
key: "heart-of-gold",
|
|
20051
|
+
setTitleId: [2574],
|
|
20052
|
+
name: "Heart of Gold",
|
|
20053
|
+
releaseDate: "2025-11-25",
|
|
20054
|
+
morality: "all",
|
|
20055
|
+
badgeText: `You teamed up with Marigold 'Zoe' Langston and her Gold Brickers to confront a plot by Nemesis to steal Langston Corp's latest portal science technology. Seizing the opportunity to deal a major blow to the Prussian Prince of Automatons, you put his Kallisti Wharf base of operations out of commission once and for all.`,
|
|
20056
|
+
links: [
|
|
20057
|
+
{ title: "Heart of Gold Badge", href: "https://homecoming.wiki/wiki/Heart_of_Gold_Badge" }
|
|
20058
|
+
],
|
|
20059
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/heart-of-gold.png",
|
|
20060
|
+
requirements: [
|
|
20061
|
+
{ key: ZoeTaskForce.key, type: "mission", missionKey: ZoeTaskForce.key }
|
|
20062
|
+
]
|
|
20063
|
+
};
|
|
20064
|
+
|
|
20065
|
+
const WyllieGalloway = {
|
|
20066
|
+
key: "wyllie-galloway",
|
|
20067
|
+
name: "Wyllie Galloway",
|
|
20068
|
+
title: "Mystic Librarian",
|
|
20069
|
+
morality: "heroic",
|
|
20070
|
+
location: { zoneKey: KallistiWharf.key, coords: [3564, 84, 3295] },
|
|
20071
|
+
levelRange: [40, 50],
|
|
20072
|
+
links: [{ title: "Wyllie Galloway", href: "https://homecoming.wiki/wiki/Wyllie_Galloway" }]
|
|
20073
|
+
};
|
|
20074
|
+
|
|
20075
|
+
const DeathResurrected = {
|
|
20076
|
+
key: "death-resurrected",
|
|
20077
|
+
name: "Death Resurrected",
|
|
20078
|
+
type: "story-arc",
|
|
20079
|
+
morality: "heroic",
|
|
20080
|
+
contactKeys: WyllieGalloway.key,
|
|
20081
|
+
levelRange: [40, 50],
|
|
20082
|
+
links: [
|
|
20083
|
+
{ title: "Death Resurrected", href: `https://homecoming.wiki/wiki/Wyllie_Galloway#Death_Resurrected` }
|
|
20084
|
+
],
|
|
20085
|
+
flashback: {
|
|
20086
|
+
id: "28.04",
|
|
20087
|
+
levelRange: [50],
|
|
20088
|
+
morality: "heroic"
|
|
20089
|
+
}
|
|
20090
|
+
};
|
|
20091
|
+
|
|
20092
|
+
const Psychopomp = {
|
|
20093
|
+
type: "accomplishment",
|
|
20094
|
+
key: "psychopomp",
|
|
20095
|
+
setTitleId: [2584],
|
|
20096
|
+
name: "Psychopomp",
|
|
20097
|
+
releaseDate: "2025-11-25",
|
|
20098
|
+
morality: "heroic",
|
|
20099
|
+
badgeText: `You discovered the source of the Skulls' new powers: mystifying pacts formed between themselves and the entities that ferry souls of the dead to the afterlife.`,
|
|
20100
|
+
acquisition: `Complete Wyllie Galloway's story arc.`,
|
|
20101
|
+
links: [
|
|
20102
|
+
{ title: "Psychopomp Badge", href: "https://homecoming.wiki/wiki/Psychopomp_Badge" }
|
|
20103
|
+
],
|
|
20104
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/psychopomp.png",
|
|
20105
|
+
requirements: [
|
|
20106
|
+
{ key: DeathResurrected.key, type: "mission", missionKey: DeathResurrected.key }
|
|
20107
|
+
]
|
|
20108
|
+
};
|
|
20109
|
+
|
|
20110
|
+
const TestedByCombat = {
|
|
20111
|
+
type: "accomplishment",
|
|
20112
|
+
key: "tested-by-combat",
|
|
20113
|
+
setTitleId: [2575],
|
|
20114
|
+
name: "Tested By Combat",
|
|
20115
|
+
releaseDate: "2025-11-25",
|
|
20116
|
+
morality: "all",
|
|
20117
|
+
badgeText: `You've proven yourself adapative and a worthy challenger by overcoming the many different Tests of Combat offered by the Four Generals of Achlys in the Labyrinth of Fog.`,
|
|
20118
|
+
acquisition: `Complete all six standard Tests of Combat offered by The Watcher, Teleute in the Core of the Labyrinth of Fog.`,
|
|
20119
|
+
links: [
|
|
20120
|
+
{ title: "Tested By Combat Badge", href: "https://homecoming.wiki/wiki/Tested_By_Combat_Badge" }
|
|
20121
|
+
],
|
|
20122
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accomplishment/tested-by-combat.png"
|
|
20123
|
+
};
|
|
20124
|
+
|
|
19312
20125
|
const ACCOMPLISHMENT_BADGES = [
|
|
19313
20126
|
FormerServantOfRecluse,
|
|
19314
20127
|
BinderOfBeasts,
|
|
@@ -19340,6 +20153,7 @@ const ACCOMPLISHMENT_BADGES = [
|
|
|
19340
20153
|
Peerless,
|
|
19341
20154
|
MemberOfVanguard,
|
|
19342
20155
|
Apocalyptic,
|
|
20156
|
+
HeartOfGold,
|
|
19343
20157
|
SpeedDemon,
|
|
19344
20158
|
Accelerated,
|
|
19345
20159
|
Qualified,
|
|
@@ -19510,7 +20324,19 @@ const ACCOMPLISHMENT_BADGES = [
|
|
|
19510
20324
|
Pollster,
|
|
19511
20325
|
LoopHero,
|
|
19512
20326
|
DoesntLookAtExplosions,
|
|
19513
|
-
FaceTurn
|
|
20327
|
+
FaceTurn,
|
|
20328
|
+
StaringIntoTheAbyss,
|
|
20329
|
+
BusinessSavvy,
|
|
20330
|
+
FrontPerson,
|
|
20331
|
+
JustifiedEnds,
|
|
20332
|
+
ThickerThanWater,
|
|
20333
|
+
GenerationalTrauma,
|
|
20334
|
+
UncomfortableTruths,
|
|
20335
|
+
TruthSeeker,
|
|
20336
|
+
BrassTax,
|
|
20337
|
+
Psychopomp,
|
|
20338
|
+
TestedByCombat,
|
|
20339
|
+
ChromaticCombatant
|
|
19514
20340
|
];
|
|
19515
20341
|
|
|
19516
20342
|
const Academic = {
|
|
@@ -21361,7 +22187,7 @@ This plaque memorializes the citizens of Paragon City, whether powered or not, w
|
|
|
21361
22187
|
{
|
|
21362
22188
|
key: "bicn-8",
|
|
21363
22189
|
type: "monument",
|
|
21364
|
-
location: { zoneKey: KallistiWharf.key, coords: [
|
|
22190
|
+
location: { zoneKey: KallistiWharf.key, coords: [2380, 56, 1132], icon: "plaque", iconText: "1" },
|
|
21365
22191
|
monumentText: `On June 28, 1969, American police raided the gay bar known as the Stonewall Inn in Lower Manhattan, NYC.
|
|
21366
22192
|
This would trigger a violent riot that would spark the flame of progress all across the United States of America.
|
|
21367
22193
|
Paragon City was not excluded from this sweeping push for progress, with both civilians and heroes making a stand side-by-side and campaigning for equal rights for gay, lesbian, bisexual, and transgender individuals across the nation.
|
|
@@ -21599,6 +22425,209 @@ Every monster was cut down, yet no victory could they reap.`,
|
|
|
21599
22425
|
]
|
|
21600
22426
|
};
|
|
21601
22427
|
|
|
22428
|
+
const ChristieConsolidation = {
|
|
22429
|
+
type: "history",
|
|
22430
|
+
key: "christie-consolidation",
|
|
22431
|
+
setTitleId: [2558],
|
|
22432
|
+
name: "Christie Consolidation",
|
|
22433
|
+
releaseDate: "2025-06-17",
|
|
22434
|
+
morality: "all",
|
|
22435
|
+
badgeText: `You have read up on the many gambles that Emil Christie has taken to recover the Wharf after the Rikti War.`,
|
|
22436
|
+
links: [
|
|
22437
|
+
{ title: "Christie Consolidation Badge", href: "https://homecoming.wiki/wiki/Christie_Consolidation_Badge" }
|
|
22438
|
+
],
|
|
22439
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/history/history-h.png",
|
|
22440
|
+
requirements: [
|
|
22441
|
+
{
|
|
22442
|
+
key: "chri-0",
|
|
22443
|
+
type: "monument",
|
|
22444
|
+
location: { zoneKey: KallistiWharf.key, coords: [6080.9, 80, 1031.6], icon: "pedestal", iconText: "3" },
|
|
22445
|
+
monumentText: `Welcome, Paragonian, to Kallisti Wharf! If you are reading this, then you most likely just came down from the local tram line that Emil Christie lobbied for personally.
|
|
22446
|
+
As one of the first directives to restoring the Wharf, Mr. Christie spent considerable time and influence getting tram service reconnected to our district.`
|
|
22447
|
+
},
|
|
22448
|
+
{
|
|
22449
|
+
key: "chri-1",
|
|
22450
|
+
type: "monument",
|
|
22451
|
+
location: { zoneKey: KallistiWharf.key, coords: [5793.3, 66.78, 1726.2], icon: "pedestal", iconText: "4" },
|
|
22452
|
+
monumentText: `This area of the city may look familiar to you. If you think you saw it on ClikClak as a viral meme, you're right!
|
|
22453
|
+
During a field test for self-driving cars, Christie Consolidated discovered and isolated a bug in the LIDAR recognition of its Autonomous Drive Software, but not before everyone started calling out the infamous 'Carnado' on social media.
|
|
22454
|
+
We want to reiterate that nobody was hurt, and the only damage occurred to CC's own vehicles!`
|
|
22455
|
+
},
|
|
22456
|
+
{
|
|
22457
|
+
key: "chri-2",
|
|
22458
|
+
type: "monument",
|
|
22459
|
+
location: { zoneKey: KallistiWharf.key, coords: [7356, 77.7, 527.5], icon: "plaque", iconText: "2" },
|
|
22460
|
+
monumentText: `It was an easy decision to allow Vanguard a residency in our district. With the rich history, booming tech sector, and scars of the Rikti War here in the Wharf, Vanguard set up an office here as soon as recovery efforts had concluded.
|
|
22461
|
+
Vanguard has been crucial in acclimating the influx of Praetorian Refugees - a safehouse policy that Mr. Christie launched as soon as the Praetorian War ended. Earth for Humans!`
|
|
22462
|
+
},
|
|
22463
|
+
{
|
|
22464
|
+
key: "chri-3",
|
|
22465
|
+
type: "monument",
|
|
22466
|
+
location: { zoneKey: KallistiWharf.key, coords: [7141.8, 57, 2650], icon: "pedestal", iconText: "5" },
|
|
22467
|
+
monumentText: `When Emil Christie was looking to rebuild the Wharf, corporate patronage was at the top of his priority list.
|
|
22468
|
+
Crey Biotech was one of the first in line, along with Hero Corps and Langston, to help rebuild the area. Now, these twin pillars of progress stand tall to remind us that Kallisti Wharf will endure!`
|
|
22469
|
+
},
|
|
22470
|
+
{
|
|
22471
|
+
key: "chri-4",
|
|
22472
|
+
type: "monument",
|
|
22473
|
+
location: { zoneKey: KallistiWharf.key, coords: [5782.5, 53, 4698.9], icon: "plaque", iconText: "6" },
|
|
22474
|
+
monumentText: `'Integrity Above All' was the motto that the PPD of Kallisti Wharf used to live by.
|
|
22475
|
+
But in the years after the Rikti War, more than 80 percent of the force was commuting into the area and none of the top brass were local sons and daughters of the community.
|
|
22476
|
+
As such, the PPD transformed into a rather cold and authoritative force within the Wharf, lacking the ability to truly understand the community they were trying to protect.
|
|
22477
|
+
Despite efforts to reform, the city nearly caught fire when Kieran Holt died within the walls of the Precinct in 2008.
|
|
22478
|
+
Emil Christie sought for a peaceful solution, but could not placate the residents who had lived through so much since the Rikti War and riots seemed inevitable.
|
|
22479
|
+
As a compromise, he contracted with Blackwing Industries, a low-profile corporate paramilitary peacekeeping force, with specific instructions to integrate with the community they were to protect.
|
|
22480
|
+
Crime is down 46 percent over the last 5 years, and polls show that residents regard Blackwing as a pivotal reason for their peace of mind.`
|
|
22481
|
+
},
|
|
22482
|
+
{
|
|
22483
|
+
key: "chri-5",
|
|
22484
|
+
type: "monument",
|
|
22485
|
+
location: { zoneKey: KallistiWharf.key, coords: [1550, 66, 4720], icon: "plaque", iconText: "7" },
|
|
22486
|
+
monumentText: `The Adamstown Infirmary was built during World War I and expanded during World War II to help care for soldiers who were shipped home with injuries when nearby Fort Steuben ran out of space to house them.
|
|
22487
|
+
The infirmary later served the role of a field hospital during the Rikti War. Emil Christie confirmed its status as a protected historical site, and it still operates to this day as emergency care for super and non-super citizens alike.`
|
|
22488
|
+
},
|
|
22489
|
+
{
|
|
22490
|
+
key: "chri-6",
|
|
22491
|
+
type: "monument",
|
|
22492
|
+
location: { zoneKey: KallistiWharf.key, coords: [580.7, 60.8, 4698.9], icon: "pedestal", iconText: "8" },
|
|
22493
|
+
monumentText: `The Old Slough began as a communal field for Adamstown, known for its murky pond and fertile soil.
|
|
22494
|
+
The shipping business in Kallisti Wharf may have been collapsing in the 1930s and 40s, but it was being rapidly replaced with industry.
|
|
22495
|
+
Factories began to pop up across Old Slough, replacing its dairy farms. Seemingly overnight the Slough was building planes, tanks, and weapons, eventually consuming every last bit of the old field, until all that remained was the name.
|
|
22496
|
+
This area too plunged into poverty during the decline in the 1970s, punctuated by the fire at Manny's Gas Station that took the life of Luigi 'Lou' Spagnolo and sounded a death knell for the community in the area.`
|
|
22497
|
+
},
|
|
22498
|
+
{
|
|
22499
|
+
key: "chri-7",
|
|
22500
|
+
type: "monument",
|
|
22501
|
+
location: { zoneKey: KallistiWharf.key, coords: [666.5, 71, 3750.8], icon: "plaque", iconText: "9" },
|
|
22502
|
+
monumentText: `Halsted Aeronautics made this site their home in 1974, and was field testing VTOL for public transit until 1986.
|
|
22503
|
+
The company went belly-up after a disastrous field test that claimed the lives of three test pilots and a film crew at the Marina docks.
|
|
22504
|
+
The assets were sold off to various companies and to the Paragon Transit Authority, who used some of their tech for the buses that run day and night in Paragon City.
|
|
22505
|
+
Christie Consolidated championed the LIDAR research and developed it for self-driving cars. Langston Corporation settled in this building in 2018, and the sweet smell of chocolate can be found in the air on Tuesdays and Fridays.`
|
|
22506
|
+
},
|
|
22507
|
+
{
|
|
22508
|
+
key: "chri-8",
|
|
22509
|
+
type: "monument",
|
|
22510
|
+
location: { zoneKey: KallistiWharf.key, coords: [1719.4, 13, -79], icon: "pedestal", iconText: "10" },
|
|
22511
|
+
monumentText: `Welcome, friend, to Kallisti Wharf! If you are reading this, then you're probably still trying to lose your sea legs after a nice relaxing boat ride from outside the walls.
|
|
22512
|
+
If you look out to the Northern walls of the district, you'll see the massive War-Wall sea gates that allow for marine trade and travel.
|
|
22513
|
+
Another district improvement that Mr. Christie lobbied for to help restore the Wharf and its community!`
|
|
22514
|
+
}
|
|
22515
|
+
]
|
|
22516
|
+
};
|
|
22517
|
+
|
|
22518
|
+
const FlagtownMemorialist = {
|
|
22519
|
+
type: "history",
|
|
22520
|
+
key: "flagtown-memorialist",
|
|
22521
|
+
setTitleId: [2557],
|
|
22522
|
+
name: "Flagtown Memorialist",
|
|
22523
|
+
releaseDate: "2025-06-17",
|
|
22524
|
+
morality: "all",
|
|
22525
|
+
badgeText: `You are now considered an academic in the history of Flagtown in Kallisti Wharf.`,
|
|
22526
|
+
links: [
|
|
22527
|
+
{ title: "Flagtown Memorialist Badge", href: "https://homecoming.wiki/wiki/Flagtown_Memorialist_Badge" }
|
|
22528
|
+
],
|
|
22529
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/history/history-h.png",
|
|
22530
|
+
requirements: [
|
|
22531
|
+
{
|
|
22532
|
+
key: "flag-0",
|
|
22533
|
+
type: "monument",
|
|
22534
|
+
location: { zoneKey: KallistiWharf.key, coords: [6642.4, 71, 1663.6], icon: "plaque", iconText: "11" },
|
|
22535
|
+
monumentText: `This hospital is dedicated to Dr. Padma Wadkar, a.k.a. Brightshield. Her glowing shield was often seen as a beacon of hope in a dark world.
|
|
22536
|
+
During the Rikti bombing of Flagtown, Brightshield ushered as many people as she could through a portal that she opened to a safer area of the city.
|
|
22537
|
+
The Rikti first tried to destroy her with ordnance from their dropships, and when they failed, they sent ground troops after her amidst the carnage.
|
|
22538
|
+
In solemn remembrance and gratitude for her sacrifice, Emil Christie dedicated the new hospital to her memory, so that we may never forget her.`
|
|
22539
|
+
},
|
|
22540
|
+
{
|
|
22541
|
+
key: "flag-1",
|
|
22542
|
+
type: "monument",
|
|
22543
|
+
location: { zoneKey: KallistiWharf.key, coords: [6083.7, 47, 2714.6], icon: "pedestal", iconText: "12" },
|
|
22544
|
+
monumentText: `Flagtown is the metropolitan area that once took up most of the West Bank.
|
|
22545
|
+
Like its East Bank counterpart, it was built up heavily in the 1910s and 1920s as a major commercial shipping port, and fell into decline during the 1930s.
|
|
22546
|
+
It saw some revitalization during the war as factories popped up and replaced many of its warehouses, but it's one constant throughout all of that was Fort Steuben, which took up the lower third of the area, where the Paragon Trade Center now stands.`
|
|
22547
|
+
},
|
|
22548
|
+
{
|
|
22549
|
+
key: "flag-2",
|
|
22550
|
+
type: "monument",
|
|
22551
|
+
location: { zoneKey: KallistiWharf.key, coords: [7286.4, 55.5, 3581.4], icon: "plaque", iconText: "13" },
|
|
22552
|
+
monumentText: `Fort Steuben was closed in the 1970s, however it was reactivated during the Rikti War as a forward base of operations, flying the flag once again outside its gates.
|
|
22553
|
+
When the base proved itself to be a more serious threat than much of the rest of the city, the Rikti utilized drop ships to bomb the entire West Bank into dust, annihilating Fort Steuben and the rest of Flagtown along with it.
|
|
22554
|
+
On the morning of the second Rikti assault wave, the flagpole came down at 7:34 A.M., a time that most residents remember as the time hope faltered.`
|
|
22555
|
+
},
|
|
22556
|
+
{
|
|
22557
|
+
key: "flag-3",
|
|
22558
|
+
type: "monument",
|
|
22559
|
+
location: { zoneKey: KallistiWharf.key, coords: [6977, 65, 3917.7], icon: "pedestal", iconText: "15" },
|
|
22560
|
+
monumentText: `Before the park was built, a military base proudly stood here for almost a hundred years.
|
|
22561
|
+
Fort Steuben was named for Baron Friedrich Wilhelm von Steuben, a Prussian-American who served in the continental army during the revolutionary war and taught basic military drills and tactics.
|
|
22562
|
+
Appropriately, Fort Steuben was a training base founded in the late 19th century by the US Army.
|
|
22563
|
+
It trained many of the men who fought during both World Wars. Its chief landmark was an immense 300 foot high flag pole that could be seen from anywhere in the Wharf, from which Flagtown got its name.`
|
|
22564
|
+
},
|
|
22565
|
+
{
|
|
22566
|
+
key: "flag-4",
|
|
22567
|
+
type: "monument",
|
|
22568
|
+
location: { zoneKey: KallistiWharf.key, coords: [6930.1, 66.8, 4279.7], icon: "plaque", iconText: "16" },
|
|
22569
|
+
monumentText: `Flagtown Memorial Park was built on the site of the former gates to Fort Steuben, where the eponymous flag once stood.
|
|
22570
|
+
Enshrined there is an eternal flame and a memorial wall with the names of all the dead and missing that were lost when Flagtown was destroyed.
|
|
22571
|
+
Many residents who still remember the recovery efforts call this time the 'Sleepless Nights', an homage to a popular song sung by an unnamed street performer from Theatre Row who would sing to the survivors and the rescue crews every night for three weeks to keep their morale high.`
|
|
22572
|
+
},
|
|
22573
|
+
{
|
|
22574
|
+
key: "flag-5",
|
|
22575
|
+
type: "monument",
|
|
22576
|
+
location: { zoneKey: KallistiWharf.key, coords: [6404.9, 70, 3917.6], icon: "pedestal", iconText: "14" },
|
|
22577
|
+
monumentText: `This section of the city, New Flagtown, is a dedicated residential complex consisting largely of high-rise apartments that can house thousands.
|
|
22578
|
+
When Emil Christie sold off the various properties in the area, he made sure that the new owners were bound by contracts which ensured the housing was affordable, and that anyone who previously lived in Flagtown prior to its destruction and survived could move back.
|
|
22579
|
+
Very few took the offer, as the scars of the Rikti War and the destruction of Flagtown ran deep, but there are some who live among its towers of steel and glass that remember.`
|
|
22580
|
+
}
|
|
22581
|
+
]
|
|
22582
|
+
};
|
|
22583
|
+
|
|
22584
|
+
const PatronOfTheArts = {
|
|
22585
|
+
type: "history",
|
|
22586
|
+
key: "patron-of-the-arts",
|
|
22587
|
+
setTitleId: [2556],
|
|
22588
|
+
name: "Patron of the Arts",
|
|
22589
|
+
releaseDate: "2025-06-17",
|
|
22590
|
+
morality: "all",
|
|
22591
|
+
badgeText: `You are considered a Patron of the Arts for showing a vested interest in Theatre Row and its struggles through the past and present century.`,
|
|
22592
|
+
links: [
|
|
22593
|
+
{ title: "Patron of the Arts Badge", href: "https://homecoming.wiki/wiki/Patron_of_the_Arts_Badge" }
|
|
22594
|
+
],
|
|
22595
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/history/history-h.png",
|
|
22596
|
+
requirements: [
|
|
22597
|
+
{
|
|
22598
|
+
key: "patr-0",
|
|
22599
|
+
type: "monument",
|
|
22600
|
+
location: { zoneKey: KallistiWharf.key, coords: [1997.9, 47.5, 423], icon: "plaque", iconText: "20" },
|
|
22601
|
+
monumentText: `Theatre Row was a place of fashion and culture for decades. It truly rose to fame in the 1910s and 1920s when Kallisti Wharf was booming with trade, shipping, and immigration.
|
|
22602
|
+
It was renowned for its unique street food, art festivals, and numerous theaters, quickly developing into a major tourist trap.
|
|
22603
|
+
By the late 1930s the Paragon Showcase sprang up, a rival film festival to the nascent Cannes and Venice Film Festivals.`
|
|
22604
|
+
},
|
|
22605
|
+
{
|
|
22606
|
+
key: "patr-1",
|
|
22607
|
+
type: "monument",
|
|
22608
|
+
location: { zoneKey: KallistiWharf.key, coords: [1308.5, 18.4, 923], icon: "plaque", iconText: "19" },
|
|
22609
|
+
monumentText: `In the aftermath of Mark Maxwell's corruption case, Emil Christie sought to bring back some positivity and good will to the area.
|
|
22610
|
+
The site was sold to David 'Odysseus' Hill and his foundation as a philanthropic endeavor to build the area up as a nod to the Greek immigrants that settled it.
|
|
22611
|
+
The plans are to have a multi-faceted entertainment complex in the form of a traditional colosseum, which can also be converted within hours to be a forum for live outdoor theater.
|
|
22612
|
+
This about-face for the area won Emil Christie his re-election handily.`
|
|
22613
|
+
},
|
|
22614
|
+
{
|
|
22615
|
+
key: "patr-2",
|
|
22616
|
+
type: "monument",
|
|
22617
|
+
location: { zoneKey: KallistiWharf.key, coords: [1837.5, 42, 1208.9], icon: "pedestal", iconText: "18" },
|
|
22618
|
+
monumentText: `In the early 2000s, there was a movement to revitalize the area, but the Rikti War put an end to that when Flagtown and much of the Wharf were devastated, plunging the area into a depression.
|
|
22619
|
+
Some years later, several of the theaters were bought by land tycoon Mark Maxwell after a tense set of townhall forums.`
|
|
22620
|
+
},
|
|
22621
|
+
{
|
|
22622
|
+
key: "patr-3",
|
|
22623
|
+
type: "monument",
|
|
22624
|
+
location: { zoneKey: KallistiWharf.key, coords: [1954.8, 48.5, 1685.5], icon: "plaque", iconText: "17" },
|
|
22625
|
+
monumentText: `In the early 1950s, a string of corruption and tax fraud charges at the Showcase sent it spiraling into bankruptcy, tarnishing the reputation of the area.
|
|
22626
|
+
The Row began its long decline, and the street for which it was named fell fully into disrepair during the 1970s. Most of the theatres were abandoned and condemned, a haven for squatters and the criminals who preyed upon them.`
|
|
22627
|
+
}
|
|
22628
|
+
]
|
|
22629
|
+
};
|
|
22630
|
+
|
|
21602
22631
|
const HISTORY_BADGES = [
|
|
21603
22632
|
Lorekeeper,
|
|
21604
22633
|
Technofreak,
|
|
@@ -21626,7 +22655,10 @@ const HISTORY_BADGES = [
|
|
|
21626
22655
|
ParkStroller,
|
|
21627
22656
|
Alumnus,
|
|
21628
22657
|
Bicentennial,
|
|
21629
|
-
GreekPhilosopher
|
|
22658
|
+
GreekPhilosopher,
|
|
22659
|
+
PatronOfTheArts,
|
|
22660
|
+
FlagtownMemorialist,
|
|
22661
|
+
ChristieConsolidation
|
|
21630
22662
|
];
|
|
21631
22663
|
|
|
21632
22664
|
const Tourist = {
|
|
@@ -21888,7 +22920,7 @@ const UntilTheEndOfTheWorld = {
|
|
|
21888
22920
|
releaseDate: "2012-11-30",
|
|
21889
22921
|
morality: "all",
|
|
21890
22922
|
badgeText: `You've seen your world and others come to the brink many times, but each time you've been there to pull them back and keep things going. And you'll continue to be there, no matter what the future brings.`,
|
|
21891
|
-
acquisition: "Collect 1500 badges
|
|
22923
|
+
acquisition: "Collect 1500 badges.",
|
|
21892
22924
|
links: [
|
|
21893
22925
|
{ title: "Until the End of the World Badge", href: "https://homecoming.wiki/wiki/Until_the_End_of_the_World_Badge" }
|
|
21894
22926
|
],
|
|
@@ -22369,7 +23401,7 @@ const Cataclysmic = {
|
|
|
22369
23401
|
releaseDate: "2012-11-30",
|
|
22370
23402
|
morality: "all",
|
|
22371
23403
|
badgeText: `You have inflicted one hundred million points of damage upon your foes.`,
|
|
22372
|
-
acquisition: "Deal 100,000,000 damage
|
|
23404
|
+
acquisition: "Deal 100,000,000 damage.",
|
|
22373
23405
|
links: [
|
|
22374
23406
|
{ title: "Cataclysmic Badge", href: "https://homecoming.wiki/wiki/Cataclysmic_Badge" }
|
|
22375
23407
|
],
|
|
@@ -22605,7 +23637,7 @@ const Decimator = {
|
|
|
22605
23637
|
releaseDate: "2012-11-30",
|
|
22606
23638
|
morality: "all",
|
|
22607
23639
|
badgeText: `You have inflicted ten million points of damage upon your foes.`,
|
|
22608
|
-
acquisition: "Deal 10,000,000 damage
|
|
23640
|
+
acquisition: "Deal 10,000,000 damage.",
|
|
22609
23641
|
links: [
|
|
22610
23642
|
{ title: "Decimator Badge", href: "https://homecoming.wiki/wiki/Decimator_Badge" }
|
|
22611
23643
|
],
|
|
@@ -22822,7 +23854,7 @@ const Eliminator = {
|
|
|
22822
23854
|
releaseDate: "2012-11-30",
|
|
22823
23855
|
morality: "all",
|
|
22824
23856
|
badgeText: "You have inflicted five hundred thousand points of damage upon your foes.",
|
|
22825
|
-
acquisition: "Deal 500,000 damage
|
|
23857
|
+
acquisition: "Deal 500,000 damage.",
|
|
22826
23858
|
links: [
|
|
22827
23859
|
{ title: "Eliminator Badge", href: "https://homecoming.wiki/wiki/Eliminator_Badge" }
|
|
22828
23860
|
],
|
|
@@ -22923,7 +23955,7 @@ const Eradicator = {
|
|
|
22923
23955
|
releaseDate: "2012-11-30",
|
|
22924
23956
|
morality: "all",
|
|
22925
23957
|
badgeText: "You have inflicted fifty million points of damage upon your foes.",
|
|
22926
|
-
acquisition: "Deal 50,000,000 damage
|
|
23958
|
+
acquisition: "Deal 50,000,000 damage.",
|
|
22927
23959
|
links: [
|
|
22928
23960
|
{ title: "Eradicator Badge", href: "https://homecoming.wiki/wiki/Eradicator_Badge" }
|
|
22929
23961
|
],
|
|
@@ -22966,7 +23998,7 @@ const Executioner = {
|
|
|
22966
23998
|
releaseDate: "2012-11-30",
|
|
22967
23999
|
morality: "all",
|
|
22968
24000
|
badgeText: "You have inflicted twenty five million points of damage upon your foes.",
|
|
22969
|
-
acquisition: "Deal 25,000,000 damage
|
|
24001
|
+
acquisition: "Deal 25,000,000 damage.",
|
|
22970
24002
|
links: [
|
|
22971
24003
|
{ title: "Executioner Badge", href: "https://homecoming.wiki/wiki/Executioner_Badge" }
|
|
22972
24004
|
],
|
|
@@ -24728,7 +25760,7 @@ const Relentless = {
|
|
|
24728
25760
|
releaseDate: "2012-11-30",
|
|
24729
25761
|
morality: "all",
|
|
24730
25762
|
badgeText: "You have inflicted one million points of damage upon your foes.",
|
|
24731
|
-
acquisition: "Deal 1,000,000 damage
|
|
25763
|
+
acquisition: "Deal 1,000,000 damage.",
|
|
24732
25764
|
links: [
|
|
24733
25765
|
{ title: "Relentless Badge", href: "https://homecoming.wiki/wiki/Relentless_Badge" }
|
|
24734
25766
|
],
|
|
@@ -25584,6 +26616,90 @@ const Multifaceted = {
|
|
|
25584
26616
|
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/alignment-tips.png"
|
|
25585
26617
|
};
|
|
25586
26618
|
|
|
26619
|
+
const Jailbreaker = {
|
|
26620
|
+
type: "achievement",
|
|
26621
|
+
key: "jailbreaker",
|
|
26622
|
+
setTitleId: [2578],
|
|
26623
|
+
name: "Jailbreaker",
|
|
26624
|
+
releaseDate: "2025-11-25",
|
|
26625
|
+
morality: "all",
|
|
26626
|
+
badgeText: `Even though getting the Golden Roller out of prison didn't go entirely according to plan, you still ensured none of the other dangerous threats contained within the Arachnos Central Holding Block could escape back into the world.`,
|
|
26627
|
+
acquisition: `Defeat all five unique CHB prisoner arch-villains encountered during Marigold 'Zoe' Langston's Task Force.`,
|
|
26628
|
+
links: [
|
|
26629
|
+
{ title: "Jailbreaker Badge", href: "https://homecoming.wiki/wiki/Jailbreaker_Badge" }
|
|
26630
|
+
],
|
|
26631
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png"
|
|
26632
|
+
};
|
|
26633
|
+
|
|
26634
|
+
const SubterraneanStriker = {
|
|
26635
|
+
type: "achievement",
|
|
26636
|
+
key: "subterranean-striker",
|
|
26637
|
+
setTitleId: [2579],
|
|
26638
|
+
name: "Subterranean Striker",
|
|
26639
|
+
releaseDate: "2025-11-25",
|
|
26640
|
+
morality: "all",
|
|
26641
|
+
badgeText: `An unfathomable amount of dangers slither in the dark below Paragon City, but these threats didn't deter you in the slightest. You carved a path through the tunnels below Kallisti Wharf, eliminating every potential threat to the surface.`,
|
|
26642
|
+
acquisition: `Defeat all three arch-villain enemies while exploring underground in Marigold 'Zoe' Langston's Task Force on Advanced Mode.`,
|
|
26643
|
+
links: [
|
|
26644
|
+
{ title: "Subterranean Striker Badge", href: "https://homecoming.wiki/wiki/Subterranean_Striker_Badge" }
|
|
26645
|
+
],
|
|
26646
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png"
|
|
26647
|
+
};
|
|
26648
|
+
|
|
26649
|
+
const KnockbackKing = {
|
|
26650
|
+
type: "achievement",
|
|
26651
|
+
key: "knockback-king",
|
|
26652
|
+
setTitleId: [2580],
|
|
26653
|
+
name: [
|
|
26654
|
+
{ sex: "M", value: "Knockback King" },
|
|
26655
|
+
{ sex: "F", value: "Knockback Queen" }
|
|
26656
|
+
],
|
|
26657
|
+
releaseDate: "2025-11-25",
|
|
26658
|
+
morality: "all",
|
|
26659
|
+
badgeText: `While many working supers consider knockback an annoyance, you see it as an opportunity to put your opponents right where you want them. The Nemesis Army have learned a valuable lesson on why you should keep your arms and legs inside the moving train at all times.`,
|
|
26660
|
+
acquisition: `Defeat 50 enemies via [CRUNCH] on the final mission of Marigold 'Zoe' Langston's Task Force.`,
|
|
26661
|
+
links: [
|
|
26662
|
+
{ title: "Knockback King Badge", href: "https://homecoming.wiki/wiki/Knockback_King_Badge" }
|
|
26663
|
+
],
|
|
26664
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png"
|
|
26665
|
+
};
|
|
26666
|
+
|
|
26667
|
+
const SnowWarning = {
|
|
26668
|
+
type: "achievement",
|
|
26669
|
+
key: "snow-warning",
|
|
26670
|
+
setTitleId: [2577],
|
|
26671
|
+
name: "Snow Warning",
|
|
26672
|
+
releaseDate: "2025-11-25",
|
|
26673
|
+
morality: "all",
|
|
26674
|
+
badgeText: `You've proven to be light on your feet, dodging all of the deadly cones of cold sent your way by Ultimatum's Flashfreeze, the agent who holds commanding authority over Blackwing Industries' P.E.A.C.E. division.`,
|
|
26675
|
+
acquisition: `Defeat Flashfreeze in Marigold 'Zoe' Langston's Task Force on Advanced Mode without anybody on the team being hit by her Cryonic Judgement special attack.Complete Marigold 'Zoe' Langston's Task Force.`,
|
|
26676
|
+
links: [
|
|
26677
|
+
{ title: "SnowWarning Badge", href: "https://homecoming.wiki/wiki/Snow_Warning_Badge" }
|
|
26678
|
+
],
|
|
26679
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png"
|
|
26680
|
+
};
|
|
26681
|
+
|
|
26682
|
+
const MasterOfZoesTaskForce = {
|
|
26683
|
+
type: "achievement",
|
|
26684
|
+
key: "master-of-zoes-task-force",
|
|
26685
|
+
setTitleId: [2581],
|
|
26686
|
+
name: `Master of Zoe's Task Force`,
|
|
26687
|
+
releaseDate: "2025-11-25",
|
|
26688
|
+
morality: "all",
|
|
26689
|
+
badgeText: `You have proven yourself Master of Marigold 'Zoe' Langston's Task Force.`,
|
|
26690
|
+
acquisition: `Achieve the following special achievements during Marigold 'Zoe' Langston's Task Force: Snow Warning, Jailbreaker, Subterranean Striker, and Knockback King/Queen.`,
|
|
26691
|
+
links: [
|
|
26692
|
+
{ title: `Master of Zoe's Task Force Badge`, href: `https://homecoming.wiki/wiki/Master_of_Zoe's_Task_Force_Badge` }
|
|
26693
|
+
],
|
|
26694
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/master-of-zoes-task-force.png",
|
|
26695
|
+
requirements: [
|
|
26696
|
+
{ key: Jailbreaker.key, type: "badge", badgeKey: Jailbreaker.key },
|
|
26697
|
+
{ key: KnockbackKing.key, type: "badge", badgeKey: KnockbackKing.key },
|
|
26698
|
+
{ key: SnowWarning.key, type: "badge", badgeKey: SnowWarning.key },
|
|
26699
|
+
{ key: SubterraneanStriker.key, type: "badge", badgeKey: SubterraneanStriker.key }
|
|
26700
|
+
]
|
|
26701
|
+
};
|
|
26702
|
+
|
|
25587
26703
|
const ACHIEVEMENT_BADGES = [
|
|
25588
26704
|
// Levels
|
|
25589
26705
|
ProtectorOfInnocents,
|
|
@@ -25760,6 +26876,11 @@ const ACHIEVEMENT_BADGES = [
|
|
|
25760
26876
|
RippleRaider,
|
|
25761
26877
|
PowerOverwhelming,
|
|
25762
26878
|
CantTouchThis,
|
|
26879
|
+
// ZoeTF
|
|
26880
|
+
SnowWarning,
|
|
26881
|
+
Jailbreaker,
|
|
26882
|
+
SubterraneanStriker,
|
|
26883
|
+
KnockbackKing,
|
|
25763
26884
|
// Mothership Raid
|
|
25764
26885
|
Demolitionist,
|
|
25765
26886
|
// Master Of...
|
|
@@ -25772,6 +26893,7 @@ const ACHIEVEMENT_BADGES = [
|
|
|
25772
26893
|
MasterOfDrAeonsStrikeForce,
|
|
25773
26894
|
MasterOfApexsTaskForce,
|
|
25774
26895
|
MasterOfTinMagesTaskForce,
|
|
26896
|
+
MasterOfZoesTaskForce,
|
|
25775
26897
|
MasterOfThePrisonersOfEden,
|
|
25776
26898
|
MasterOfTheDescentToTheHydra,
|
|
25777
26899
|
MasterOfTheMarketCrash,
|
|
@@ -28158,6 +29280,56 @@ const MalevolentIntoxication = {
|
|
|
28158
29280
|
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/defeat/malevolent-intoxication.png"
|
|
28159
29281
|
};
|
|
28160
29282
|
|
|
29283
|
+
const Peacekeeper = {
|
|
29284
|
+
type: "defeat",
|
|
29285
|
+
key: "peacekeeper",
|
|
29286
|
+
setTitleId: [2568],
|
|
29287
|
+
name: [
|
|
29288
|
+
{ alignment: "hero", value: "Peacekeeper" },
|
|
29289
|
+
{ alignment: "villain", value: "Peacemaker" }
|
|
29290
|
+
],
|
|
29291
|
+
releaseDate: "2025-06-17",
|
|
29292
|
+
morality: "all",
|
|
29293
|
+
badgeText: `The most expensive weapon in P.E.A.C.E.'s arsenal was a gargantuan piloted mech... That you sent to the scrap heap.
|
|
29294
|
+
It's not quite apparent what One Statesman Plaza and its tower hides, but Blackwing Industries have been paid an unthinkable sum to ensure that Emil Christie's investment was secure.`,
|
|
29295
|
+
acquisition: `Defeat the P.E.A.C.E. Keeper in ${cohContentDb.zoneLink(KallistiWharf)}.`,
|
|
29296
|
+
links: [
|
|
29297
|
+
{ title: "Peacekeeper Badge", href: "https://homecoming.wiki/wiki/Peacekeeper_Badge" }
|
|
29298
|
+
],
|
|
29299
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/defeat/peacekeeper.png"
|
|
29300
|
+
};
|
|
29301
|
+
|
|
29302
|
+
const TwoBirdsOneStone = {
|
|
29303
|
+
type: "defeat",
|
|
29304
|
+
key: "two-birds-one-stone",
|
|
29305
|
+
setTitleId: [2508],
|
|
29306
|
+
name: "Two Birds, One Stone",
|
|
29307
|
+
releaseDate: "2025-06-17",
|
|
29308
|
+
morality: "all",
|
|
29309
|
+
badgeText: `When the Blackwing Industries private military company was contracted to protect Kallisti Wharf, you weren't sure what to expect.
|
|
29310
|
+
Now, having faced their advanced armor, weapons, and training yourself, there's no doubt that the security of Kallisti Wharf is in capable hands.`,
|
|
29311
|
+
acquisition: "Defeat 250 Blackwing Industries enemies.",
|
|
29312
|
+
links: [
|
|
29313
|
+
{ title: "Two Birds, One Stone Badge", href: "https://homecoming.wiki/wiki/Two_Birds_One_Stone_Badge" }
|
|
29314
|
+
],
|
|
29315
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/defeat/two-birds-one-stone.png"
|
|
29316
|
+
};
|
|
29317
|
+
|
|
29318
|
+
const MutatedMarauder = {
|
|
29319
|
+
type: "defeat",
|
|
29320
|
+
key: "mutated-marauder",
|
|
29321
|
+
setTitleId: [2583],
|
|
29322
|
+
name: "Mutated Maurader",
|
|
29323
|
+
releaseDate: "2025-11-25",
|
|
29324
|
+
morality: "all",
|
|
29325
|
+
badgeText: `There's so many conflicting theories as to the true origin of the Hydra that you aren't sure what to believe. What you are sure of, however, is that these monstrous mutated organisms are incredibly dangerous.`,
|
|
29326
|
+
acquisition: `Defeat 100 Hydra enemies.`,
|
|
29327
|
+
links: [
|
|
29328
|
+
{ title: "Mutated Marauder Badge", href: "https://homecoming.wiki/wiki/Mutated_Maurader_Badge" }
|
|
29329
|
+
],
|
|
29330
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/defeat/mutated-marauder.png"
|
|
29331
|
+
};
|
|
29332
|
+
|
|
28161
29333
|
const DEFEAT_BADGES = [
|
|
28162
29334
|
SpiderSmasher,
|
|
28163
29335
|
Venomous,
|
|
@@ -28173,6 +29345,7 @@ const DEFEAT_BADGES = [
|
|
|
28173
29345
|
MalevolentIntoxication,
|
|
28174
29346
|
Terminator,
|
|
28175
29347
|
Isolator,
|
|
29348
|
+
MutatedMarauder,
|
|
28176
29349
|
Gearsmasher,
|
|
28177
29350
|
Coldblooded,
|
|
28178
29351
|
SoulBinder,
|
|
@@ -28301,7 +29474,9 @@ const DEFEAT_BADGES = [
|
|
|
28301
29474
|
MasterOfOlympus,
|
|
28302
29475
|
MasterAtArms,
|
|
28303
29476
|
WelcomeToEarth,
|
|
28304
|
-
SlayerOfTheMinotaur
|
|
29477
|
+
SlayerOfTheMinotaur,
|
|
29478
|
+
Peacekeeper,
|
|
29479
|
+
TwoBirdsOneStone
|
|
28305
29480
|
];
|
|
28306
29481
|
|
|
28307
29482
|
const FreedomPhalanxReserveMember = {
|
|
@@ -29395,7 +30570,7 @@ const AtlasTourGuide = {
|
|
|
29395
30570
|
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accolade/explore-acc-h.png",
|
|
29396
30571
|
requirements: [
|
|
29397
30572
|
{ key: Undefeated.key, type: "badge", badgeKey: Undefeated.key },
|
|
29398
|
-
{ key:
|
|
30573
|
+
{ key: Rookie.key, type: "badge", badgeKey: Rookie.key },
|
|
29399
30574
|
{ key: HeroCorpsInsider.key, type: "badge", badgeKey: HeroCorpsInsider.key },
|
|
29400
30575
|
{ key: Patriot.key, type: "badge", badgeKey: Patriot.key },
|
|
29401
30576
|
{ key: TopDog.key, type: "badge", badgeKey: TopDog.key },
|
|
@@ -34519,7 +35694,7 @@ const WalkedDownMemoryLane = {
|
|
|
34519
35694
|
{ key: Trustworthy.key, type: "badge", badgeKey: Trustworthy.key },
|
|
34520
35695
|
{ key: Knowledgeable.key, type: "badge", badgeKey: Knowledgeable.key },
|
|
34521
35696
|
{ key: Virtuous.key, type: "badge", badgeKey: Virtuous.key },
|
|
34522
|
-
{ key:
|
|
35697
|
+
{ key: SilentSentinel.key, type: "badge", badgeKey: SilentSentinel.key },
|
|
34523
35698
|
{ key: Condemned.key, type: "badge", badgeKey: Condemned.key },
|
|
34524
35699
|
{ key: Resilient.key, type: "badge", badgeKey: Resilient.key },
|
|
34525
35700
|
{ key: OutOfHarmsWay.key, type: "badge", badgeKey: OutOfHarmsWay.key },
|
|
@@ -35581,7 +36756,7 @@ const BetweenRealities = {
|
|
|
35581
36756
|
morality: "all",
|
|
35582
36757
|
badgeText: `You've spent a significant amount of time shifting between the spatial overlaps of the First Ward and Night Ward.
|
|
35583
36758
|
With experience, you've learned of a method to manipulate the magics used by the Light & Shadowed Paths to define and utilize spatial jump points of your own.`,
|
|
35584
|
-
effect: `Awards the Mark
|
|
36759
|
+
effect: `Awards the Mark and Recall power.`,
|
|
35585
36760
|
links: [
|
|
35586
36761
|
{ title: "Between Realities Badge", href: "https://homecoming.wiki/wiki/Between_Realities_Badge" }
|
|
35587
36762
|
],
|
|
@@ -35623,7 +36798,7 @@ const ProtectorOfParagonCity = {
|
|
|
35623
36798
|
{ key: ForceOfJustice.key, type: "badge", badgeKey: ForceOfJustice.key },
|
|
35624
36799
|
{ key: Gallant.key, type: "badge", badgeKey: Gallant.key },
|
|
35625
36800
|
{ key: GuardianOfForever.key, type: "badge", badgeKey: GuardianOfForever.key },
|
|
35626
|
-
{ key:
|
|
36801
|
+
{ key: HelpingHand.key, type: "badge", badgeKey: HelpingHand.key },
|
|
35627
36802
|
{ key: TheGreaterGood.key, type: "badge", badgeKey: TheGreaterGood.key },
|
|
35628
36803
|
{ key: Bicentennial.key, type: "badge", badgeKey: Bicentennial.key }
|
|
35629
36804
|
]
|
|
@@ -35687,6 +36862,49 @@ const ConquerorOfTheLabyrinth = {
|
|
|
35687
36862
|
]
|
|
35688
36863
|
};
|
|
35689
36864
|
|
|
36865
|
+
const ThePrettiestOne = {
|
|
36866
|
+
type: "accolade",
|
|
36867
|
+
key: "the-prettiest-one",
|
|
36868
|
+
setTitleId: [2448],
|
|
36869
|
+
name: "The Prettiest One",
|
|
36870
|
+
releaseDate: "2025-06-17",
|
|
36871
|
+
morality: "heroic",
|
|
36872
|
+
badgeText: `You've obtained this Accolade by earning every Exploration badge within Kallisti Wharf.`,
|
|
36873
|
+
links: [
|
|
36874
|
+
{ title: "The Prettiest One Badge", href: "https://homecoming.wiki/wiki/The_Prettiest_One_Badge" }
|
|
36875
|
+
],
|
|
36876
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accolade/explore-acc-h.png",
|
|
36877
|
+
requirements: [
|
|
36878
|
+
{ key: OnTheShouldersOfGiants.key, type: "badge", badgeKey: OnTheShouldersOfGiants.key },
|
|
36879
|
+
{ key: InTheirPrime.key, type: "badge", badgeKey: InTheirPrime.key },
|
|
36880
|
+
{ key: ProtestTooMuch.key, type: "badge", badgeKey: ProtestTooMuch.key },
|
|
36881
|
+
{ key: FueledByGreed.key, type: "badge", badgeKey: FueledByGreed.key },
|
|
36882
|
+
{ key: RavingMad.key, type: "badge", badgeKey: RavingMad.key },
|
|
36883
|
+
{ key: MarkedOut.key, type: "badge", badgeKey: MarkedOut.key },
|
|
36884
|
+
{ key: QuayToTheCity.key, type: "badge", badgeKey: QuayToTheCity.key },
|
|
36885
|
+
{ key: TouristTrapped.key, type: "badge", badgeKey: TouristTrapped.key }
|
|
36886
|
+
]
|
|
36887
|
+
};
|
|
36888
|
+
|
|
36889
|
+
const Mazebreaker = {
|
|
36890
|
+
type: "accolade",
|
|
36891
|
+
key: "mazebreaker",
|
|
36892
|
+
setTitleId: [2582],
|
|
36893
|
+
name: "Mazebreaker",
|
|
36894
|
+
releaseDate: "2025-11-25",
|
|
36895
|
+
morality: "all",
|
|
36896
|
+
badgeText: `You've become much more adept at fighting in the Labyrinth of Fog after undergoing the full spectrum of Tests of Combat offered by the Four Generals of Achlys. No matter what comes next for the dream-like maze, you'll be ready.`,
|
|
36897
|
+
effect: `Awards the Mazebreaker power.`,
|
|
36898
|
+
links: [
|
|
36899
|
+
{ title: "Mazebreaker Badge", href: "https://homecoming.wiki/wiki/Mazebreaker_Badge" }
|
|
36900
|
+
],
|
|
36901
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accolade/mazebreaker-realities.png",
|
|
36902
|
+
requirements: [
|
|
36903
|
+
{ key: TestedByCombat.key, type: "badge", badgeKey: TestedByCombat.key },
|
|
36904
|
+
{ key: ChromaticCombatant.key, type: "badge", badgeKey: ChromaticCombatant.key }
|
|
36905
|
+
]
|
|
36906
|
+
};
|
|
36907
|
+
|
|
35690
36908
|
const ACCOLADE_BADGES = [
|
|
35691
36909
|
BugHunter,
|
|
35692
36910
|
Passport,
|
|
@@ -35749,6 +36967,7 @@ const ACCOLADE_BADGES = [
|
|
|
35749
36967
|
IPAddress,
|
|
35750
36968
|
LostAndFound,
|
|
35751
36969
|
ZigWarden,
|
|
36970
|
+
ThePrettiestOne,
|
|
35752
36971
|
PortalCorpAnalyst,
|
|
35753
36972
|
HistoryInTheMaking,
|
|
35754
36973
|
MercyMariner,
|
|
@@ -35830,6 +37049,7 @@ const ACCOLADE_BADGES = [
|
|
|
35830
37049
|
Chronomaster,
|
|
35831
37050
|
Hologram,
|
|
35832
37051
|
ConquerorOfTheLabyrinth,
|
|
37052
|
+
Mazebreaker,
|
|
35833
37053
|
BetweenRealities
|
|
35834
37054
|
];
|
|
35835
37055
|
|
|
@@ -36298,7 +37518,7 @@ const MobSpecialist = {
|
|
|
36298
37518
|
releaseDate: "2012-11-30",
|
|
36299
37519
|
morality: "heroic",
|
|
36300
37520
|
badgeText: "Crey has authorized these men for your Arena teams.",
|
|
36301
|
-
acquisition: "Defeat
|
|
37521
|
+
acquisition: "Defeat 100 Prisoner Bosses.",
|
|
36302
37522
|
links: [
|
|
36303
37523
|
{ title: "Mob Specialist Badge", href: "https://homecoming.wiki/wiki/Mob_Specialist_Badge" }
|
|
36304
37524
|
],
|
|
@@ -40094,7 +41314,7 @@ const Snowbound = {
|
|
|
40094
41314
|
links: [
|
|
40095
41315
|
{ title: "Snowbound Badge", href: "https://homecoming.wiki/wiki/Snowbound_Badge" }
|
|
40096
41316
|
],
|
|
40097
|
-
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
41317
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/snowbound.png"
|
|
40098
41318
|
};
|
|
40099
41319
|
|
|
40100
41320
|
const Legendary = {
|
|
@@ -40124,7 +41344,7 @@ const LicenseToChill = {
|
|
|
40124
41344
|
links: [
|
|
40125
41345
|
{ title: "License to Chill Badge", href: "https://homecoming.wiki/wiki/License_to_Chill_Badge" }
|
|
40126
41346
|
],
|
|
40127
|
-
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
41347
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/license-to-chill.png"
|
|
40128
41348
|
};
|
|
40129
41349
|
|
|
40130
41350
|
const Unquenchable = {
|
|
@@ -40244,7 +41464,7 @@ const HomeForTheHolidays = {
|
|
|
40244
41464
|
links: [
|
|
40245
41465
|
{ title: "Home for the Holidays Badge", href: "https://homecoming.wiki/wiki/Home_for_the_Holidays_Badge" }
|
|
40246
41466
|
],
|
|
40247
|
-
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
41467
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/home-for-the-holidays.png"
|
|
40248
41468
|
};
|
|
40249
41469
|
|
|
40250
41470
|
const Reunited = {
|
|
@@ -40320,7 +41540,7 @@ const Hypothermia = {
|
|
|
40320
41540
|
links: [
|
|
40321
41541
|
{ title: "Hypothermia Badge", href: "https://homecoming.wiki/wiki/Hypothermia_Badge" }
|
|
40322
41542
|
],
|
|
40323
|
-
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
41543
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/hypothermia.png"
|
|
40324
41544
|
};
|
|
40325
41545
|
|
|
40326
41546
|
const BestMan = {
|
|
@@ -40489,13 +41709,36 @@ const EVENT_BADGES = [
|
|
|
40489
41709
|
Unquenchable,
|
|
40490
41710
|
Unforgettable,
|
|
40491
41711
|
Reunited,
|
|
40492
|
-
TimeKeeper,
|
|
40493
41712
|
Cheers,
|
|
41713
|
+
Pursuer,
|
|
41714
|
+
TimeKeeper,
|
|
40494
41715
|
Gardener,
|
|
40495
41716
|
ZetaReticulan,
|
|
40496
41717
|
Mafioso,
|
|
40497
41718
|
SkullKiller,
|
|
40498
|
-
|
|
41719
|
+
ANemesisPlot,
|
|
41720
|
+
HeartOfLight,
|
|
41721
|
+
Partygoer,
|
|
41722
|
+
Handsome,
|
|
41723
|
+
Toothbreaker,
|
|
41724
|
+
MatchMaker,
|
|
41725
|
+
MissedConnection,
|
|
41726
|
+
WidowMaker,
|
|
41727
|
+
BestMan,
|
|
41728
|
+
WeddingCrasher,
|
|
41729
|
+
Officiator,
|
|
41730
|
+
DownInFront,
|
|
41731
|
+
ChaosSpiel,
|
|
41732
|
+
DoubleFeature,
|
|
41733
|
+
HellenicBeauty,
|
|
41734
|
+
MansBestFriend,
|
|
41735
|
+
NinjaMonkey,
|
|
41736
|
+
Invictus,
|
|
41737
|
+
ThePerfectHitter,
|
|
41738
|
+
ThePerfectHacker,
|
|
41739
|
+
ThePerfectGrifter,
|
|
41740
|
+
ThePerfectThief,
|
|
41741
|
+
Roleplayer,
|
|
40499
41742
|
HallowSpirit,
|
|
40500
41743
|
IronWarrior,
|
|
40501
41744
|
Hunter,
|
|
@@ -40518,39 +41761,6 @@ const EVENT_BADGES = [
|
|
|
40518
41761
|
SafetyInNumbers,
|
|
40519
41762
|
EvilsResident,
|
|
40520
41763
|
ApocalypseSurvivor,
|
|
40521
|
-
LongbowReservist,
|
|
40522
|
-
HolidaySpirit,
|
|
40523
|
-
ToyCollector,
|
|
40524
|
-
Miraculous,
|
|
40525
|
-
Joyful,
|
|
40526
|
-
Frosty,
|
|
40527
|
-
Crystallized,
|
|
40528
|
-
ColdFront,
|
|
40529
|
-
Gifted,
|
|
40530
|
-
Festive,
|
|
40531
|
-
LordOfWinter,
|
|
40532
|
-
Frostbitten,
|
|
40533
|
-
ColdWarrior,
|
|
40534
|
-
FrozenFury,
|
|
40535
|
-
ColdAsIce,
|
|
40536
|
-
GiftGetter,
|
|
40537
|
-
GiftWhichKeepsGiving,
|
|
40538
|
-
Snowbound,
|
|
40539
|
-
LicenseToChill,
|
|
40540
|
-
HomeForTheHolidays,
|
|
40541
|
-
Hypothermia,
|
|
40542
|
-
HeartOfLight,
|
|
40543
|
-
Handsome,
|
|
40544
|
-
Toothbreaker,
|
|
40545
|
-
Partygoer,
|
|
40546
|
-
MatchMaker,
|
|
40547
|
-
MissedConnection,
|
|
40548
|
-
WidowMaker,
|
|
40549
|
-
BestMan,
|
|
40550
|
-
WeddingCrasher,
|
|
40551
|
-
Officiator,
|
|
40552
|
-
DownInFront,
|
|
40553
|
-
ChaosSpiel,
|
|
40554
41764
|
ClothesHorse,
|
|
40555
41765
|
Fashionable,
|
|
40556
41766
|
Ostentatious,
|
|
@@ -40564,17 +41774,27 @@ const EVENT_BADGES = [
|
|
|
40564
41774
|
TrickedOut,
|
|
40565
41775
|
ItsAlive,
|
|
40566
41776
|
SinisterSummoner,
|
|
40567
|
-
|
|
40568
|
-
|
|
40569
|
-
|
|
40570
|
-
|
|
40571
|
-
|
|
40572
|
-
|
|
40573
|
-
|
|
40574
|
-
|
|
40575
|
-
|
|
40576
|
-
|
|
40577
|
-
|
|
41777
|
+
LongbowReservist,
|
|
41778
|
+
ColdFront,
|
|
41779
|
+
Gifted,
|
|
41780
|
+
Frostbitten,
|
|
41781
|
+
Festive,
|
|
41782
|
+
Snowbound,
|
|
41783
|
+
LicenseToChill,
|
|
41784
|
+
HomeForTheHolidays,
|
|
41785
|
+
Hypothermia,
|
|
41786
|
+
ColdWarrior,
|
|
41787
|
+
FrozenFury,
|
|
41788
|
+
HolidaySpirit,
|
|
41789
|
+
ToyCollector,
|
|
41790
|
+
Crystallized,
|
|
41791
|
+
Frosty,
|
|
41792
|
+
Joyful,
|
|
41793
|
+
Miraculous,
|
|
41794
|
+
LordOfWinter,
|
|
41795
|
+
ColdAsIce,
|
|
41796
|
+
GiftGetter,
|
|
41797
|
+
GiftWhichKeepsGiving
|
|
40578
41798
|
];
|
|
40579
41799
|
|
|
40580
41800
|
const Venturous = {
|
|
@@ -42715,11 +43935,13 @@ const CONTACTS = [
|
|
|
42715
43935
|
AaronThiery,
|
|
42716
43936
|
AaronWalker,
|
|
42717
43937
|
AdaWellington,
|
|
43938
|
+
AdelardZiegler,
|
|
42718
43939
|
AdmiralSutter,
|
|
42719
43940
|
AgentG,
|
|
42720
43941
|
AgentHassell,
|
|
42721
43942
|
AgentWatkins,
|
|
42722
43943
|
AlecParson,
|
|
43944
|
+
AlexanderTheGreat,
|
|
42723
43945
|
AndreaMitchell,
|
|
42724
43946
|
AndrewFiore,
|
|
42725
43947
|
AngeloVendetti,
|
|
@@ -42755,6 +43977,7 @@ const CONTACTS = [
|
|
|
42755
43977
|
Crimson,
|
|
42756
43978
|
Crow,
|
|
42757
43979
|
DJZero,
|
|
43980
|
+
DapDapThaDealMaka,
|
|
42758
43981
|
DarkWatcher,
|
|
42759
43982
|
DarrenWade,
|
|
42760
43983
|
DavidWincott,
|
|
@@ -42783,6 +44006,7 @@ const CONTACTS = [
|
|
|
42783
44006
|
EagleEye,
|
|
42784
44007
|
EfficiencyExpertPither,
|
|
42785
44008
|
ElizaThorpe,
|
|
44009
|
+
ErinWest,
|
|
42786
44010
|
ErnestoHess,
|
|
42787
44011
|
FaathimTheKind,
|
|
42788
44012
|
FatherTime,
|
|
@@ -42897,6 +44121,7 @@ const CONTACTS = [
|
|
|
42897
44121
|
Reese,
|
|
42898
44122
|
Ricochet,
|
|
42899
44123
|
RobertFlores,
|
|
44124
|
+
RobertKogan,
|
|
42900
44125
|
RoyCooling,
|
|
42901
44126
|
SaraMoore,
|
|
42902
44127
|
Scirocco,
|
|
@@ -42947,7 +44172,9 @@ const CONTACTS = [
|
|
|
42947
44172
|
Warrant,
|
|
42948
44173
|
WillyWheeler,
|
|
42949
44174
|
WilmaPeterson,
|
|
42950
|
-
Woodsman
|
|
44175
|
+
Woodsman,
|
|
44176
|
+
WyllieGalloway,
|
|
44177
|
+
ZoeLangston
|
|
42951
44178
|
];
|
|
42952
44179
|
|
|
42953
44180
|
const MISSIONS = [
|
|
@@ -42991,6 +44218,7 @@ const MISSIONS = [
|
|
|
42991
44218
|
CriminalsOfWar,
|
|
42992
44219
|
CrossingOver,
|
|
42993
44220
|
DeathFromBelow,
|
|
44221
|
+
DeathResurrected,
|
|
42994
44222
|
DefeatMarauderAndDestroyThePortal,
|
|
42995
44223
|
DefeatSelestar,
|
|
42996
44224
|
DestinyFollows,
|
|
@@ -43218,11 +44446,17 @@ const MISSIONS = [
|
|
|
43218
44446
|
WhatWasBuiltUponthePast,
|
|
43219
44447
|
WhatWasLost,
|
|
43220
44448
|
WhoNeedsEnemies,
|
|
43221
|
-
YouCantGoHome
|
|
44449
|
+
YouCantGoHome,
|
|
44450
|
+
MergersAndAcquisitions,
|
|
44451
|
+
CuttingBackOldGrowth,
|
|
44452
|
+
TheSunlightAndTheSpotlight,
|
|
44453
|
+
KnowThyEnemy,
|
|
44454
|
+
HuntingTheHunters,
|
|
44455
|
+
ZoeTaskForce
|
|
43222
44456
|
];
|
|
43223
44457
|
|
|
43224
|
-
const BUNDLE_VERSION = "2.0.0
|
|
43225
|
-
const BUNDLE_UPDATE_TIME = "
|
|
44458
|
+
const BUNDLE_VERSION = "2.0.0";
|
|
44459
|
+
const BUNDLE_UPDATE_TIME = "2026-01-05T13:42:38.218Z";
|
|
43226
44460
|
|
|
43227
44461
|
const HOMECOMING = {
|
|
43228
44462
|
header: {
|