unite-lib 1.3.2 → 1.4.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/dist/index.d.cts CHANGED
@@ -106,6 +106,11 @@ interface MapSpawn {
106
106
  spawnTime: string;
107
107
  respawnTime: number;
108
108
  permanentDelete: boolean;
109
+ /**
110
+ * Optional game-clock time when this spawn disappears (e.g. when the center boss spawns).
111
+ * Format "MM:SS" (e.g. "02:00"). Use to hide Natu/Altaria at center when Groudon/Kyogre/Rayquaza spawn.
112
+ */
113
+ despawnTime?: string;
109
114
  /** Optional HTML description (default locale). Use getSpawnInfo for i18n). */
110
115
  info?: string;
111
116
  /** Optional i18n key for info (spawn.info.<key>). When set, getSpawnInfo uses it. */
package/dist/index.d.ts CHANGED
@@ -106,6 +106,11 @@ interface MapSpawn {
106
106
  spawnTime: string;
107
107
  respawnTime: number;
108
108
  permanentDelete: boolean;
109
+ /**
110
+ * Optional game-clock time when this spawn disappears (e.g. when the center boss spawns).
111
+ * Format "MM:SS" (e.g. "02:00"). Use to hide Natu/Altaria at center when Groudon/Kyogre/Rayquaza spawn.
112
+ */
113
+ despawnTime?: string;
109
114
  /** Optional HTML description (default locale). Use getSpawnInfo for i18n). */
110
115
  info?: string;
111
116
  /** Optional i18n key for info (spawn.info.<key>). When set, getSpawnInfo uses it. */