coh-content-db-homecoming 2.0.0-rc.4 → 2.0.0-rc.5

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.
@@ -1,5 +1,5 @@
1
- import { ContentBundle } from 'coh-content-db';
1
+ import { BundleData } from 'coh-content-db';
2
2
 
3
- declare const HOMECOMING: ContentBundle;
3
+ declare const HOMECOMING: BundleData;
4
4
 
5
5
  export { HOMECOMING };
@@ -18530,7 +18530,7 @@ const PayPhone = {
18530
18530
  name: "Pay Phone",
18531
18531
  title: "Outdated Tech",
18532
18532
  morality: "primal",
18533
- location: { zoneKey: RiktiWarZone.key, coords: [3229.5, -0, -513] },
18533
+ location: { zoneKey: RiktiWarZone.key, coords: [3229.5, 0, -513] },
18534
18534
  levelRange: [40, 50],
18535
18535
  links: [{ title: "Pay Phone", href: "https://homecoming.wiki/wiki/Pay_Phone" }]
18536
18536
  };
@@ -41025,14 +41025,6 @@ const BADGES = [
41025
41025
  ...AE_BADGES
41026
41026
  ];
41027
41027
 
41028
- const CHANGELOG = [
41029
- {
41030
- version: "2.0.0",
41031
- date: /* @__PURE__ */ new Date("2025-03-12"),
41032
- description: "* Updated to [coh-content-db:2.0.0](https://github.com/n15g/coh-content-db).\n* Added Mission and Contact data.\n* Bundle data now available as JSON export.\n* Change from GNU to The Unlicense.\n* Moved from webpack to rollup for packaging.\n* Add eslint for linting.\n* Add jest for unit tests.\n* Added GitHub Actions for CI.\n"
41033
- }
41034
- ];
41035
-
41036
41028
  const CONTACTS = [
41037
41029
  AaronThiery,
41038
41030
  AaronWalker,
@@ -41543,14 +41535,24 @@ const MISSIONS = [
41543
41535
  YouCantGoHome
41544
41536
  ];
41545
41537
 
41538
+ var version = "2.0.0-rc.5";
41539
+ var pkg = {
41540
+ version: version};
41541
+
41542
+ const BUNDLE_VERSION = pkg.version;
41543
+
41546
41544
  const HOMECOMING = {
41547
- name: "Homecoming",
41548
- description: "City of Heroes: Homecoming",
41549
- links: [
41550
- { title: "Forums", href: "https://forums.homecomingservers.com/" }
41551
- ],
41545
+ header: {
41546
+ name: "Homecoming",
41547
+ description: "Content data for the CoH: Homecoming server.",
41548
+ repositoryUrl: "https://github.com/n15g/coh-content-db-homecoming",
41549
+ changelogUrl: "https://github.com/n15g/coh-content-db-homecoming/blob/master/CHANGELOG.md",
41550
+ links: [
41551
+ { title: "Homecoming Forums", href: "https://forums.homecomingservers.com/" }
41552
+ ],
41553
+ version: BUNDLE_VERSION
41554
+ },
41552
41555
  servers: ["Everlasting", "Excelsior", "Indomitable", "Reunion", "Torchbearer", "Victory"],
41553
- repository: "https://github.com/n15g/coh-content-db-homecoming",
41554
41556
  archetypes: [
41555
41557
  { key: "arachnos-soldier", name: "Arachnos Soldier" },
41556
41558
  { key: "arachnos-widow", name: "Arachnos Widow" },
@@ -41571,8 +41573,7 @@ const HOMECOMING = {
41571
41573
  zones: [...ZONES],
41572
41574
  contacts: [...CONTACTS],
41573
41575
  missions: [...MISSIONS],
41574
- badges: [...BADGES],
41575
- changelog: CHANGELOG
41576
+ badges: [...BADGES]
41576
41577
  };
41577
41578
 
41578
41579
  exports.HOMECOMING = HOMECOMING;