coh-content-db-homecoming 2.0.0-rc.6 → 2.0.0-rc.7
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/CHANGELOG.md +2 -1
- package/README.md +12 -2
- package/dist/bundle.head.json +1 -1
- package/dist/bundle.json +1 -1
- package/dist/coh-content-db-homecoming.js +46 -1
- package/dist/coh-content-db-homecoming.js.map +1 -1
- package/dist/coh-content-db-homecoming.mjs +46 -1
- package/dist/coh-content-db-homecoming.mjs.map +1 -1
- package/package.json +2 -2
- package/src/main/resources/images/badges/event/cheers.png +0 -0
- package/src/main/resources/images/badges/event/mafioso.png +0 -0
- package/src/main/resources/images/badges/event/skull-killer.png +0 -0
- package/src/main/ts/badge/event/_event-badges.ts +6 -0
- package/src/main/ts/badge/event/cheers.ts +15 -0
- package/src/main/ts/badge/event/mafioso.ts +15 -0
- package/src/main/ts/badge/event/skull-killer.ts +15 -0
- package/src/test/ts/badge-fields.test.ts +1 -2
- package/src/test/ts/badge-markdown-fields.test.ts +1 -2
- package/src/test/ts/badge-requirements.test.ts +1 -2
- package/src/test/ts/homecoming.test.ts +2 -4
- package/src/test/ts/link-tests.test.ts +1 -2
|
@@ -38892,6 +38892,48 @@ You don't have to defeat them all in the same mission instance. If you do this o
|
|
|
38892
38892
|
]
|
|
38893
38893
|
};
|
|
38894
38894
|
|
|
38895
|
+
const Cheers = {
|
|
38896
|
+
type: "event",
|
|
38897
|
+
key: "cheers",
|
|
38898
|
+
setTitleId: [2552],
|
|
38899
|
+
name: "Cheers!",
|
|
38900
|
+
morality: "all",
|
|
38901
|
+
badgeText: `You have helped celebrate the 21st anniversary of City of Heroes.`,
|
|
38902
|
+
acquisition: `Awarded upon login during May 2025, and thereafter available for purchase from Luna in Ouroboros during the anniversary event in May.`,
|
|
38903
|
+
links: [
|
|
38904
|
+
{ title: "Cheers!", href: "https://homecoming.wiki/wiki/Cheers_Badge" }
|
|
38905
|
+
],
|
|
38906
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/cheers.png"
|
|
38907
|
+
};
|
|
38908
|
+
|
|
38909
|
+
const Mafioso = {
|
|
38910
|
+
type: "event",
|
|
38911
|
+
key: "mafioso",
|
|
38912
|
+
setTitleId: [2553],
|
|
38913
|
+
name: "Mafioso",
|
|
38914
|
+
morality: "all",
|
|
38915
|
+
badgeText: `You've relived the past by defeating 25 of the old school Family found during the City of Heroes Anniversary Event.`,
|
|
38916
|
+
acquisition: `Defeat 25 old school Family spawned from time capsules during the anniversary event.`,
|
|
38917
|
+
links: [
|
|
38918
|
+
{ title: "Mafioso", href: "https://homecoming.wiki/wiki/Mafioso_Badge" }
|
|
38919
|
+
],
|
|
38920
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/mafioso.png"
|
|
38921
|
+
};
|
|
38922
|
+
|
|
38923
|
+
const SkullKiller = {
|
|
38924
|
+
type: "event",
|
|
38925
|
+
key: "skull-killer",
|
|
38926
|
+
setTitleId: [2553],
|
|
38927
|
+
name: "Skull Killer",
|
|
38928
|
+
morality: "all",
|
|
38929
|
+
badgeText: `You've relived the past by defeating 25 of the old school Skulls found during the City of Heroes Anniversary Event.`,
|
|
38930
|
+
acquisition: `Defeat 25 old school Skulls spawned from time capsules during the anniversary event.`,
|
|
38931
|
+
links: [
|
|
38932
|
+
{ title: "Skull Killer", href: "https://homecoming.wiki/wiki/Skull_Killer_Badge" }
|
|
38933
|
+
],
|
|
38934
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/skull-killer.png"
|
|
38935
|
+
};
|
|
38936
|
+
|
|
38895
38937
|
const EVENT_BADGES = [
|
|
38896
38938
|
Celebrant,
|
|
38897
38939
|
Reveler,
|
|
@@ -38914,8 +38956,11 @@ const EVENT_BADGES = [
|
|
|
38914
38956
|
Unforgettable,
|
|
38915
38957
|
Reunited,
|
|
38916
38958
|
TimeKeeper,
|
|
38959
|
+
Cheers,
|
|
38917
38960
|
Gardener,
|
|
38918
38961
|
ZetaReticulan,
|
|
38962
|
+
Mafioso,
|
|
38963
|
+
SkullKiller,
|
|
38919
38964
|
Pursuer,
|
|
38920
38965
|
HallowSpirit,
|
|
38921
38966
|
IronWarrior,
|
|
@@ -41533,7 +41578,7 @@ const MISSIONS = [
|
|
|
41533
41578
|
YouCantGoHome
|
|
41534
41579
|
];
|
|
41535
41580
|
|
|
41536
|
-
var version = "2.0.0-rc.
|
|
41581
|
+
var version = "2.0.0-rc.7";
|
|
41537
41582
|
var pkg = {
|
|
41538
41583
|
version: version};
|
|
41539
41584
|
|