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