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.cjs +424 -395
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.global.js +424 -395
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +424 -395
- package/dist/index.js.map +1 -1
- package/neutrals/natu.png +0 -0
- package/neutrals/salac.png +0 -0
- package/neutrals/sitrus.png +0 -0
- package/package.json +3 -2
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. */
|