coh-content-db-homecoming 2.0.0 → 2.0.2
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 +13 -1
- package/dist/bundle.head.json +1 -1
- package/dist/bundle.json +1 -1
- package/dist/coh-content-db-homecoming.js +52 -4
- package/dist/coh-content-db-homecoming.js.map +1 -1
- package/dist/coh-content-db-homecoming.mjs +52 -4
- package/dist/coh-content-db-homecoming.mjs.map +1 -1
- package/package.json +1 -1
- package/src/main/resources/images/badges/event/icebreaker.png +0 -0
- package/src/main/resources/images/badges/event/very-naughty.png +0 -0
- package/src/main/resources/images/badges/event/winter-weathered.png +0 -0
- package/src/main/ts/badge/accolade/mazebreaker.ts +1 -1
- package/src/main/ts/badge/event/_event-badges.ts +222 -216
- package/src/main/ts/badge/event/icebreaker.ts +17 -0
- package/src/main/ts/badge/event/very-naughty.ts +17 -0
- package/src/main/ts/badge/event/winter-weathered.ts +16 -0
|
@@ -36896,7 +36896,7 @@ const Mazebreaker = {
|
|
|
36896
36896
|
links: [
|
|
36897
36897
|
{ title: "Mazebreaker Badge", href: "https://homecoming.wiki/wiki/Mazebreaker_Badge" }
|
|
36898
36898
|
],
|
|
36899
|
-
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accolade/mazebreaker
|
|
36899
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/accolade/mazebreaker.png",
|
|
36900
36900
|
requirements: [
|
|
36901
36901
|
{ key: TestedByCombat.key, type: "badge", badgeKey: TestedByCombat.key },
|
|
36902
36902
|
{ key: ChromaticCombatant.key, type: "badge", badgeKey: ChromaticCombatant.key }
|
|
@@ -41686,6 +41686,51 @@ const SkullKiller = {
|
|
|
41686
41686
|
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/skull-killer.png"
|
|
41687
41687
|
};
|
|
41688
41688
|
|
|
41689
|
+
const WinterWeathered = {
|
|
41690
|
+
type: "event",
|
|
41691
|
+
key: "winter-weathered",
|
|
41692
|
+
setTitleId: [2571],
|
|
41693
|
+
name: "Winter Weathered",
|
|
41694
|
+
releaseDate: "2025-12-01",
|
|
41695
|
+
morality: "all",
|
|
41696
|
+
badgeText: `You have braved the frosty villains and icy perils of the holiday season! Your dedication remains unmelted despite the winter chill.`,
|
|
41697
|
+
acquisition: `Log in during the 2025 Winter Event, or purchase from the Candy Keeper for 25 Candy Canes and 30,000 inf.`,
|
|
41698
|
+
links: [
|
|
41699
|
+
{ title: "Winter Weathered Badge", href: "https://homecoming.wiki/wiki/Winter_Weathered_Badge" }
|
|
41700
|
+
],
|
|
41701
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/winter-weathered.png"
|
|
41702
|
+
};
|
|
41703
|
+
|
|
41704
|
+
const Icebreaker = {
|
|
41705
|
+
type: "event",
|
|
41706
|
+
key: "icebreaker",
|
|
41707
|
+
setTitleId: [2570],
|
|
41708
|
+
name: "Icebreaker",
|
|
41709
|
+
releaseDate: "2025-12-01",
|
|
41710
|
+
morality: "all",
|
|
41711
|
+
badgeText: `Lord Winter's plan to consolidate his power was shattered, denying him the full might of the season.`,
|
|
41712
|
+
acquisition: `Defeat Lord Winter without letting his Winter Essence ever reach 100%.`,
|
|
41713
|
+
links: [
|
|
41714
|
+
{ title: "Icebreaker Badge", href: "https://homecoming.wiki/wiki/Icebreaker_Badge" }
|
|
41715
|
+
],
|
|
41716
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/icebreaker.png"
|
|
41717
|
+
};
|
|
41718
|
+
|
|
41719
|
+
const VeryNaughty = {
|
|
41720
|
+
type: "event",
|
|
41721
|
+
key: "very-naughty",
|
|
41722
|
+
setTitleId: [2569],
|
|
41723
|
+
name: "Very Naughty",
|
|
41724
|
+
releaseDate: "2025-12-01",
|
|
41725
|
+
morality: "all",
|
|
41726
|
+
badgeText: `You opened one of Lord Winter's suspicious gifts.`,
|
|
41727
|
+
acquisition: `Earned from opening a Suspicious Gift during the Winter Event and summoning a Winter Lord.`,
|
|
41728
|
+
links: [
|
|
41729
|
+
{ title: "Very Naughty Badge", href: "https://homecoming.wiki/wiki/Very_Naughty_Badge" }
|
|
41730
|
+
],
|
|
41731
|
+
icon: "https://n15g.github.io/coh-content-db-homecoming/images/badges/event/very-naughty.png"
|
|
41732
|
+
};
|
|
41733
|
+
|
|
41689
41734
|
const EVENT_BADGES = [
|
|
41690
41735
|
Celebrant,
|
|
41691
41736
|
Reveler,
|
|
@@ -41781,6 +41826,7 @@ const EVENT_BADGES = [
|
|
|
41781
41826
|
LicenseToChill,
|
|
41782
41827
|
HomeForTheHolidays,
|
|
41783
41828
|
Hypothermia,
|
|
41829
|
+
WinterWeathered,
|
|
41784
41830
|
ColdWarrior,
|
|
41785
41831
|
FrozenFury,
|
|
41786
41832
|
HolidaySpirit,
|
|
@@ -41790,9 +41836,11 @@ const EVENT_BADGES = [
|
|
|
41790
41836
|
Joyful,
|
|
41791
41837
|
Miraculous,
|
|
41792
41838
|
LordOfWinter,
|
|
41839
|
+
Icebreaker,
|
|
41793
41840
|
ColdAsIce,
|
|
41794
41841
|
GiftGetter,
|
|
41795
|
-
GiftWhichKeepsGiving
|
|
41842
|
+
GiftWhichKeepsGiving,
|
|
41843
|
+
VeryNaughty
|
|
41796
41844
|
];
|
|
41797
41845
|
|
|
41798
41846
|
const Venturous = {
|
|
@@ -44453,8 +44501,8 @@ const MISSIONS = [
|
|
|
44453
44501
|
ZoeTaskForce
|
|
44454
44502
|
];
|
|
44455
44503
|
|
|
44456
|
-
const BUNDLE_VERSION = "2.0.
|
|
44457
|
-
const BUNDLE_UPDATE_TIME = "2026-01-
|
|
44504
|
+
const BUNDLE_VERSION = "2.0.2";
|
|
44505
|
+
const BUNDLE_UPDATE_TIME = "2026-01-05T21:06:02.884Z";
|
|
44458
44506
|
|
|
44459
44507
|
const HOMECOMING = {
|
|
44460
44508
|
header: {
|