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
|
@@ -8,7 +8,7 @@ export const Cataclysmic: BadgeData = {
|
|
|
8
8
|
releaseDate: '2012-11-30',
|
|
9
9
|
morality: 'all',
|
|
10
10
|
badgeText: `You have inflicted one hundred million points of damage upon your foes.`,
|
|
11
|
-
acquisition: 'Deal 100,000,000 damage
|
|
11
|
+
acquisition: 'Deal 100,000,000 damage.',
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Cataclysmic Badge', href: 'https://homecoming.wiki/wiki/Cataclysmic_Badge' },
|
|
14
14
|
],
|
|
@@ -8,7 +8,7 @@ export const Decimator: BadgeData = {
|
|
|
8
8
|
releaseDate: '2012-11-30',
|
|
9
9
|
morality: 'all',
|
|
10
10
|
badgeText: `You have inflicted ten million points of damage upon your foes.`,
|
|
11
|
-
acquisition: 'Deal 10,000,000 damage
|
|
11
|
+
acquisition: 'Deal 10,000,000 damage.',
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Decimator Badge', href: 'https://homecoming.wiki/wiki/Decimator_Badge' },
|
|
14
14
|
],
|
|
@@ -8,7 +8,7 @@ export const Eliminator: BadgeData = {
|
|
|
8
8
|
releaseDate: '2012-11-30',
|
|
9
9
|
morality: 'all',
|
|
10
10
|
badgeText: 'You have inflicted five hundred thousand points of damage upon your foes.',
|
|
11
|
-
acquisition: 'Deal 500,000 damage
|
|
11
|
+
acquisition: 'Deal 500,000 damage.',
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Eliminator Badge', href: 'https://homecoming.wiki/wiki/Eliminator_Badge' },
|
|
14
14
|
],
|
|
@@ -8,7 +8,7 @@ export const Eradicator: BadgeData = {
|
|
|
8
8
|
releaseDate: '2012-11-30',
|
|
9
9
|
morality: 'all',
|
|
10
10
|
badgeText: 'You have inflicted fifty million points of damage upon your foes.',
|
|
11
|
-
acquisition: 'Deal 50,000,000 damage
|
|
11
|
+
acquisition: 'Deal 50,000,000 damage.',
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Eradicator Badge', href: 'https://homecoming.wiki/wiki/Eradicator_Badge' },
|
|
14
14
|
],
|
|
@@ -8,7 +8,7 @@ export const Executioner: BadgeData = {
|
|
|
8
8
|
releaseDate: '2012-11-30',
|
|
9
9
|
morality: 'all',
|
|
10
10
|
badgeText: 'You have inflicted twenty five million points of damage upon your foes.',
|
|
11
|
-
acquisition: 'Deal 25,000,000 damage
|
|
11
|
+
acquisition: 'Deal 25,000,000 damage.',
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Executioner Badge', href: 'https://homecoming.wiki/wiki/Executioner_Badge' },
|
|
14
14
|
],
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
|
|
3
|
+
export const Jailbreaker: BadgeData = {
|
|
4
|
+
type: 'achievement',
|
|
5
|
+
key: 'jailbreaker',
|
|
6
|
+
setTitleId: [2578],
|
|
7
|
+
name: 'Jailbreaker',
|
|
8
|
+
releaseDate: '2025-11-25',
|
|
9
|
+
morality: 'all',
|
|
10
|
+
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.`,
|
|
11
|
+
acquisition: `Defeat all five unique CHB prisoner arch-villains encountered during Marigold 'Zoe' Langston's Task Force.`,
|
|
12
|
+
links: [
|
|
13
|
+
{ title: 'Jailbreaker Badge', href: 'https://homecoming.wiki/wiki/Jailbreaker_Badge' },
|
|
14
|
+
],
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png',
|
|
16
|
+
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
|
|
3
|
+
export const KnockbackKing: BadgeData = {
|
|
4
|
+
type: 'achievement',
|
|
5
|
+
key: 'knockback-king',
|
|
6
|
+
setTitleId: [2580],
|
|
7
|
+
name: [
|
|
8
|
+
{ sex: 'M', value: 'Knockback King' },
|
|
9
|
+
{ sex: 'F', value: 'Knockback Queen' },
|
|
10
|
+
],
|
|
11
|
+
releaseDate: '2025-11-25',
|
|
12
|
+
morality: 'all',
|
|
13
|
+
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.`,
|
|
14
|
+
acquisition: `Defeat 50 enemies via [CRUNCH] on the final mission of Marigold 'Zoe' Langston's Task Force.`,
|
|
15
|
+
links: [
|
|
16
|
+
{ title: 'Knockback King Badge', href: 'https://homecoming.wiki/wiki/Knockback_King_Badge' },
|
|
17
|
+
],
|
|
18
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png',
|
|
19
|
+
|
|
20
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { Jailbreaker } from './jailbreaker'
|
|
3
|
+
import { KnockbackKing } from './knockback-king'
|
|
4
|
+
import { SnowWarning } from './snow-warning'
|
|
5
|
+
import { SubterraneanStriker } from './subterranean-striker'
|
|
6
|
+
|
|
7
|
+
export const MasterOfZoesTaskForce: BadgeData = {
|
|
8
|
+
type: 'achievement',
|
|
9
|
+
key: 'master-of-zoes-task-force',
|
|
10
|
+
setTitleId: [2581],
|
|
11
|
+
name: `Master of Zoe's Task Force`,
|
|
12
|
+
releaseDate: '2025-11-25',
|
|
13
|
+
morality: 'all',
|
|
14
|
+
badgeText: `You have proven yourself Master of Marigold 'Zoe' Langston's Task Force.`,
|
|
15
|
+
acquisition: `Achieve the following special achievements during Marigold 'Zoe' Langston's Task Force: Snow Warning, Jailbreaker, Subterranean Striker, and Knockback King/Queen.`,
|
|
16
|
+
links: [
|
|
17
|
+
{ title: `Master of Zoe's Task Force Badge`, href: `https://homecoming.wiki/wiki/Master_of_Zoe's_Task_Force_Badge` },
|
|
18
|
+
],
|
|
19
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/master-of-zoes-task-force.png',
|
|
20
|
+
requirements: [
|
|
21
|
+
{ key: Jailbreaker.key, type: 'badge', badgeKey: Jailbreaker.key },
|
|
22
|
+
{ key: KnockbackKing.key, type: 'badge', badgeKey: KnockbackKing.key },
|
|
23
|
+
{ key: SnowWarning.key, type: 'badge', badgeKey: SnowWarning.key },
|
|
24
|
+
{ key: SubterraneanStriker.key, type: 'badge', badgeKey: SubterraneanStriker.key },
|
|
25
|
+
],
|
|
26
|
+
}
|
|
@@ -8,7 +8,7 @@ export const Relentless: BadgeData = {
|
|
|
8
8
|
releaseDate: '2012-11-30',
|
|
9
9
|
morality: 'all',
|
|
10
10
|
badgeText: 'You have inflicted one million points of damage upon your foes.',
|
|
11
|
-
acquisition: 'Deal 1,000,000 damage
|
|
11
|
+
acquisition: 'Deal 1,000,000 damage.',
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Relentless Badge', href: 'https://homecoming.wiki/wiki/Relentless_Badge' },
|
|
14
14
|
],
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
|
|
3
|
+
export const SnowWarning: BadgeData = {
|
|
4
|
+
type: 'achievement',
|
|
5
|
+
key: 'snow-warning',
|
|
6
|
+
setTitleId: [2577],
|
|
7
|
+
name: 'Snow Warning',
|
|
8
|
+
releaseDate: '2025-11-25',
|
|
9
|
+
morality: 'all',
|
|
10
|
+
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.`,
|
|
11
|
+
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.`,
|
|
12
|
+
links: [
|
|
13
|
+
{ title: 'SnowWarning Badge', href: 'https://homecoming.wiki/wiki/Snow_Warning_Badge' },
|
|
14
|
+
],
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png',
|
|
16
|
+
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
|
|
3
|
+
export const SubterraneanStriker: BadgeData = {
|
|
4
|
+
type: 'achievement',
|
|
5
|
+
key: 'subterranean-striker',
|
|
6
|
+
setTitleId: [2579],
|
|
7
|
+
name: 'Subterranean Striker',
|
|
8
|
+
releaseDate: '2025-11-25',
|
|
9
|
+
morality: 'all',
|
|
10
|
+
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.`,
|
|
11
|
+
acquisition: `Defeat all three arch-villain enemies while exploring underground in Marigold 'Zoe' Langston's Task Force on Advanced Mode.`,
|
|
12
|
+
links: [
|
|
13
|
+
{ title: 'Subterranean Striker Badge', href: 'https://homecoming.wiki/wiki/Subterranean_Striker_Badge' },
|
|
14
|
+
],
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/achievement/tf-zoe.png',
|
|
16
|
+
|
|
17
|
+
}
|
|
@@ -8,7 +8,7 @@ export const UntilTheEndOfTheWorld: BadgeData = {
|
|
|
8
8
|
releaseDate: '2012-11-30',
|
|
9
9
|
morality: 'all',
|
|
10
10
|
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.`,
|
|
11
|
-
acquisition: 'Collect 1500 badges
|
|
11
|
+
acquisition: 'Collect 1500 badges.',
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Until the End of the World Badge', href: 'https://homecoming.wiki/wiki/Until_the_End_of_the_World_Badge' },
|
|
14
14
|
],
|
|
@@ -142,6 +142,9 @@ import { ZookeeperOmega } from './zookeeper-omega'
|
|
|
142
142
|
import { PhantomGladiator } from './phantom-gladiator'
|
|
143
143
|
import { SlayerOfTheMinotaur } from './slayer-of-the-minotaur'
|
|
144
144
|
import { MalevolentIntoxication } from './malevolent-intoxication'
|
|
145
|
+
import { Peacekeeper } from './peacekeeper'
|
|
146
|
+
import { TwoBirdsOneStone } from './two-birds-one-stone'
|
|
147
|
+
import { MutatedMarauder } from './mutated-marauder'
|
|
145
148
|
|
|
146
149
|
export const DEFEAT_BADGES: BadgeData[] = [
|
|
147
150
|
SpiderSmasher,
|
|
@@ -158,6 +161,7 @@ export const DEFEAT_BADGES: BadgeData[] = [
|
|
|
158
161
|
MalevolentIntoxication,
|
|
159
162
|
Terminator,
|
|
160
163
|
Isolator,
|
|
164
|
+
MutatedMarauder,
|
|
161
165
|
Gearsmasher,
|
|
162
166
|
Coldblooded,
|
|
163
167
|
SoulBinder,
|
|
@@ -287,4 +291,6 @@ export const DEFEAT_BADGES: BadgeData[] = [
|
|
|
287
291
|
MasterAtArms,
|
|
288
292
|
WelcomeToEarth,
|
|
289
293
|
SlayerOfTheMinotaur,
|
|
294
|
+
Peacekeeper,
|
|
295
|
+
TwoBirdsOneStone,
|
|
290
296
|
]
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
|
|
3
|
+
export const MutatedMarauder: BadgeData = {
|
|
4
|
+
type: 'defeat',
|
|
5
|
+
key: 'mutated-marauder',
|
|
6
|
+
setTitleId: [2583],
|
|
7
|
+
name: 'Mutated Maurader',
|
|
8
|
+
releaseDate: '2025-11-25',
|
|
9
|
+
morality: 'all',
|
|
10
|
+
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.`,
|
|
11
|
+
acquisition: `Defeat 100 Hydra enemies.`,
|
|
12
|
+
links: [
|
|
13
|
+
{ title: 'Mutated Marauder Badge', href: 'https://homecoming.wiki/wiki/Mutated_Maurader_Badge' },
|
|
14
|
+
],
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/defeat/mutated-marauder.png',
|
|
16
|
+
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BadgeData, zoneLink } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const Peacekeeper: BadgeData = {
|
|
5
|
+
type: 'defeat',
|
|
6
|
+
key: 'peacekeeper',
|
|
7
|
+
setTitleId: [2568],
|
|
8
|
+
name: [
|
|
9
|
+
{ alignment: 'hero', value: 'Peacekeeper' },
|
|
10
|
+
{ alignment: 'villain', value: 'Peacemaker' },
|
|
11
|
+
],
|
|
12
|
+
releaseDate: '2025-06-17',
|
|
13
|
+
morality: 'all',
|
|
14
|
+
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.
|
|
15
|
+
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.`,
|
|
16
|
+
acquisition: `Defeat the P.E.A.C.E. Keeper in ${zoneLink(KallistiWharf)}.`,
|
|
17
|
+
links: [
|
|
18
|
+
{ title: 'Peacekeeper Badge', href: 'https://homecoming.wiki/wiki/Peacekeeper_Badge' },
|
|
19
|
+
],
|
|
20
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/defeat/peacekeeper.png',
|
|
21
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
|
|
3
|
+
export const TwoBirdsOneStone: BadgeData = {
|
|
4
|
+
type: 'defeat',
|
|
5
|
+
key: 'two-birds-one-stone',
|
|
6
|
+
setTitleId: [2508],
|
|
7
|
+
name: 'Two Birds, One Stone',
|
|
8
|
+
releaseDate: '2025-06-17',
|
|
9
|
+
morality: 'all',
|
|
10
|
+
badgeText: `When the Blackwing Industries private military company was contracted to protect Kallisti Wharf, you weren't sure what to expect.
|
|
11
|
+
Now, having faced their advanced armor, weapons, and training yourself, there's no doubt that the security of Kallisti Wharf is in capable hands.`,
|
|
12
|
+
acquisition: 'Defeat 250 Blackwing Industries enemies.',
|
|
13
|
+
links: [
|
|
14
|
+
{ title: 'Two Birds, One Stone Badge', href: 'https://homecoming.wiki/wiki/Two_Birds_One_Stone_Badge' },
|
|
15
|
+
],
|
|
16
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/defeat/two-birds-one-stone.png',
|
|
17
|
+
}
|
|
@@ -127,13 +127,36 @@ export const EVENT_BADGES: BadgeData[] = [
|
|
|
127
127
|
Unquenchable,
|
|
128
128
|
Unforgettable,
|
|
129
129
|
Reunited,
|
|
130
|
-
TimeKeeper,
|
|
131
130
|
Cheers,
|
|
131
|
+
Pursuer,
|
|
132
|
+
TimeKeeper,
|
|
132
133
|
Gardener,
|
|
133
134
|
ZetaReticulan,
|
|
134
135
|
Mafioso,
|
|
135
136
|
SkullKiller,
|
|
136
|
-
|
|
137
|
+
ANemesisPlot,
|
|
138
|
+
HeartOfLight,
|
|
139
|
+
Partygoer,
|
|
140
|
+
Handsome,
|
|
141
|
+
Toothbreaker,
|
|
142
|
+
MatchMaker,
|
|
143
|
+
MissedConnection,
|
|
144
|
+
WidowMaker,
|
|
145
|
+
BestMan,
|
|
146
|
+
WeddingCrasher,
|
|
147
|
+
Officiator,
|
|
148
|
+
DownInFront,
|
|
149
|
+
ChaosSpiel,
|
|
150
|
+
DoubleFeature,
|
|
151
|
+
HellenicBeauty,
|
|
152
|
+
MansBestFriend,
|
|
153
|
+
NinjaMonkey,
|
|
154
|
+
Invictus,
|
|
155
|
+
ThePerfectHitter,
|
|
156
|
+
ThePerfectHacker,
|
|
157
|
+
ThePerfectGrifter,
|
|
158
|
+
ThePerfectThief,
|
|
159
|
+
Roleplayer,
|
|
137
160
|
HallowSpirit,
|
|
138
161
|
IronWarrior,
|
|
139
162
|
Hunter,
|
|
@@ -156,39 +179,6 @@ export const EVENT_BADGES: BadgeData[] = [
|
|
|
156
179
|
SafetyInNumbers,
|
|
157
180
|
EvilsResident,
|
|
158
181
|
ApocalypseSurvivor,
|
|
159
|
-
LongbowReservist,
|
|
160
|
-
HolidaySpirit,
|
|
161
|
-
ToyCollector,
|
|
162
|
-
Miraculous,
|
|
163
|
-
Joyful,
|
|
164
|
-
Frosty,
|
|
165
|
-
Crystallized,
|
|
166
|
-
ColdFront,
|
|
167
|
-
Gifted,
|
|
168
|
-
Festive,
|
|
169
|
-
LordOfWinter,
|
|
170
|
-
Frostbitten,
|
|
171
|
-
ColdWarrior,
|
|
172
|
-
FrozenFury,
|
|
173
|
-
ColdAsIce,
|
|
174
|
-
GiftGetter,
|
|
175
|
-
GiftWhichKeepsGiving,
|
|
176
|
-
Snowbound,
|
|
177
|
-
LicenseToChill,
|
|
178
|
-
HomeForTheHolidays,
|
|
179
|
-
Hypothermia,
|
|
180
|
-
HeartOfLight,
|
|
181
|
-
Handsome,
|
|
182
|
-
Toothbreaker,
|
|
183
|
-
Partygoer,
|
|
184
|
-
MatchMaker,
|
|
185
|
-
MissedConnection,
|
|
186
|
-
WidowMaker,
|
|
187
|
-
BestMan,
|
|
188
|
-
WeddingCrasher,
|
|
189
|
-
Officiator,
|
|
190
|
-
DownInFront,
|
|
191
|
-
ChaosSpiel,
|
|
192
182
|
ClothesHorse,
|
|
193
183
|
Fashionable,
|
|
194
184
|
Ostentatious,
|
|
@@ -202,15 +192,25 @@ export const EVENT_BADGES: BadgeData[] = [
|
|
|
202
192
|
TrickedOut,
|
|
203
193
|
ItsAlive,
|
|
204
194
|
SinisterSummoner,
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
195
|
+
LongbowReservist,
|
|
196
|
+
ColdFront,
|
|
197
|
+
Gifted,
|
|
198
|
+
Frostbitten,
|
|
199
|
+
Festive,
|
|
200
|
+
Snowbound,
|
|
201
|
+
LicenseToChill,
|
|
202
|
+
HomeForTheHolidays,
|
|
203
|
+
Hypothermia,
|
|
204
|
+
ColdWarrior,
|
|
205
|
+
FrozenFury,
|
|
206
|
+
HolidaySpirit,
|
|
207
|
+
ToyCollector,
|
|
208
|
+
Crystallized,
|
|
209
|
+
Frosty,
|
|
210
|
+
Joyful,
|
|
211
|
+
Miraculous,
|
|
212
|
+
LordOfWinter,
|
|
213
|
+
ColdAsIce,
|
|
214
|
+
GiftGetter,
|
|
215
|
+
GiftWhichKeepsGiving,
|
|
216
216
|
]
|
|
@@ -12,5 +12,5 @@ export const HomeForTheHolidays: BadgeData = {
|
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Home for the Holidays Badge', href: 'https://homecoming.wiki/wiki/Home_for_the_Holidays_Badge' },
|
|
14
14
|
],
|
|
15
|
-
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/home-for-the-holidays.png',
|
|
16
16
|
}
|
|
@@ -12,5 +12,5 @@ export const Hypothermia: BadgeData = {
|
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Hypothermia Badge', href: 'https://homecoming.wiki/wiki/Hypothermia_Badge' },
|
|
14
14
|
],
|
|
15
|
-
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/hypothermia.png',
|
|
16
16
|
}
|
|
@@ -12,5 +12,5 @@ export const LicenseToChill: BadgeData = {
|
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'License to Chill Badge', href: 'https://homecoming.wiki/wiki/License_to_Chill_Badge' },
|
|
14
14
|
],
|
|
15
|
-
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/license-to-chill.png',
|
|
16
16
|
}
|
|
@@ -12,5 +12,5 @@ export const Snowbound: BadgeData = {
|
|
|
12
12
|
links: [
|
|
13
13
|
{ title: 'Snowbound Badge', href: 'https://homecoming.wiki/wiki/Snowbound_Badge' },
|
|
14
14
|
],
|
|
15
|
-
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/event/snowbound.png',
|
|
16
16
|
}
|
|
@@ -468,6 +468,14 @@ import { VoiceOfTheOracle } from './voice-of-the-oracle'
|
|
|
468
468
|
import { PartyAnimal } from './party-animal'
|
|
469
469
|
import { LabRat } from './lab-rat'
|
|
470
470
|
import { HiddenInTheFog } from './hidden-in-the-fog'
|
|
471
|
+
import { FueledByGreed } from './fueled-by-greed'
|
|
472
|
+
import { InTheirPrime } from './in-their-prime'
|
|
473
|
+
import { MarkedOut } from './marked-out'
|
|
474
|
+
import { ProtestTooMuch } from './protest-too-much'
|
|
475
|
+
import { QuayToTheCity } from './quay-to-the-city'
|
|
476
|
+
import { RavingMad } from './raving-mad'
|
|
477
|
+
import { TouristTrapped } from './tourist-trapped'
|
|
478
|
+
import { LucidDreamer } from './lucid-dreamer'
|
|
471
479
|
|
|
472
480
|
export const EXPLORATION_BADGES: BadgeData[] = [
|
|
473
481
|
// Bloody Bay
|
|
@@ -600,7 +608,7 @@ export const EXPLORATION_BADGES: BadgeData[] = [
|
|
|
600
608
|
FlyingShark, Fugitive, ForwardThinker, SecretPath, SixthPassenger, Unsubtle,
|
|
601
609
|
|
|
602
610
|
// Kallisti Wharf
|
|
603
|
-
OnTheShouldersOfGiants,
|
|
611
|
+
OnTheShouldersOfGiants, FueledByGreed, InTheirPrime, MarkedOut, ProtestTooMuch, QuayToTheCity, RavingMad, TouristTrapped,
|
|
604
612
|
|
|
605
613
|
// Peregrine Island
|
|
606
614
|
PortalParter, UseMightForRight, CauseForConcern, GeneticallyAltered, RiktiGoneWild, ShadesOfArachnos, AllSeeing, DarkOmen,
|
|
@@ -780,5 +788,5 @@ export const EXPLORATION_BADGES: BadgeData[] = [
|
|
|
780
788
|
PartyAnimal,
|
|
781
789
|
|
|
782
790
|
// Labyrinth of Fog
|
|
783
|
-
HiddenInTheFog, LabRat,
|
|
791
|
+
HiddenInTheFog, LabRat, LucidDreamer,
|
|
784
792
|
]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const FueledByGreed: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'fueled-by-greed',
|
|
7
|
+
setTitleId: [2452],
|
|
8
|
+
name: 'Fueled By Greed',
|
|
9
|
+
releaseDate: '2025-06-17',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
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.
|
|
12
|
+
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.
|
|
13
|
+
When the Rikti attacked, plans for the station were sidelined and eventually lost entirely.`,
|
|
14
|
+
links: [
|
|
15
|
+
{ title: 'Fueled By Greed Badge', href: 'https://homecoming.wiki/wiki/Fueled_By_Greed_Badge' },
|
|
16
|
+
],
|
|
17
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
18
|
+
requirements: [
|
|
19
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [1562.5, 42, 5176.1], icon: 'badge', iconText: '4' } },
|
|
20
|
+
],
|
|
21
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const InTheirPrime: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'in-their-prime',
|
|
7
|
+
setTitleId: [2450],
|
|
8
|
+
name: 'In Their Prime',
|
|
9
|
+
releaseDate: '2025-06-17',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
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.
|
|
12
|
+
Brightshield herself did not use the portal, even as bombs fell and buildings nearby collapsed.
|
|
13
|
+
Her body was recovered days later, and her identity was revealed to the public a few weeks afterward.
|
|
14
|
+
The new hospital built here is dedicated to her memory`,
|
|
15
|
+
links: [
|
|
16
|
+
{ title: 'In Their Prime Badge', href: 'https://homecoming.wiki/wiki/In_Their_Prime_Badge' },
|
|
17
|
+
],
|
|
18
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
19
|
+
requirements: [
|
|
20
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [6465.4, 50.2, 1732.1], icon: 'badge', iconText: '2' } },
|
|
21
|
+
],
|
|
22
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { TheLabyrinthOfFog } from '../../zone/the-labyrinth-of-fog'
|
|
3
|
+
|
|
4
|
+
export const LucidDreamer: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'lucid-dreamer',
|
|
7
|
+
setTitleId: [2573],
|
|
8
|
+
name: 'Lucid Dreamer',
|
|
9
|
+
releaseDate: '2025-11-25',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
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.`,
|
|
12
|
+
notes: ` `,
|
|
13
|
+
links: [
|
|
14
|
+
{ title: 'Lucid Dreamer Badge', href: 'https://homecoming.wiki/wiki/Lucid_Dreamer_Badge' },
|
|
15
|
+
],
|
|
16
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/labyrinth.png',
|
|
17
|
+
requirements: [
|
|
18
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: TheLabyrinthOfFog.key } },
|
|
19
|
+
],
|
|
20
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const MarkedOut: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'marked-out',
|
|
7
|
+
setTitleId: [2454],
|
|
8
|
+
name: 'Marked Out',
|
|
9
|
+
releaseDate: '2025-06-17',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
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.`,
|
|
12
|
+
links: [
|
|
13
|
+
{ title: 'Marked Out Badge', href: 'https://homecoming.wiki/wiki/Marked_Out_Badge' },
|
|
14
|
+
],
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
16
|
+
requirements: [
|
|
17
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [1891.5, 41.8, 971.7], icon: 'badge', iconText: '6' } },
|
|
18
|
+
],
|
|
19
|
+
}
|
|
@@ -16,6 +16,6 @@ Ms. Liberty and Longbow have refused to confirm or deny the persistent rumor tha
|
|
|
16
16
|
],
|
|
17
17
|
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
18
18
|
requirements: [
|
|
19
|
-
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [4286, 148, 2720] } },
|
|
19
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [4286, 148, 2720], icon: 'badge', iconText: '1' } },
|
|
20
20
|
],
|
|
21
21
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const ProtestTooMuch: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'protest-too-much',
|
|
7
|
+
setTitleId: [2451],
|
|
8
|
+
name: 'Protest Too Much',
|
|
9
|
+
releaseDate: '2025-06-17',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
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.
|
|
12
|
+
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.`,
|
|
13
|
+
links: [
|
|
14
|
+
{ title: 'Protest Too Much Badge', href: 'https://homecoming.wiki/wiki/Protest_Too_Much_Badge' },
|
|
15
|
+
],
|
|
16
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
17
|
+
requirements: [
|
|
18
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [5875.5, 47.9, 4979.9], icon: 'badge', iconText: '3' } },
|
|
19
|
+
],
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const QuayToTheCity: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'quay-to-the-city',
|
|
7
|
+
setTitleId: [2455],
|
|
8
|
+
name: 'Quay to the City',
|
|
9
|
+
releaseDate: '2025-06-17',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
badgeText: `Kallisti Marina is all that is left of a larger harbor that originally gave Kallisti Wharf half of its name.
|
|
12
|
+
The first half, Kallisti, is a greek word that means 'The prettiest one'.
|
|
13
|
+
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.
|
|
14
|
+
Before Independence Port, this Marina was the first port of call for imports and immigrants alike.`,
|
|
15
|
+
links: [
|
|
16
|
+
{ title: 'Quay to the City Badge', href: 'https://homecoming.wiki/wiki/Quay_To_The_City_Badge' },
|
|
17
|
+
],
|
|
18
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
19
|
+
requirements: [
|
|
20
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [2143.5, 12.4, -547.1], icon: 'badge', iconText: '7' } },
|
|
21
|
+
],
|
|
22
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const RavingMad: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'raving-mad',
|
|
7
|
+
setTitleId: [2453],
|
|
8
|
+
name: 'Raving Mad',
|
|
9
|
+
releaseDate: '2025-06-17',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
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.`,
|
|
12
|
+
links: [
|
|
13
|
+
{ title: 'Raving Mad Badge', href: 'https://homecoming.wiki/wiki/Raving_Mad_Badge' },
|
|
14
|
+
],
|
|
15
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
16
|
+
requirements: [
|
|
17
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [447.7, 115.4, 3204], icon: 'badge', iconText: '5' } },
|
|
18
|
+
],
|
|
19
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BadgeData } from 'coh-content-db'
|
|
2
|
+
import { KallistiWharf } from '../../zone/kallisti-wharf'
|
|
3
|
+
|
|
4
|
+
export const TouristTrapped: BadgeData = {
|
|
5
|
+
type: 'exploration',
|
|
6
|
+
key: 'tourist-trapped',
|
|
7
|
+
setTitleId: [2456],
|
|
8
|
+
name: 'Tourist Trapped',
|
|
9
|
+
releaseDate: '2025-06-17',
|
|
10
|
+
morality: 'all',
|
|
11
|
+
badgeText: `Many who visit the Wharf take a paddle boat out to Turtle Rock Island as a "must see" location.
|
|
12
|
+
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.`,
|
|
13
|
+
links: [
|
|
14
|
+
{ title: 'Tourist Trapped Badge', href: 'https://homecoming.wiki/wiki/Tourist_Trapped_Badge' },
|
|
15
|
+
],
|
|
16
|
+
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
17
|
+
requirements: [
|
|
18
|
+
{ key: 'loc-0', type: 'location', location: { zoneKey: KallistiWharf.key, coords: [5339.4, 72.1, 738.7], icon: 'badge', iconText: '8' } },
|
|
19
|
+
],
|
|
20
|
+
}
|
|
@@ -23,7 +23,7 @@ export const TriedAndTrue: BadgeData = {
|
|
|
23
23
|
icon: 'https://n15g.github.io/coh-content-db-homecoming/images/badges/exploration/hero.png',
|
|
24
24
|
requirements: [
|
|
25
25
|
{ key: 'loc-0', type: 'location', location: { zoneKey: AtlasPark.key, coords: [66, -634.5, -681.9] } },
|
|
26
|
-
{ key: 'loc-1', type: 'location',
|
|
27
|
-
{ key: 'loc-2', type: 'location',
|
|
26
|
+
{ key: 'loc-1', type: 'location', location: { coords: [1520, -813.2, -2688.1] }, notes: `During the ${missionLink(OmegaTeamMemorial)} mission.` },
|
|
27
|
+
{ key: 'loc-2', type: 'location', location: { coords: [1520, -813.2, -2688.1] }, notes: `During the first mission in the ${missionLink(DrKahnTaskForce)}.` },
|
|
28
28
|
],
|
|
29
29
|
}
|