pokenode-ts 1.19.1 → 1.20.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/lib/index.d.ts +771 -804
- package/lib/index.js +2 -2
- package/lib/index.mjs +2 -2
- package/package.json +14 -12
package/lib/index.d.ts
CHANGED
|
@@ -2149,6 +2149,775 @@ interface Move {
|
|
|
2149
2149
|
learned_by_pokemon: NamedAPIResource[];
|
|
2150
2150
|
}
|
|
2151
2151
|
|
|
2152
|
+
declare enum BaseURL {
|
|
2153
|
+
REST = "https://pokeapi.co/api/v2"
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
/**
|
|
2157
|
+
* Endpoints of the PokéAPI
|
|
2158
|
+
*/
|
|
2159
|
+
declare const ENDPOINTS: {
|
|
2160
|
+
readonly BERRY: "/berry";
|
|
2161
|
+
readonly BERRY_FIRMNESS: "/berry-firmness";
|
|
2162
|
+
readonly BERRY_FLAVOR: "/berry-flavor";
|
|
2163
|
+
readonly CONTEST_TYPE: "/contest-type";
|
|
2164
|
+
readonly CONTEST_EFFECT: "/contest-effect";
|
|
2165
|
+
readonly SUPER_CONTEST_EFFECT: "/super-contest-effect";
|
|
2166
|
+
readonly ENCOUNTER_METHOD: "/encounter-method";
|
|
2167
|
+
readonly ENCOUNTER_CONDITION: "/encounter-condition";
|
|
2168
|
+
readonly ENCOUNTER_CONDITION_VALUE: "/encounter-condition-value";
|
|
2169
|
+
readonly EVOLUTION_CHAIN: "/evolution-chain";
|
|
2170
|
+
readonly EVOLUTION_TRIGGER: "/evolution-trigger";
|
|
2171
|
+
readonly GENERATION: "/generation";
|
|
2172
|
+
readonly POKEDEX: "/pokedex";
|
|
2173
|
+
readonly VERSION: "/version";
|
|
2174
|
+
readonly VERSION_GROUP: "/version-group";
|
|
2175
|
+
readonly ITEM: "/item";
|
|
2176
|
+
readonly ITEM_ATTRIBUTE: "/item-attribute";
|
|
2177
|
+
readonly ITEM_CATEGORY: "/item-category";
|
|
2178
|
+
readonly ITEM_FLING_EFFECT: "/item-fling-effect";
|
|
2179
|
+
readonly ITEM_POCKET: "/item-pocket";
|
|
2180
|
+
readonly LOCATION: "/location";
|
|
2181
|
+
readonly LOCATION_AREA: "/location-area";
|
|
2182
|
+
readonly PALPARK_AREA: "/pal-park-area";
|
|
2183
|
+
readonly REGION: "/region";
|
|
2184
|
+
readonly MACHINE: "/machine";
|
|
2185
|
+
readonly MOVE: "/move";
|
|
2186
|
+
readonly MOVE_AILMENT: "/move-ailment";
|
|
2187
|
+
readonly MOVE_BATTLE_STYLE: "/move-battle-style";
|
|
2188
|
+
readonly MOVE_CATEGORY: "/move-category";
|
|
2189
|
+
readonly MOVE_DAMAGE_CLASS: "/move-damage-class";
|
|
2190
|
+
readonly MOVE_LEARN_METHOD: "/move-learn-method";
|
|
2191
|
+
readonly MOVE_TARGET: "/move-target";
|
|
2192
|
+
readonly ABILITY: "/ability";
|
|
2193
|
+
readonly CHARACTERISTIC: "/characteristic";
|
|
2194
|
+
readonly EGG_GROUP: "/egg-group";
|
|
2195
|
+
readonly GENDER: "/gender";
|
|
2196
|
+
readonly GROWTH_RATE: "/growth-rate";
|
|
2197
|
+
readonly NATURE: "/nature";
|
|
2198
|
+
readonly POKEATHLON_STAT: "/pokeathlon-stat";
|
|
2199
|
+
readonly POKEMON: "/pokemon";
|
|
2200
|
+
readonly POKEMON_LOCATION_AREA: "/pokemon/:id/encounters";
|
|
2201
|
+
readonly POKEMON_COLOR: "/pokemon-color";
|
|
2202
|
+
readonly POKEMON_FORM: "/pokemon-form";
|
|
2203
|
+
readonly POKEMON_HABITAT: "/pokemon-habitat";
|
|
2204
|
+
readonly POKEMON_SHAPE: "/pokemon-shape";
|
|
2205
|
+
readonly POKEMON_SPECIES: "/pokemon-species";
|
|
2206
|
+
readonly STAT: "/stat";
|
|
2207
|
+
readonly TYPE: "/type";
|
|
2208
|
+
readonly LANGUAGE: "/language";
|
|
2209
|
+
};
|
|
2210
|
+
|
|
2211
|
+
/** Enum of Berries (NAME - ID) */
|
|
2212
|
+
declare const BERRIES: {
|
|
2213
|
+
readonly CHERI: 1;
|
|
2214
|
+
readonly CHESTO: 2;
|
|
2215
|
+
readonly PECHA: 3;
|
|
2216
|
+
readonly RAWST: 4;
|
|
2217
|
+
readonly ASPEAR: 5;
|
|
2218
|
+
readonly LEPPA: 6;
|
|
2219
|
+
readonly ORAN: 7;
|
|
2220
|
+
readonly PERSIM: 8;
|
|
2221
|
+
readonly LUM: 9;
|
|
2222
|
+
readonly SITRUS: 10;
|
|
2223
|
+
readonly FIGY: 11;
|
|
2224
|
+
readonly WIKI: 12;
|
|
2225
|
+
readonly MAGO: 13;
|
|
2226
|
+
readonly AGUAV: 14;
|
|
2227
|
+
readonly IAPAPA: 15;
|
|
2228
|
+
readonly RAZZ: 16;
|
|
2229
|
+
readonly BLUK: 17;
|
|
2230
|
+
readonly NANAB: 18;
|
|
2231
|
+
readonly WEPEAR: 19;
|
|
2232
|
+
readonly PINAP: 20;
|
|
2233
|
+
readonly POMEG: 21;
|
|
2234
|
+
readonly KELPSY: 22;
|
|
2235
|
+
readonly QUALOT: 23;
|
|
2236
|
+
readonly HONDEW: 24;
|
|
2237
|
+
readonly GREPA: 25;
|
|
2238
|
+
readonly TAMATO: 26;
|
|
2239
|
+
readonly CORNN: 27;
|
|
2240
|
+
readonly MAGOST: 28;
|
|
2241
|
+
readonly RABUTA: 29;
|
|
2242
|
+
readonly NOMEL: 30;
|
|
2243
|
+
readonly SPELON: 31;
|
|
2244
|
+
readonly PAMTRE: 32;
|
|
2245
|
+
readonly WATMEL: 33;
|
|
2246
|
+
readonly DURIN: 34;
|
|
2247
|
+
readonly BELUE: 35;
|
|
2248
|
+
readonly OCCA: 36;
|
|
2249
|
+
readonly PASSHO: 37;
|
|
2250
|
+
readonly WACAN: 38;
|
|
2251
|
+
readonly RINDO: 39;
|
|
2252
|
+
readonly YACHE: 40;
|
|
2253
|
+
readonly CHOPLE: 41;
|
|
2254
|
+
readonly KEBIA: 42;
|
|
2255
|
+
readonly SHUCA: 43;
|
|
2256
|
+
readonly COBA: 44;
|
|
2257
|
+
readonly PAYAPA: 45;
|
|
2258
|
+
readonly TANGA: 46;
|
|
2259
|
+
readonly CHARTI: 47;
|
|
2260
|
+
readonly KASIB: 48;
|
|
2261
|
+
readonly HABAN: 49;
|
|
2262
|
+
readonly COLBUR: 50;
|
|
2263
|
+
readonly BABIRI: 51;
|
|
2264
|
+
readonly CHILAN: 52;
|
|
2265
|
+
readonly LIECHI: 53;
|
|
2266
|
+
readonly GANLON: 54;
|
|
2267
|
+
readonly SALAC: 55;
|
|
2268
|
+
readonly PETAYA: 56;
|
|
2269
|
+
readonly APICOT: 57;
|
|
2270
|
+
readonly LANSAT: 58;
|
|
2271
|
+
readonly STARF: 59;
|
|
2272
|
+
readonly ENIGMA: 60;
|
|
2273
|
+
readonly MICLE: 61;
|
|
2274
|
+
readonly CUSTAP: 62;
|
|
2275
|
+
readonly JABOCA: 63;
|
|
2276
|
+
readonly ROWAP: 64;
|
|
2277
|
+
};
|
|
2278
|
+
/** Enum of Berry Firmnesses (NAME - ID) */
|
|
2279
|
+
declare const BERRY_FIRMNESSES: {
|
|
2280
|
+
readonly VERY_SOFT: 1;
|
|
2281
|
+
readonly SOFT: 2;
|
|
2282
|
+
readonly HARD: 3;
|
|
2283
|
+
readonly VERY_HARD: 4;
|
|
2284
|
+
readonly SUPER_HARD: 5;
|
|
2285
|
+
};
|
|
2286
|
+
declare const BERRY_FLAVORS: {
|
|
2287
|
+
readonly SPICY: 1;
|
|
2288
|
+
readonly DRY: 2;
|
|
2289
|
+
readonly SWEET: 3;
|
|
2290
|
+
readonly BITTER: 4;
|
|
2291
|
+
readonly SOUR: 5;
|
|
2292
|
+
};
|
|
2293
|
+
|
|
2294
|
+
declare const CONTEST_TYPES: {
|
|
2295
|
+
readonly COOL: 1;
|
|
2296
|
+
readonly BEAUTY: 2;
|
|
2297
|
+
readonly CUTE: 3;
|
|
2298
|
+
readonly SMART: 4;
|
|
2299
|
+
readonly TOUGH: 5;
|
|
2300
|
+
};
|
|
2301
|
+
|
|
2302
|
+
declare const ENCOUNTER_METHODS: {
|
|
2303
|
+
readonly WALK: 1;
|
|
2304
|
+
readonly OLD_ROD: 2;
|
|
2305
|
+
readonly GOOD_ROD: 3;
|
|
2306
|
+
readonly SUPER_ROD: 4;
|
|
2307
|
+
readonly SURF: 5;
|
|
2308
|
+
readonly ROCK_SMASH: 6;
|
|
2309
|
+
readonly HEADBUTT: 7;
|
|
2310
|
+
readonly DARK_GRASS: 8;
|
|
2311
|
+
readonly GRASS_SPOTS: 9;
|
|
2312
|
+
readonly CAVE_SPOTS: 10;
|
|
2313
|
+
readonly BRIDGE_SPOTS: 11;
|
|
2314
|
+
readonly SUPER_ROD_SPOTS: 12;
|
|
2315
|
+
readonly SURF_SPOTS: 13;
|
|
2316
|
+
readonly YELLOW_FLOWERS: 14;
|
|
2317
|
+
readonly PURPLE_FLOWERS: 15;
|
|
2318
|
+
readonly RED_FLOWERS: 16;
|
|
2319
|
+
readonly ROUGH_TERRAIN: 17;
|
|
2320
|
+
readonly GIFT: 18;
|
|
2321
|
+
readonly GIFT_EGG: 19;
|
|
2322
|
+
readonly ONLY_ONE: 20;
|
|
2323
|
+
readonly POKEFLUTE: 21;
|
|
2324
|
+
readonly HEADBUTT_LOW: 22;
|
|
2325
|
+
readonly HEADBUTT_NORMAL: 23;
|
|
2326
|
+
readonly HEADBUT_HIGH: 24;
|
|
2327
|
+
readonly SQUIRT_BOTTLE: 25;
|
|
2328
|
+
readonly WAILMER_PAIL: 26;
|
|
2329
|
+
readonly SEAWEED: 27;
|
|
2330
|
+
};
|
|
2331
|
+
declare const ENCOUNTER_CONDITIONS: {
|
|
2332
|
+
readonly SWARM: 1;
|
|
2333
|
+
readonly TIME: 2;
|
|
2334
|
+
readonly RADAR: 3;
|
|
2335
|
+
readonly SLOT2: 4;
|
|
2336
|
+
readonly RADIO: 5;
|
|
2337
|
+
readonly SEASON: 6;
|
|
2338
|
+
readonly STARTER: 7;
|
|
2339
|
+
readonly TV_OPTION: 8;
|
|
2340
|
+
readonly STORY_PROGRESS: 9;
|
|
2341
|
+
readonly OTHER: 10;
|
|
2342
|
+
};
|
|
2343
|
+
declare const ENCOUNTER_CONDITION_VALUES: {
|
|
2344
|
+
readonly SWARM_YES: 1;
|
|
2345
|
+
readonly SWARM_NO: 2;
|
|
2346
|
+
readonly TIME_MORNING: 3;
|
|
2347
|
+
readonly TIME_DAY: 4;
|
|
2348
|
+
readonly TIME_NIGHT: 5;
|
|
2349
|
+
readonly RADAR_ON: 6;
|
|
2350
|
+
readonly RADAR_OFF: 7;
|
|
2351
|
+
readonly SLOT2_NONE: 8;
|
|
2352
|
+
readonly SLOT2_RUBY: 9;
|
|
2353
|
+
readonly SLOT2_SAPHIRE: 10;
|
|
2354
|
+
readonly SLOT2_EMERALD: 11;
|
|
2355
|
+
readonly SLOT2_FIRERED: 12;
|
|
2356
|
+
readonly SLOT2_LEAFGREEN: 13;
|
|
2357
|
+
readonly RADIO_OFF: 14;
|
|
2358
|
+
readonly RADIO_HOEN: 15;
|
|
2359
|
+
readonly RADIO_SINNOH: 16;
|
|
2360
|
+
readonly SEASON_SPRING: 17;
|
|
2361
|
+
readonly SEASON_SUMMER: 18;
|
|
2362
|
+
readonly SWASON_AUTUMN: 19;
|
|
2363
|
+
readonly SEASON_WINTER: 20;
|
|
2364
|
+
readonly STARTER_BULBASAUR: 21;
|
|
2365
|
+
readonly STARTER_SQUIRTLE: 22;
|
|
2366
|
+
readonly STARTER_CHARMANDER: 23;
|
|
2367
|
+
readonly STARTER_CHESPIN: 24;
|
|
2368
|
+
readonly STARTER_FENNEKIN: 25;
|
|
2369
|
+
readonly STARTER_FROAKIE: 26;
|
|
2370
|
+
readonly TV_OPTION_BLUE: 27;
|
|
2371
|
+
readonly TV_OPTION_RED: 28;
|
|
2372
|
+
readonly STORY_PROGRESS_AWAKENED_BEASTS: 29;
|
|
2373
|
+
readonly STORY_PROGRESS_BEAT_GALACTIC_CORONET: 30;
|
|
2374
|
+
readonly STORY_PROGRESS_OAK_ETERNA_CITY: 31;
|
|
2375
|
+
readonly STORY_PROGRESS_OAK_VERMILION_COPYCAT: 32;
|
|
2376
|
+
readonly STORY_PROGRESS_MET_TORNADUS_THUNDURUS: 33;
|
|
2377
|
+
readonly STORY_PROGRESS_BEAT_ELITE_FOUR_ROUND_TWO: 34;
|
|
2378
|
+
readonly STORY_PROGRESS_HALL_OF_FAME: 35;
|
|
2379
|
+
readonly STORY_PROGRESS_NONE: 36;
|
|
2380
|
+
readonly STORY_PROGRESS_NATIONAL_DEX: 37;
|
|
2381
|
+
readonly OTHER_NONE: 38;
|
|
2382
|
+
readonly OTHER_SNORLAX_LL_BEAT_LEAGUE: 39;
|
|
2383
|
+
};
|
|
2384
|
+
|
|
2385
|
+
declare const EVOLUTION_TRIGGERS: {
|
|
2386
|
+
readonly LEVEL_UP: 1;
|
|
2387
|
+
readonly TRADE: 2;
|
|
2388
|
+
readonly USE_ITEM: 3;
|
|
2389
|
+
readonly SHED: 4;
|
|
2390
|
+
readonly SPIN: 5;
|
|
2391
|
+
readonly TOWER_OF_DARKNESS: 6;
|
|
2392
|
+
readonly TOWER_OF_WATER: 7;
|
|
2393
|
+
readonly THREE_CRITICAL_HITS: 8;
|
|
2394
|
+
readonly TAKE_DAMAGE: 9;
|
|
2395
|
+
readonly OTHER: 10;
|
|
2396
|
+
};
|
|
2397
|
+
|
|
2398
|
+
declare const GENERATIONS: {
|
|
2399
|
+
readonly GENERATION_I: 1;
|
|
2400
|
+
readonly GENERATION_II: 2;
|
|
2401
|
+
readonly GENERATION_III: 3;
|
|
2402
|
+
readonly GENERATION_IV: 4;
|
|
2403
|
+
readonly GENERATION_V: 5;
|
|
2404
|
+
readonly GENERATION_VI: 6;
|
|
2405
|
+
readonly GENERATION_VII: 7;
|
|
2406
|
+
readonly GENERATION_VIII: 8;
|
|
2407
|
+
};
|
|
2408
|
+
declare const POKEDEXES: {
|
|
2409
|
+
readonly NATIONAL: 1;
|
|
2410
|
+
readonly KANTO: 2;
|
|
2411
|
+
readonly ORIGINAL_JOHTO: 3;
|
|
2412
|
+
readonly HOENN: 4;
|
|
2413
|
+
readonly ORIGINAL_SINNOH: 5;
|
|
2414
|
+
readonly EXTENDED_SINNOH: 6;
|
|
2415
|
+
readonly UPDATED_JOHTO: 7;
|
|
2416
|
+
readonly ORIGINAL_UNOVA: 8;
|
|
2417
|
+
readonly UPDATED_UNOVA: 9;
|
|
2418
|
+
readonly CONQUEST_GALLERY: 11;
|
|
2419
|
+
readonly KALOS_CENTRAL: 12;
|
|
2420
|
+
readonly KALOS_COASTAL: 13;
|
|
2421
|
+
readonly KALOS_MONTAIN: 14;
|
|
2422
|
+
readonly UPDATED_HOENN: 15;
|
|
2423
|
+
readonly ORIGINAL_ALOLA: 16;
|
|
2424
|
+
readonly ORIGINAL_MELEMELE: 17;
|
|
2425
|
+
readonly ORIGINAL_AKALA: 18;
|
|
2426
|
+
readonly ORIGINAL_ULAULA: 19;
|
|
2427
|
+
readonly ORIGINAL_PONI: 20;
|
|
2428
|
+
readonly UPDATED_ALOLA: 21;
|
|
2429
|
+
readonly UPDATED_MELEMELE: 22;
|
|
2430
|
+
readonly UPDATED_AKALA: 23;
|
|
2431
|
+
readonly UPDATED_ULAULA: 24;
|
|
2432
|
+
readonly UPDATED_PONI: 25;
|
|
2433
|
+
readonly UPDATED_KANTO: 26;
|
|
2434
|
+
readonly GALAR: 27;
|
|
2435
|
+
readonly ISLE_OF_ARMOR: 28;
|
|
2436
|
+
readonly CROWN_TUNDRA: 29;
|
|
2437
|
+
};
|
|
2438
|
+
declare const VERSIONS: {
|
|
2439
|
+
readonly RED: 1;
|
|
2440
|
+
readonly BLUE: 2;
|
|
2441
|
+
readonly YELLOW: 3;
|
|
2442
|
+
readonly GOLD: 4;
|
|
2443
|
+
readonly SILVER: 5;
|
|
2444
|
+
readonly CRYSTAL: 6;
|
|
2445
|
+
readonly RUBY: 7;
|
|
2446
|
+
readonly SAPPHIRE: 8;
|
|
2447
|
+
readonly EMERALD: 9;
|
|
2448
|
+
readonly FIRERED: 10;
|
|
2449
|
+
readonly LEAFGREEN: 11;
|
|
2450
|
+
readonly DIAMOND: 12;
|
|
2451
|
+
readonly PEARL: 13;
|
|
2452
|
+
readonly PLATINUM: 14;
|
|
2453
|
+
readonly HEARTGOLD: 15;
|
|
2454
|
+
readonly SOULSILVER: 16;
|
|
2455
|
+
readonly BLACK: 17;
|
|
2456
|
+
readonly WHITE: 18;
|
|
2457
|
+
readonly COLOSSEUM: 19;
|
|
2458
|
+
readonly XD: 20;
|
|
2459
|
+
readonly BLACK_2: 21;
|
|
2460
|
+
readonly WHITE_2: 22;
|
|
2461
|
+
readonly X: 23;
|
|
2462
|
+
readonly Y: 24;
|
|
2463
|
+
readonly OMEGA_RUBY: 25;
|
|
2464
|
+
readonly ALPHA_SAPPHIRE: 26;
|
|
2465
|
+
readonly SUN: 27;
|
|
2466
|
+
readonly MOON: 28;
|
|
2467
|
+
readonly ULTRA_SUN: 29;
|
|
2468
|
+
readonly ULTRA_MOON: 30;
|
|
2469
|
+
readonly LETS_GO_PIKACHU: 31;
|
|
2470
|
+
readonly LETS_GO_EEVEE: 32;
|
|
2471
|
+
readonly SWORD: 33;
|
|
2472
|
+
readonly SHIELD: 34;
|
|
2473
|
+
readonly THE_ISLE_OF_ARMOR: 35;
|
|
2474
|
+
readonly THE_CROWN_TUNDRA: 36;
|
|
2475
|
+
readonly BRILLIANT_DIAMOND: 37;
|
|
2476
|
+
readonly SHINING_PEARL: 38;
|
|
2477
|
+
readonly LEGENDS_ARCEUS: 39;
|
|
2478
|
+
};
|
|
2479
|
+
declare const VERSION_GROUPS: {
|
|
2480
|
+
readonly RED_BLUE: 1;
|
|
2481
|
+
readonly YELLOW: 2;
|
|
2482
|
+
readonly GOLD_SILVER: 3;
|
|
2483
|
+
readonly CRYSTAL: 4;
|
|
2484
|
+
readonly RUBY_SAPPHIRE: 5;
|
|
2485
|
+
readonly EMERALD: 6;
|
|
2486
|
+
readonly FIRERED_LEAFGREEN: 7;
|
|
2487
|
+
readonly DIAMOND_PEARL: 8;
|
|
2488
|
+
readonly PLATINUM: 9;
|
|
2489
|
+
readonly HEARTGOLD_SOULSILVER: 10;
|
|
2490
|
+
readonly BLACK_WHITE: 11;
|
|
2491
|
+
readonly COLOSSEUM: 12;
|
|
2492
|
+
readonly XD: 13;
|
|
2493
|
+
readonly BLACK_2_WHITE_2: 14;
|
|
2494
|
+
readonly X_Y: 15;
|
|
2495
|
+
readonly OMEGA_RUBY_ALPHA_SAPPHIRE: 16;
|
|
2496
|
+
readonly SUN_MOON: 17;
|
|
2497
|
+
readonly ULTRA_SUN_ULTRA_MOON: 18;
|
|
2498
|
+
readonly LETS_GO: 19;
|
|
2499
|
+
readonly SWORD_SHIELD: 20;
|
|
2500
|
+
readonly THE_ISLE_OF_ARMOR: 21;
|
|
2501
|
+
readonly THE_CROWN_TUNDRA: 22;
|
|
2502
|
+
readonly BRILLIANT_DIAMOND_AND_SHINING_PEARL: 23;
|
|
2503
|
+
readonly LEGENDS_ARCEUS: 24;
|
|
2504
|
+
};
|
|
2505
|
+
|
|
2506
|
+
declare const REGIONS: {
|
|
2507
|
+
readonly KANTO: 1;
|
|
2508
|
+
readonly JOHTO: 2;
|
|
2509
|
+
readonly HOENN: 3;
|
|
2510
|
+
readonly SINNOH: 4;
|
|
2511
|
+
readonly UNOVA: 5;
|
|
2512
|
+
readonly KALOS: 6;
|
|
2513
|
+
readonly ALOLA: 7;
|
|
2514
|
+
readonly GALAR: 8;
|
|
2515
|
+
readonly HISUI: 9;
|
|
2516
|
+
};
|
|
2517
|
+
declare const PAL_PARK_AREAS: {
|
|
2518
|
+
readonly FOREST: 1;
|
|
2519
|
+
readonly FIELD: 2;
|
|
2520
|
+
readonly MOUNTAIN: 3;
|
|
2521
|
+
readonly POND: 4;
|
|
2522
|
+
readonly SEA: 5;
|
|
2523
|
+
};
|
|
2524
|
+
|
|
2525
|
+
declare const MOVE_AILMENTS: {
|
|
2526
|
+
readonly UNKNOWN: -1;
|
|
2527
|
+
readonly NONE: 0;
|
|
2528
|
+
readonly PARALYSIS: 1;
|
|
2529
|
+
readonly SLEEP: 2;
|
|
2530
|
+
readonly FREEZE: 3;
|
|
2531
|
+
readonly BURN: 4;
|
|
2532
|
+
readonly POISON: 5;
|
|
2533
|
+
readonly CONFUSION: 6;
|
|
2534
|
+
readonly INFATUATION: 7;
|
|
2535
|
+
readonly TRAP: 8;
|
|
2536
|
+
readonly NIGHTMARE: 9;
|
|
2537
|
+
readonly TORMENT: 12;
|
|
2538
|
+
readonly DISABLE: 13;
|
|
2539
|
+
readonly YAWN: 14;
|
|
2540
|
+
readonly HEAL_BLOCK: 15;
|
|
2541
|
+
readonly NO_TYPE_IMMUNITY: 17;
|
|
2542
|
+
readonly LEECH_SEED: 18;
|
|
2543
|
+
readonly EMBARGO: 19;
|
|
2544
|
+
readonly PERISH_SONG: 20;
|
|
2545
|
+
readonly INGRAIN: 21;
|
|
2546
|
+
readonly SILENCE: 24;
|
|
2547
|
+
readonly TAR_SHOT: 42;
|
|
2548
|
+
};
|
|
2549
|
+
declare const MOVE_BATTLE_STYLES: {
|
|
2550
|
+
readonly ATTACK: 1;
|
|
2551
|
+
readonly DEFENSE: 2;
|
|
2552
|
+
readonly SUPPORT: 3;
|
|
2553
|
+
};
|
|
2554
|
+
declare const MOVE_CATEGORIES: {
|
|
2555
|
+
readonly DAMAGE: 0;
|
|
2556
|
+
readonly AILMENT: 1;
|
|
2557
|
+
readonly NET_GOOD_STATS: 2;
|
|
2558
|
+
readonly HEAL: 3;
|
|
2559
|
+
readonly DAMAGE_AILMENT: 4;
|
|
2560
|
+
readonly SWAGGER: 5;
|
|
2561
|
+
readonly DAMAGE_LOWER: 6;
|
|
2562
|
+
readonly DAMAGE_RAISE: 7;
|
|
2563
|
+
readonly DAMAGE_HEAL: 8;
|
|
2564
|
+
readonly OHKO: 9;
|
|
2565
|
+
readonly WHOLE_FIELD_EFFECT: 10;
|
|
2566
|
+
readonly FIELD_EFFECT: 11;
|
|
2567
|
+
readonly FORCE_SWITCH: 12;
|
|
2568
|
+
readonly UNIQUE: 13;
|
|
2569
|
+
};
|
|
2570
|
+
declare const MOVE_DAMAGE_CLASSES: {
|
|
2571
|
+
readonly STATUS: 1;
|
|
2572
|
+
readonly PHYSICAL: 2;
|
|
2573
|
+
readonly SPECIAL: 3;
|
|
2574
|
+
};
|
|
2575
|
+
declare const MOVE_LEARN_METHODS: {
|
|
2576
|
+
readonly LEVEL_UP: 1;
|
|
2577
|
+
readonly EGG: 2;
|
|
2578
|
+
readonly TUTOR: 3;
|
|
2579
|
+
readonly MACHINE: 4;
|
|
2580
|
+
readonly STADIUM_SURFING_PIKACHU: 5;
|
|
2581
|
+
readonly LIGHT_BALL_EGG: 6;
|
|
2582
|
+
readonly COLOSSEUM_PURIFICATION: 7;
|
|
2583
|
+
readonly XD_SHADOW: 8;
|
|
2584
|
+
readonly XD_PURIFICATION: 9;
|
|
2585
|
+
readonly FORM_CHANGE: 10;
|
|
2586
|
+
};
|
|
2587
|
+
declare const MOVE_TARGETS: {
|
|
2588
|
+
readonly SPECIFIC_MOVE: 1;
|
|
2589
|
+
readonly SELECTED_POKEMON_ME_FIRST: 2;
|
|
2590
|
+
readonly ALLY: 3;
|
|
2591
|
+
readonly USERS_FIELD: 4;
|
|
2592
|
+
readonly USER_OR_ALLY: 5;
|
|
2593
|
+
readonly OPPONENTS_FIELD: 6;
|
|
2594
|
+
readonly USER: 7;
|
|
2595
|
+
readonly RANDOM_OPPONENT: 8;
|
|
2596
|
+
readonly ALL_OTHER_POKEMON: 9;
|
|
2597
|
+
readonly SELECTED_POKEMON: 10;
|
|
2598
|
+
readonly ALL_OPPONENTS: 11;
|
|
2599
|
+
readonly ENTIRE_FIELD: 12;
|
|
2600
|
+
readonly USER_AND_ALIES: 13;
|
|
2601
|
+
readonly ALL_POKEMON: 14;
|
|
2602
|
+
readonly ALL_ALLIES: 15;
|
|
2603
|
+
};
|
|
2604
|
+
|
|
2605
|
+
declare const EGG_GROUPS: {
|
|
2606
|
+
readonly MONSTER: 1;
|
|
2607
|
+
readonly WATER1: 2;
|
|
2608
|
+
readonly BUG: 3;
|
|
2609
|
+
readonly FLYING: 4;
|
|
2610
|
+
readonly GROUND: 5;
|
|
2611
|
+
readonly FAIRY: 6;
|
|
2612
|
+
readonly PLANT: 7;
|
|
2613
|
+
readonly HUMANSHAPE: 8;
|
|
2614
|
+
readonly WATER3: 9;
|
|
2615
|
+
readonly MINERAL: 10;
|
|
2616
|
+
readonly INDETERMINATE: 11;
|
|
2617
|
+
readonly WATER2: 12;
|
|
2618
|
+
readonly DITTO: 13;
|
|
2619
|
+
readonly DRAGON: 14;
|
|
2620
|
+
readonly NO_EGGS: 15;
|
|
2621
|
+
};
|
|
2622
|
+
declare const GENDERS: {
|
|
2623
|
+
readonly FEMALE: 1;
|
|
2624
|
+
readonly MALE: 2;
|
|
2625
|
+
readonly GENDERLESS: 3;
|
|
2626
|
+
};
|
|
2627
|
+
declare const GROWTH_RATES: {
|
|
2628
|
+
readonly SLOW: 1;
|
|
2629
|
+
readonly MEDIUM: 2;
|
|
2630
|
+
readonly FAST: 3;
|
|
2631
|
+
readonly MEDIUM_SLOW: 4;
|
|
2632
|
+
readonly SLOW_THEN_VERY_FAST: 5;
|
|
2633
|
+
readonly FAST_THEN_VERY_SLOW: 6;
|
|
2634
|
+
};
|
|
2635
|
+
declare const NATURES: {
|
|
2636
|
+
readonly HARDY: 1;
|
|
2637
|
+
readonly BOLD: 2;
|
|
2638
|
+
readonly MODEST: 3;
|
|
2639
|
+
readonly CALM: 4;
|
|
2640
|
+
readonly TIMID: 5;
|
|
2641
|
+
readonly LONELY: 6;
|
|
2642
|
+
readonly DOCILE: 7;
|
|
2643
|
+
readonly MILD: 8;
|
|
2644
|
+
readonly GENTLE: 9;
|
|
2645
|
+
readonly HASTY: 10;
|
|
2646
|
+
readonly ADAMANT: 11;
|
|
2647
|
+
readonly IMPISH: 12;
|
|
2648
|
+
readonly BASHFUL: 13;
|
|
2649
|
+
readonly CAREFUL: 14;
|
|
2650
|
+
readonly RASH: 15;
|
|
2651
|
+
readonly JOLLY: 16;
|
|
2652
|
+
readonly NAUGHTY: 17;
|
|
2653
|
+
readonly LAX: 18;
|
|
2654
|
+
readonly QUIRKY: 19;
|
|
2655
|
+
readonly NAIVE: 20;
|
|
2656
|
+
readonly BRAVE: 21;
|
|
2657
|
+
readonly RELAXED: 22;
|
|
2658
|
+
readonly QUIET: 23;
|
|
2659
|
+
readonly SASSY: 24;
|
|
2660
|
+
readonly SERIOUS: 25;
|
|
2661
|
+
};
|
|
2662
|
+
declare const POKEATHLON_STATS: {
|
|
2663
|
+
readonly SPEED: 1;
|
|
2664
|
+
readonly POWER: 2;
|
|
2665
|
+
readonly SKILL: 3;
|
|
2666
|
+
readonly STAMINA: 4;
|
|
2667
|
+
readonly JUMP: 5;
|
|
2668
|
+
};
|
|
2669
|
+
declare const POKEMON_COLORS: {
|
|
2670
|
+
readonly BLACK: 1;
|
|
2671
|
+
readonly BLUE: 2;
|
|
2672
|
+
readonly BROWN: 3;
|
|
2673
|
+
readonly GRAY: 4;
|
|
2674
|
+
readonly GREEN: 5;
|
|
2675
|
+
readonly PINK: 6;
|
|
2676
|
+
readonly PURPLE: 7;
|
|
2677
|
+
readonly RED: 8;
|
|
2678
|
+
readonly WHITE: 9;
|
|
2679
|
+
readonly YELLOW: 10;
|
|
2680
|
+
};
|
|
2681
|
+
declare const POKEMON_HABITATS: {
|
|
2682
|
+
readonly CAVE: 1;
|
|
2683
|
+
readonly FOREST: 2;
|
|
2684
|
+
readonly GRASSLAND: 3;
|
|
2685
|
+
readonly MONTAIN: 4;
|
|
2686
|
+
readonly RARE: 5;
|
|
2687
|
+
readonly ROUGH_TERRAIN: 6;
|
|
2688
|
+
readonly SEA: 7;
|
|
2689
|
+
readonly URBAN: 8;
|
|
2690
|
+
readonly WATERS_EDGE: 9;
|
|
2691
|
+
};
|
|
2692
|
+
declare const POKEMON_SHAPES: {
|
|
2693
|
+
readonly BALL: 1;
|
|
2694
|
+
readonly SQUIGGLE: 2;
|
|
2695
|
+
readonly FISH: 3;
|
|
2696
|
+
readonly ARMS: 4;
|
|
2697
|
+
readonly BLOB: 5;
|
|
2698
|
+
readonly UPRIGHT: 6;
|
|
2699
|
+
readonly LEGS: 7;
|
|
2700
|
+
readonly QUADRUPED: 8;
|
|
2701
|
+
readonly WINGS: 9;
|
|
2702
|
+
readonly TENTACLES: 10;
|
|
2703
|
+
readonly HEADS: 11;
|
|
2704
|
+
readonly HUMANOID: 12;
|
|
2705
|
+
readonly BUG_WINGS: 13;
|
|
2706
|
+
readonly ARMOR: 14;
|
|
2707
|
+
};
|
|
2708
|
+
declare const STATS: {
|
|
2709
|
+
readonly HP: 1;
|
|
2710
|
+
readonly ATTACK: 2;
|
|
2711
|
+
readonly DEFENSE: 3;
|
|
2712
|
+
readonly SPECIAL_ATTACK: 4;
|
|
2713
|
+
readonly SPECIAL_DEFENSE: 5;
|
|
2714
|
+
readonly SPEED: 6;
|
|
2715
|
+
readonly ACCURACY: 7;
|
|
2716
|
+
readonly EVASION: 8;
|
|
2717
|
+
};
|
|
2718
|
+
declare const TYPES: {
|
|
2719
|
+
readonly NORMAL: 1;
|
|
2720
|
+
readonly FIGHTING: 2;
|
|
2721
|
+
readonly FLYING: 3;
|
|
2722
|
+
readonly POISON: 4;
|
|
2723
|
+
readonly GROUND: 5;
|
|
2724
|
+
readonly ROCK: 6;
|
|
2725
|
+
readonly BUG: 7;
|
|
2726
|
+
readonly GHOST: 8;
|
|
2727
|
+
readonly STEEL: 9;
|
|
2728
|
+
readonly FIRE: 10;
|
|
2729
|
+
readonly WATER: 11;
|
|
2730
|
+
readonly GRASS: 12;
|
|
2731
|
+
readonly ELECTRIC: 13;
|
|
2732
|
+
readonly PSYCHIC: 14;
|
|
2733
|
+
readonly ICE: 15;
|
|
2734
|
+
readonly DRAGON: 16;
|
|
2735
|
+
readonly DARK: 17;
|
|
2736
|
+
readonly FAIRY: 18;
|
|
2737
|
+
readonly UNKNOWN: 10001;
|
|
2738
|
+
readonly SHADOW: 10002;
|
|
2739
|
+
};
|
|
2740
|
+
|
|
2741
|
+
declare const LANGUAGES: {
|
|
2742
|
+
readonly JA_HRKT: 1;
|
|
2743
|
+
readonly ROOMAJI: 2;
|
|
2744
|
+
readonly KO: 3;
|
|
2745
|
+
readonly ZH_HANT: 4;
|
|
2746
|
+
readonly FR: 5;
|
|
2747
|
+
readonly DE: 6;
|
|
2748
|
+
readonly ES: 7;
|
|
2749
|
+
readonly IT: 8;
|
|
2750
|
+
readonly EN: 9;
|
|
2751
|
+
readonly CS: 10;
|
|
2752
|
+
readonly JA: 11;
|
|
2753
|
+
readonly ZH_HANS: 12;
|
|
2754
|
+
readonly PT_BR: 13;
|
|
2755
|
+
};
|
|
2756
|
+
|
|
2757
|
+
declare const ITEM_ATTRIBUTES: {
|
|
2758
|
+
readonly COUNTABLE: 1;
|
|
2759
|
+
readonly CONSUMABLE: 2;
|
|
2760
|
+
readonly USABLE_OVERWORLD: 3;
|
|
2761
|
+
readonly USABLE_IN_BATTLE: 4;
|
|
2762
|
+
readonly HOLDABLE: 5;
|
|
2763
|
+
readonly HOLDABLE_PASSIVE: 6;
|
|
2764
|
+
readonly HOLDABLE_ACTIVE: 7;
|
|
2765
|
+
readonly UNDERGROUND: 8;
|
|
2766
|
+
};
|
|
2767
|
+
declare const ITEM_CATEGORIES: {
|
|
2768
|
+
readonly STAT_BOOSTS: 1;
|
|
2769
|
+
readonly EFFORT_DROP: 2;
|
|
2770
|
+
readonly MEDICINE: 3;
|
|
2771
|
+
readonly OTHER: 4;
|
|
2772
|
+
readonly IN_A_PINCH: 5;
|
|
2773
|
+
readonly PICKY_HEALING: 6;
|
|
2774
|
+
readonly TYPE_PROTECTION: 7;
|
|
2775
|
+
readonly BAKING_ONLY: 8;
|
|
2776
|
+
readonly COLLECTIBLES: 9;
|
|
2777
|
+
readonly EVOLUTION: 10;
|
|
2778
|
+
readonly SPELUNKING: 11;
|
|
2779
|
+
readonly HELD_ITEMS: 12;
|
|
2780
|
+
readonly CHOICE: 13;
|
|
2781
|
+
readonly EFFORT_TRAINING: 14;
|
|
2782
|
+
readonly BAD_HELD_ITEMS: 15;
|
|
2783
|
+
readonly TRAINING: 16;
|
|
2784
|
+
readonly PLATES: 17;
|
|
2785
|
+
readonly SPECIES_SPECIFIC: 18;
|
|
2786
|
+
readonly TYPE_ENHANCEMENT: 19;
|
|
2787
|
+
readonly EVENT_ITEMS: 20;
|
|
2788
|
+
readonly GAMEPLAY: 21;
|
|
2789
|
+
readonly PLOT_ADVANCEMENT: 22;
|
|
2790
|
+
readonly UNUSED: 23;
|
|
2791
|
+
readonly LOOT: 24;
|
|
2792
|
+
readonly ALL_MAIL: 25;
|
|
2793
|
+
readonly VITAMINS: 26;
|
|
2794
|
+
readonly HEALING: 27;
|
|
2795
|
+
readonly PP_RECOVERY: 28;
|
|
2796
|
+
readonly REVIVAL: 29;
|
|
2797
|
+
readonly STATUS_CURES: 30;
|
|
2798
|
+
readonly MULCH: 32;
|
|
2799
|
+
readonly SPECIAL_BALLS: 33;
|
|
2800
|
+
readonly STANDARD_BALLS: 34;
|
|
2801
|
+
readonly DEX_COMPLETION: 35;
|
|
2802
|
+
readonly SCARVES: 36;
|
|
2803
|
+
readonly ALL_MACHINES: 37;
|
|
2804
|
+
readonly FLUTES: 38;
|
|
2805
|
+
readonly APRICORN_BALLS: 39;
|
|
2806
|
+
readonly APRICORN_BOX: 40;
|
|
2807
|
+
readonly DATA_CARDS: 41;
|
|
2808
|
+
readonly JEWELS: 42;
|
|
2809
|
+
readonly MIRACLE_SHOOTER: 43;
|
|
2810
|
+
readonly MEGA_STONES: 44;
|
|
2811
|
+
readonly MEMORIES: 45;
|
|
2812
|
+
readonly Z_CRYSTALS: 46;
|
|
2813
|
+
readonly SPECIES_CANDIES: 47;
|
|
2814
|
+
readonly CATCHING_BONUS: 48;
|
|
2815
|
+
readonly DYNAMAX_CRISTALS: 49;
|
|
2816
|
+
readonly NATURE_MINTS: 50;
|
|
2817
|
+
readonly CURRY_INGREDIENTS: 51;
|
|
2818
|
+
};
|
|
2819
|
+
declare const ITEM_FLING_EFFECTS: {
|
|
2820
|
+
readonly BADLY_POISON: 1;
|
|
2821
|
+
readonly BURN: 2;
|
|
2822
|
+
readonly BERRY_EFFECT: 3;
|
|
2823
|
+
readonly HERB_EFFECT: 4;
|
|
2824
|
+
readonly PARALYZE: 5;
|
|
2825
|
+
readonly POISON: 6;
|
|
2826
|
+
readonly FLINCH: 7;
|
|
2827
|
+
};
|
|
2828
|
+
declare const ITEM_POCKETS: {
|
|
2829
|
+
readonly MISC: 1;
|
|
2830
|
+
readonly MEDICINE: 2;
|
|
2831
|
+
readonly POKEBALLS: 3;
|
|
2832
|
+
readonly MACHINES: 4;
|
|
2833
|
+
readonly BERRIES: 5;
|
|
2834
|
+
readonly MAIL: 6;
|
|
2835
|
+
readonly BATTLE: 7;
|
|
2836
|
+
readonly KEY: 8;
|
|
2837
|
+
};
|
|
2838
|
+
|
|
2839
|
+
declare const index_BERRIES: typeof BERRIES;
|
|
2840
|
+
declare const index_BERRY_FIRMNESSES: typeof BERRY_FIRMNESSES;
|
|
2841
|
+
declare const index_BERRY_FLAVORS: typeof BERRY_FLAVORS;
|
|
2842
|
+
type index_BaseURL = BaseURL;
|
|
2843
|
+
declare const index_BaseURL: typeof BaseURL;
|
|
2844
|
+
declare const index_CONTEST_TYPES: typeof CONTEST_TYPES;
|
|
2845
|
+
declare const index_EGG_GROUPS: typeof EGG_GROUPS;
|
|
2846
|
+
declare const index_ENCOUNTER_CONDITIONS: typeof ENCOUNTER_CONDITIONS;
|
|
2847
|
+
declare const index_ENCOUNTER_CONDITION_VALUES: typeof ENCOUNTER_CONDITION_VALUES;
|
|
2848
|
+
declare const index_ENCOUNTER_METHODS: typeof ENCOUNTER_METHODS;
|
|
2849
|
+
declare const index_ENDPOINTS: typeof ENDPOINTS;
|
|
2850
|
+
declare const index_EVOLUTION_TRIGGERS: typeof EVOLUTION_TRIGGERS;
|
|
2851
|
+
declare const index_GENDERS: typeof GENDERS;
|
|
2852
|
+
declare const index_GENERATIONS: typeof GENERATIONS;
|
|
2853
|
+
declare const index_GROWTH_RATES: typeof GROWTH_RATES;
|
|
2854
|
+
declare const index_ITEM_ATTRIBUTES: typeof ITEM_ATTRIBUTES;
|
|
2855
|
+
declare const index_ITEM_CATEGORIES: typeof ITEM_CATEGORIES;
|
|
2856
|
+
declare const index_ITEM_FLING_EFFECTS: typeof ITEM_FLING_EFFECTS;
|
|
2857
|
+
declare const index_ITEM_POCKETS: typeof ITEM_POCKETS;
|
|
2858
|
+
declare const index_LANGUAGES: typeof LANGUAGES;
|
|
2859
|
+
declare const index_MOVE_AILMENTS: typeof MOVE_AILMENTS;
|
|
2860
|
+
declare const index_MOVE_BATTLE_STYLES: typeof MOVE_BATTLE_STYLES;
|
|
2861
|
+
declare const index_MOVE_CATEGORIES: typeof MOVE_CATEGORIES;
|
|
2862
|
+
declare const index_MOVE_DAMAGE_CLASSES: typeof MOVE_DAMAGE_CLASSES;
|
|
2863
|
+
declare const index_MOVE_LEARN_METHODS: typeof MOVE_LEARN_METHODS;
|
|
2864
|
+
declare const index_MOVE_TARGETS: typeof MOVE_TARGETS;
|
|
2865
|
+
declare const index_NATURES: typeof NATURES;
|
|
2866
|
+
declare const index_PAL_PARK_AREAS: typeof PAL_PARK_AREAS;
|
|
2867
|
+
declare const index_POKEATHLON_STATS: typeof POKEATHLON_STATS;
|
|
2868
|
+
declare const index_POKEDEXES: typeof POKEDEXES;
|
|
2869
|
+
declare const index_POKEMON_COLORS: typeof POKEMON_COLORS;
|
|
2870
|
+
declare const index_POKEMON_HABITATS: typeof POKEMON_HABITATS;
|
|
2871
|
+
declare const index_POKEMON_SHAPES: typeof POKEMON_SHAPES;
|
|
2872
|
+
declare const index_REGIONS: typeof REGIONS;
|
|
2873
|
+
declare const index_STATS: typeof STATS;
|
|
2874
|
+
declare const index_TYPES: typeof TYPES;
|
|
2875
|
+
declare const index_VERSIONS: typeof VERSIONS;
|
|
2876
|
+
declare const index_VERSION_GROUPS: typeof VERSION_GROUPS;
|
|
2877
|
+
declare namespace index {
|
|
2878
|
+
export {
|
|
2879
|
+
index_BERRIES as BERRIES,
|
|
2880
|
+
index_BERRY_FIRMNESSES as BERRY_FIRMNESSES,
|
|
2881
|
+
index_BERRY_FLAVORS as BERRY_FLAVORS,
|
|
2882
|
+
index_BaseURL as BaseURL,
|
|
2883
|
+
index_CONTEST_TYPES as CONTEST_TYPES,
|
|
2884
|
+
index_EGG_GROUPS as EGG_GROUPS,
|
|
2885
|
+
index_ENCOUNTER_CONDITIONS as ENCOUNTER_CONDITIONS,
|
|
2886
|
+
index_ENCOUNTER_CONDITION_VALUES as ENCOUNTER_CONDITION_VALUES,
|
|
2887
|
+
index_ENCOUNTER_METHODS as ENCOUNTER_METHODS,
|
|
2888
|
+
index_ENDPOINTS as ENDPOINTS,
|
|
2889
|
+
index_EVOLUTION_TRIGGERS as EVOLUTION_TRIGGERS,
|
|
2890
|
+
index_GENDERS as GENDERS,
|
|
2891
|
+
index_GENERATIONS as GENERATIONS,
|
|
2892
|
+
index_GROWTH_RATES as GROWTH_RATES,
|
|
2893
|
+
index_ITEM_ATTRIBUTES as ITEM_ATTRIBUTES,
|
|
2894
|
+
index_ITEM_CATEGORIES as ITEM_CATEGORIES,
|
|
2895
|
+
index_ITEM_FLING_EFFECTS as ITEM_FLING_EFFECTS,
|
|
2896
|
+
index_ITEM_POCKETS as ITEM_POCKETS,
|
|
2897
|
+
index_LANGUAGES as LANGUAGES,
|
|
2898
|
+
index_MOVE_AILMENTS as MOVE_AILMENTS,
|
|
2899
|
+
index_MOVE_BATTLE_STYLES as MOVE_BATTLE_STYLES,
|
|
2900
|
+
index_MOVE_CATEGORIES as MOVE_CATEGORIES,
|
|
2901
|
+
index_MOVE_DAMAGE_CLASSES as MOVE_DAMAGE_CLASSES,
|
|
2902
|
+
index_MOVE_LEARN_METHODS as MOVE_LEARN_METHODS,
|
|
2903
|
+
index_MOVE_TARGETS as MOVE_TARGETS,
|
|
2904
|
+
index_NATURES as NATURES,
|
|
2905
|
+
index_PAL_PARK_AREAS as PAL_PARK_AREAS,
|
|
2906
|
+
index_POKEATHLON_STATS as POKEATHLON_STATS,
|
|
2907
|
+
index_POKEDEXES as POKEDEXES,
|
|
2908
|
+
index_POKEMON_COLORS as POKEMON_COLORS,
|
|
2909
|
+
index_POKEMON_HABITATS as POKEMON_HABITATS,
|
|
2910
|
+
index_POKEMON_SHAPES as POKEMON_SHAPES,
|
|
2911
|
+
index_REGIONS as REGIONS,
|
|
2912
|
+
index_STATS as STATS,
|
|
2913
|
+
index_TYPES as TYPES,
|
|
2914
|
+
index_VERSIONS as VERSIONS,
|
|
2915
|
+
index_VERSION_GROUPS as VERSION_GROUPS,
|
|
2916
|
+
};
|
|
2917
|
+
}
|
|
2918
|
+
|
|
2919
|
+
type ObjectValue<T> = T[keyof T];
|
|
2920
|
+
type Endpoint = ObjectValue<typeof ENDPOINTS>;
|
|
2152
2921
|
/**
|
|
2153
2922
|
* ## Client Args
|
|
2154
2923
|
* Used to pass optional configuration for logging and cache to the clients.
|
|
@@ -2176,6 +2945,7 @@ interface ClientArgs {
|
|
|
2176
2945
|
declare class BaseClient {
|
|
2177
2946
|
protected api: AxiosCacheInstance;
|
|
2178
2947
|
constructor(clientOptions?: ClientArgs);
|
|
2948
|
+
protected getListURL(endpoint: Endpoint, offset?: number, limit?: number): string;
|
|
2179
2949
|
}
|
|
2180
2950
|
|
|
2181
2951
|
/**
|
|
@@ -3267,807 +4037,4 @@ declare class MainClient extends BaseClient {
|
|
|
3267
4037
|
constructor(clientOptions?: ClientArgs);
|
|
3268
4038
|
}
|
|
3269
4039
|
|
|
3270
|
-
|
|
3271
|
-
REST = "https://pokeapi.co/api/v2"
|
|
3272
|
-
}
|
|
3273
|
-
|
|
3274
|
-
/**
|
|
3275
|
-
* Endpoints of the PokéAPI
|
|
3276
|
-
*/
|
|
3277
|
-
declare enum Endpoints {
|
|
3278
|
-
BERRY = "/berry",
|
|
3279
|
-
BERRY_FIRMNESS = "/berry-firmness",
|
|
3280
|
-
BERRY_FLAVOR = "/berry-flavor",
|
|
3281
|
-
CONTEST_TYPE = "/contest-type",
|
|
3282
|
-
CONTEST_EFFECT = "/contest-effect",
|
|
3283
|
-
SUPER_CONTEST_EFFECT = "/super-contest-effect",
|
|
3284
|
-
ENCOUNTER_METHOD = "/encounter-method",
|
|
3285
|
-
ENCOUNTER_CONDITION = "/encounter-condition",
|
|
3286
|
-
ENCOUNTER_CONDITION_VALUE = "/encounter-condition-value",
|
|
3287
|
-
EVOLUTION_CHAIN = "/evolution-chain",
|
|
3288
|
-
EVOLUTION_TRIGGER = "/evolution-trigger",
|
|
3289
|
-
GENERATION = "/generation",
|
|
3290
|
-
POKEDEX = "/pokedex",
|
|
3291
|
-
VERSION = "/version",
|
|
3292
|
-
VERSION_GROUP = "/version-group",
|
|
3293
|
-
ITEM = "/item",
|
|
3294
|
-
ITEM_ATTRIBUTE = "/item-attribute",
|
|
3295
|
-
ITEM_CATEGORY = "/item-category",
|
|
3296
|
-
ITEM_FLING_EFFECT = "/item-fling-effect",
|
|
3297
|
-
ITEM_POCKET = "/item-pocket",
|
|
3298
|
-
LOCATION = "/location",
|
|
3299
|
-
LOCATION_AREA = "/location-area",
|
|
3300
|
-
PALPARK_AREA = "/pal-park-area",
|
|
3301
|
-
REGION = "/region",
|
|
3302
|
-
MACHINE = "/machine",
|
|
3303
|
-
MOVE = "/move",
|
|
3304
|
-
MOVE_AILMENT = "/move-ailment",
|
|
3305
|
-
MOVE_BATTLE_STYLE = "/move-battle-style",
|
|
3306
|
-
MOVE_CATEGORY = "/move-category",
|
|
3307
|
-
MOVE_DAMAGE_CLASS = "/move-damage-class",
|
|
3308
|
-
MOVE_LEARN_METHOD = "/move-learn-method",
|
|
3309
|
-
MOVE_TARGET = "/move-target",
|
|
3310
|
-
ABILITY = "/ability",
|
|
3311
|
-
CHARACTERISTIC = "/characteristic",
|
|
3312
|
-
EGG_GROUP = "/egg-group",
|
|
3313
|
-
GENDER = "/gender",
|
|
3314
|
-
GROWTH_RATE = "/growth-rate",
|
|
3315
|
-
NATURE = "/nature",
|
|
3316
|
-
POKEATHLON_STAT = "/pokeathlon-stat",
|
|
3317
|
-
POKEMON = "/pokemon",
|
|
3318
|
-
POKEMON_LOCATION_AREA = "/pokemon/:id/encounters",
|
|
3319
|
-
POKEMON_COLOR = "/pokemon-color",
|
|
3320
|
-
POKEMON_FORM = "/pokemon-form",
|
|
3321
|
-
POKEMON_HABITAT = "/pokemon-habitat",
|
|
3322
|
-
POKEMON_SHAPE = "/pokemon-shape",
|
|
3323
|
-
POKEMON_SPECIES = "/pokemon-species",
|
|
3324
|
-
STAT = "/stat",
|
|
3325
|
-
TYPE = "/type",
|
|
3326
|
-
LANGUAGE = "/language"
|
|
3327
|
-
}
|
|
3328
|
-
|
|
3329
|
-
/** Enum of Berries (NAME - ID) */
|
|
3330
|
-
declare enum Berries {
|
|
3331
|
-
CHERI = 1,
|
|
3332
|
-
CHESTO = 2,
|
|
3333
|
-
PECHA = 3,
|
|
3334
|
-
RAWST = 4,
|
|
3335
|
-
ASPEAR = 5,
|
|
3336
|
-
LEPPA = 6,
|
|
3337
|
-
ORAN = 7,
|
|
3338
|
-
PERSIM = 8,
|
|
3339
|
-
LUM = 9,
|
|
3340
|
-
SITRUS = 10,
|
|
3341
|
-
FIGY = 11,
|
|
3342
|
-
WIKI = 12,
|
|
3343
|
-
MAGO = 13,
|
|
3344
|
-
AGUAV = 14,
|
|
3345
|
-
IAPAPA = 15,
|
|
3346
|
-
RAZZ = 16,
|
|
3347
|
-
BLUK = 17,
|
|
3348
|
-
NANAB = 18,
|
|
3349
|
-
WEPEAR = 19,
|
|
3350
|
-
PINAP = 20,
|
|
3351
|
-
POMEG = 21,
|
|
3352
|
-
KELPSY = 22,
|
|
3353
|
-
QUALOT = 23,
|
|
3354
|
-
HONDEW = 24,
|
|
3355
|
-
GREPA = 25,
|
|
3356
|
-
TAMATO = 26,
|
|
3357
|
-
CORNN = 27,
|
|
3358
|
-
MAGOST = 28,
|
|
3359
|
-
RABUTA = 29,
|
|
3360
|
-
NOMEL = 30,
|
|
3361
|
-
SPELON = 31,
|
|
3362
|
-
PAMTRE = 32,
|
|
3363
|
-
WATMEL = 33,
|
|
3364
|
-
DURIN = 34,
|
|
3365
|
-
BELUE = 35,
|
|
3366
|
-
OCCA = 36,
|
|
3367
|
-
PASSHO = 37,
|
|
3368
|
-
WACAN = 38,
|
|
3369
|
-
RINDO = 39,
|
|
3370
|
-
YACHE = 40,
|
|
3371
|
-
CHOPLE = 41,
|
|
3372
|
-
KEBIA = 42,
|
|
3373
|
-
SHUCA = 43,
|
|
3374
|
-
COBA = 44,
|
|
3375
|
-
PAYAPA = 45,
|
|
3376
|
-
TANGA = 46,
|
|
3377
|
-
CHARTI = 47,
|
|
3378
|
-
KASIB = 48,
|
|
3379
|
-
HABAN = 49,
|
|
3380
|
-
COLBUR = 50,
|
|
3381
|
-
BABIRI = 51,
|
|
3382
|
-
CHILAN = 52,
|
|
3383
|
-
LIECHI = 53,
|
|
3384
|
-
GANLON = 54,
|
|
3385
|
-
SALAC = 55,
|
|
3386
|
-
PETAYA = 56,
|
|
3387
|
-
APICOT = 57,
|
|
3388
|
-
LANSAT = 58,
|
|
3389
|
-
STARF = 59,
|
|
3390
|
-
ENIGMA = 60,
|
|
3391
|
-
MICLE = 61,
|
|
3392
|
-
CUSTAP = 62,
|
|
3393
|
-
JABOCA = 63,
|
|
3394
|
-
ROWAP = 64
|
|
3395
|
-
}
|
|
3396
|
-
/** Enum of Berry Firmnesses (NAME - ID) */
|
|
3397
|
-
declare enum BerryFirmnesses {
|
|
3398
|
-
VERY_SOFT = 1,
|
|
3399
|
-
SOFT = 2,
|
|
3400
|
-
HARD = 3,
|
|
3401
|
-
VERY_HARD = 4,
|
|
3402
|
-
SUPER_HARD = 5
|
|
3403
|
-
}
|
|
3404
|
-
declare enum BerryFlavors {
|
|
3405
|
-
SPICY = 1,
|
|
3406
|
-
DRY = 2,
|
|
3407
|
-
SWEET = 3,
|
|
3408
|
-
BITTER = 4,
|
|
3409
|
-
SOUR = 5
|
|
3410
|
-
}
|
|
3411
|
-
|
|
3412
|
-
declare enum ContestTypes {
|
|
3413
|
-
COOL = 1,
|
|
3414
|
-
BEAUTY = 2,
|
|
3415
|
-
CUTE = 3,
|
|
3416
|
-
SMART = 4,
|
|
3417
|
-
TOUGH = 5
|
|
3418
|
-
}
|
|
3419
|
-
|
|
3420
|
-
declare enum EncounterMethods {
|
|
3421
|
-
WALK = 1,
|
|
3422
|
-
OLD_ROD = 2,
|
|
3423
|
-
GOOD_ROD = 3,
|
|
3424
|
-
SUPER_ROD = 4,
|
|
3425
|
-
SURF = 5,
|
|
3426
|
-
ROCK_SMASH = 6,
|
|
3427
|
-
HEADBUTT = 7,
|
|
3428
|
-
DARK_GRASS = 8,
|
|
3429
|
-
GRASS_SPOTS = 9,
|
|
3430
|
-
CAVE_SPOTS = 10,
|
|
3431
|
-
BRIDGE_SPOTS = 11,
|
|
3432
|
-
SUPER_ROD_SPOTS = 12,
|
|
3433
|
-
SURF_SPOTS = 13,
|
|
3434
|
-
YELLOW_FLOWERS = 14,
|
|
3435
|
-
PURPLE_FLOWERS = 15,
|
|
3436
|
-
RED_FLOWERS = 16,
|
|
3437
|
-
ROUGH_TERRAIN = 17,
|
|
3438
|
-
GIFT = 18,
|
|
3439
|
-
GIFT_EGG = 19,
|
|
3440
|
-
ONLY_ONE = 20,
|
|
3441
|
-
POKEFLUTE = 21,
|
|
3442
|
-
HEADBUTT_LOW = 22,
|
|
3443
|
-
HEADBUTT_NORMAL = 23,
|
|
3444
|
-
HEADBUT_HIGH = 24,
|
|
3445
|
-
SQUIRT_BOTTLE = 25,
|
|
3446
|
-
WAILMER_PAIL = 26,
|
|
3447
|
-
SEAWEED = 27
|
|
3448
|
-
}
|
|
3449
|
-
declare enum EncounterConditions {
|
|
3450
|
-
SWARM = 1,
|
|
3451
|
-
TIME = 2,
|
|
3452
|
-
RADAR = 3,
|
|
3453
|
-
SLOT2 = 4,
|
|
3454
|
-
RADIO = 5,
|
|
3455
|
-
SEASON = 6,
|
|
3456
|
-
STARTER = 7,
|
|
3457
|
-
TV_OPTION = 8,
|
|
3458
|
-
STORY_PROGRESS = 9,
|
|
3459
|
-
OTHER = 10
|
|
3460
|
-
}
|
|
3461
|
-
declare enum EncounterConditionValues {
|
|
3462
|
-
SWARM_YES = 1,
|
|
3463
|
-
SWARM_NO = 2,
|
|
3464
|
-
TIME_MORNING = 3,
|
|
3465
|
-
TIME_DAY = 4,
|
|
3466
|
-
TIME_NIGHT = 5,
|
|
3467
|
-
RADAR_ON = 6,
|
|
3468
|
-
RADAR_OFF = 7,
|
|
3469
|
-
SLOT2_NONE = 8,
|
|
3470
|
-
SLOT2_RUBY = 9,
|
|
3471
|
-
SLOT2_SAPHIRE = 10,
|
|
3472
|
-
SLOT2_EMERALD = 11,
|
|
3473
|
-
SLOT2_FIRERED = 12,
|
|
3474
|
-
SLOT2_LEAFGREEN = 13,
|
|
3475
|
-
RADIO_OFF = 14,
|
|
3476
|
-
RADIO_HOEN = 15,
|
|
3477
|
-
RADIO_SINNOH = 16,
|
|
3478
|
-
SEASON_SPRING = 17,
|
|
3479
|
-
SEASON_SUMMER = 18,
|
|
3480
|
-
SWASON_AUTUMN = 19,
|
|
3481
|
-
SEASON_WINTER = 20,
|
|
3482
|
-
STARTER_BULBASAUR = 21,
|
|
3483
|
-
STARTER_SQUIRTLE = 22,
|
|
3484
|
-
STARTER_CHARMANDER = 23,
|
|
3485
|
-
STARTER_CHESPIN = 24,
|
|
3486
|
-
STARTER_FENNEKIN = 25,
|
|
3487
|
-
STARTER_FROAKIE = 26,
|
|
3488
|
-
TV_OPTION_BLUE = 27,
|
|
3489
|
-
TV_OPTION_RED = 28,
|
|
3490
|
-
STORY_PROGRESS_AWAKENED_BEASTS = 29,
|
|
3491
|
-
STORY_PROGRESS_BEAT_GALACTIC_CORONET = 30,
|
|
3492
|
-
STORY_PROGRESS_OAK_ETERNA_CITY = 31,
|
|
3493
|
-
STORY_PROGRESS_OAK_VERMILION_COPYCAT = 32,
|
|
3494
|
-
STORY_PROGRESS_MET_TORNADUS_THUNDURUS = 33,
|
|
3495
|
-
STORY_PROGRESS_BEAT_ELITE_FOUR_ROUND_TWO = 34,
|
|
3496
|
-
STORY_PROGRESS_HALL_OF_FAME = 35,
|
|
3497
|
-
STORY_PROGRESS_NONE = 36,
|
|
3498
|
-
STORY_PROGRESS_NATIONAL_DEX = 37,
|
|
3499
|
-
OTHER_NONE = 38,
|
|
3500
|
-
OTHER_SNORLAX_LL_BEAT_LEAGUE = 39
|
|
3501
|
-
}
|
|
3502
|
-
|
|
3503
|
-
declare enum EvolutionTriggers {
|
|
3504
|
-
LEVEL_UP = 1,
|
|
3505
|
-
TRADE = 2,
|
|
3506
|
-
USE_ITEM = 3,
|
|
3507
|
-
SHED = 4,
|
|
3508
|
-
SPIN = 5,
|
|
3509
|
-
TOWER_OF_DARKNESS = 6,
|
|
3510
|
-
TOWER_OF_WATER = 7,
|
|
3511
|
-
THREE_CRITICAL_HITS = 8,
|
|
3512
|
-
TAKE_DAMAGE = 9,
|
|
3513
|
-
OTHER = 10
|
|
3514
|
-
}
|
|
3515
|
-
|
|
3516
|
-
declare enum Generations {
|
|
3517
|
-
GENERATION_I = 1,
|
|
3518
|
-
GENERATION_II = 2,
|
|
3519
|
-
GENERATION_III = 3,
|
|
3520
|
-
GENERATION_IV = 4,
|
|
3521
|
-
GENERATION_V = 5,
|
|
3522
|
-
GENERATION_VI = 6,
|
|
3523
|
-
GENERATION_VII = 7,
|
|
3524
|
-
GENERATION_VIII = 8
|
|
3525
|
-
}
|
|
3526
|
-
declare enum Pokedexes {
|
|
3527
|
-
NATIONAL = 1,
|
|
3528
|
-
KANTO = 2,
|
|
3529
|
-
ORIGINAL_JOHTO = 3,
|
|
3530
|
-
HOENN = 4,
|
|
3531
|
-
ORIGINAL_SINNOH = 5,
|
|
3532
|
-
EXTENDED_SINNOH = 6,
|
|
3533
|
-
UPDATED_JOHTO = 7,
|
|
3534
|
-
ORIGINAL_UNOVA = 8,
|
|
3535
|
-
UPDATED_UNOVA = 9,
|
|
3536
|
-
CONQUEST_GALLERY = 11,
|
|
3537
|
-
KALOS_CENTRAL = 12,
|
|
3538
|
-
KALOS_COASTAL = 13,
|
|
3539
|
-
KALOS_MONTAIN = 14,
|
|
3540
|
-
UPDATED_HOENN = 15,
|
|
3541
|
-
ORIGINAL_ALOLA = 16,
|
|
3542
|
-
ORIGINAL_MELEMELE = 17,
|
|
3543
|
-
ORIGINAL_AKALA = 18,
|
|
3544
|
-
ORIGINAL_ULAULA = 19,
|
|
3545
|
-
ORIGINAL_PONI = 20,
|
|
3546
|
-
UPDATED_ALOLA = 21,
|
|
3547
|
-
UPDATED_MELEMELE = 22,
|
|
3548
|
-
UPDATED_AKALA = 23,
|
|
3549
|
-
UPDATED_ULAULA = 24,
|
|
3550
|
-
UPDATED_PONI = 25,
|
|
3551
|
-
UPDATED_KANTO = 26,
|
|
3552
|
-
GALAR = 27,
|
|
3553
|
-
ISLE_OF_ARMOR = 28,
|
|
3554
|
-
CROWN_TUNDRA = 29
|
|
3555
|
-
}
|
|
3556
|
-
declare enum Versions {
|
|
3557
|
-
RED = 1,
|
|
3558
|
-
BLUE = 2,
|
|
3559
|
-
YELLOW = 3,
|
|
3560
|
-
GOLD = 4,
|
|
3561
|
-
SILVER = 5,
|
|
3562
|
-
CRYSTAL = 6,
|
|
3563
|
-
RUBY = 7,
|
|
3564
|
-
SAPPHIRE = 8,
|
|
3565
|
-
EMERALD = 9,
|
|
3566
|
-
FIRERED = 10,
|
|
3567
|
-
LEAFGREEN = 11,
|
|
3568
|
-
DIAMOND = 12,
|
|
3569
|
-
PEARL = 13,
|
|
3570
|
-
PLATINUM = 14,
|
|
3571
|
-
HEARTGOLD = 15,
|
|
3572
|
-
SOULSILVER = 16,
|
|
3573
|
-
BLACK = 17,
|
|
3574
|
-
WHITE = 18,
|
|
3575
|
-
COLOSSEUM = 19,
|
|
3576
|
-
XD = 20,
|
|
3577
|
-
BLACK_2 = 21,
|
|
3578
|
-
WHITE_2 = 22,
|
|
3579
|
-
X = 23,
|
|
3580
|
-
Y = 24,
|
|
3581
|
-
OMEGA_RUBY = 25,
|
|
3582
|
-
ALPHA_SAPPHIRE = 26,
|
|
3583
|
-
SUN = 27,
|
|
3584
|
-
MOON = 28,
|
|
3585
|
-
ULTRA_SUN = 29,
|
|
3586
|
-
ULTRA_MOON = 30,
|
|
3587
|
-
LETS_GO_PIKACHU = 31,
|
|
3588
|
-
LETS_GO_EEVEE = 32,
|
|
3589
|
-
SWORD = 33,
|
|
3590
|
-
SHIELD = 34,
|
|
3591
|
-
THE_ISLE_OF_ARMOR = 35,
|
|
3592
|
-
THE_CROWN_TUNDRA = 36,
|
|
3593
|
-
BRILLIANT_DIAMOND = 37,
|
|
3594
|
-
SHINING_PEARL = 38,
|
|
3595
|
-
LEGENDS_ARCEUS = 39
|
|
3596
|
-
}
|
|
3597
|
-
declare enum VersionGroups {
|
|
3598
|
-
RED_BLUE = 1,
|
|
3599
|
-
YELLOW = 2,
|
|
3600
|
-
GOLD_SILVER = 3,
|
|
3601
|
-
CRYSTAL = 4,
|
|
3602
|
-
RUBY_SAPPHIRE = 5,
|
|
3603
|
-
EMERALD = 6,
|
|
3604
|
-
FIRERED_LEAFGREEN = 7,
|
|
3605
|
-
DIAMOND_PEARL = 8,
|
|
3606
|
-
PLATINUM = 9,
|
|
3607
|
-
HEARTGOLD_SOULSILVER = 10,
|
|
3608
|
-
BLACK_WHITE = 11,
|
|
3609
|
-
COLOSSEUM = 12,
|
|
3610
|
-
XD = 13,
|
|
3611
|
-
BLACK_2_WHITE_2 = 14,
|
|
3612
|
-
X_Y = 15,
|
|
3613
|
-
OMEGA_RUBY_ALPHA_SAPPHIRE = 16,
|
|
3614
|
-
SUN_MOON = 17,
|
|
3615
|
-
ULTRA_SUN_ULTRA_MOON = 18,
|
|
3616
|
-
LETS_GO = 19,
|
|
3617
|
-
SWORD_SHIELD = 20,
|
|
3618
|
-
THE_ISLE_OF_ARMOR = 21,
|
|
3619
|
-
THE_CROWN_TUNDRA = 22,
|
|
3620
|
-
BRILLIANT_DIAMOND_AND_SHINING_PEARL = 23,
|
|
3621
|
-
LEGENDS_ARCEUS = 24
|
|
3622
|
-
}
|
|
3623
|
-
|
|
3624
|
-
declare enum Regions {
|
|
3625
|
-
KANTO = 1,
|
|
3626
|
-
JOHTO = 2,
|
|
3627
|
-
HOENN = 3,
|
|
3628
|
-
SINNOH = 4,
|
|
3629
|
-
UNOVA = 5,
|
|
3630
|
-
KALOS = 6,
|
|
3631
|
-
ALOLA = 7,
|
|
3632
|
-
GALAR = 8,
|
|
3633
|
-
HISUI = 9
|
|
3634
|
-
}
|
|
3635
|
-
declare enum PalParkAreas {
|
|
3636
|
-
FOREST = 1,
|
|
3637
|
-
FIELD = 2,
|
|
3638
|
-
MOUNTAIN = 3,
|
|
3639
|
-
POND = 4,
|
|
3640
|
-
SEA = 5
|
|
3641
|
-
}
|
|
3642
|
-
|
|
3643
|
-
declare enum MoveAilmtents {
|
|
3644
|
-
UNKNOWN = -1,
|
|
3645
|
-
NONE = 0,
|
|
3646
|
-
PARALYSIS = 1,
|
|
3647
|
-
SLEEP = 2,
|
|
3648
|
-
FREEZE = 3,
|
|
3649
|
-
BURN = 4,
|
|
3650
|
-
POISON = 5,
|
|
3651
|
-
CONFUSION = 6,
|
|
3652
|
-
INFATUATION = 7,
|
|
3653
|
-
TRAP = 8,
|
|
3654
|
-
NIGHTMARE = 9,
|
|
3655
|
-
TORMENT = 12,
|
|
3656
|
-
DISABLE = 13,
|
|
3657
|
-
YAWN = 14,
|
|
3658
|
-
HEAL_BLOCK = 15,
|
|
3659
|
-
NO_TYPE_IMMUNITY = 17,
|
|
3660
|
-
LEECH_SEED = 18,
|
|
3661
|
-
EMBARGO = 19,
|
|
3662
|
-
PERISH_SONG = 20,
|
|
3663
|
-
INGRAIN = 21,
|
|
3664
|
-
SILENCE = 24,
|
|
3665
|
-
TAR_SHOT = 42
|
|
3666
|
-
}
|
|
3667
|
-
declare enum MoveBattleStyles {
|
|
3668
|
-
ATTACK = 1,
|
|
3669
|
-
DEFENSE = 2,
|
|
3670
|
-
SUPPORT = 3
|
|
3671
|
-
}
|
|
3672
|
-
declare enum MoveCategories {
|
|
3673
|
-
DAMAGE = 0,
|
|
3674
|
-
AILMENT = 1,
|
|
3675
|
-
NET_GOOD_STATS = 2,
|
|
3676
|
-
HEAL = 3,
|
|
3677
|
-
DAMAGE_AILMENT = 4,
|
|
3678
|
-
SWAGGER = 5,
|
|
3679
|
-
DAMAGE_LOWER = 6,
|
|
3680
|
-
DAMAGE_RAISE = 7,
|
|
3681
|
-
DAMAGE_HEAL = 8,
|
|
3682
|
-
OHKO = 9,
|
|
3683
|
-
WHOLE_FIELD_EFFECT = 10,
|
|
3684
|
-
FIELD_EFFECT = 11,
|
|
3685
|
-
FORCE_SWITCH = 12,
|
|
3686
|
-
UNIQUE = 13
|
|
3687
|
-
}
|
|
3688
|
-
declare enum MoveDamageClasses {
|
|
3689
|
-
STATUS = 1,
|
|
3690
|
-
PHYSICAL = 2,
|
|
3691
|
-
SPECIAL = 3
|
|
3692
|
-
}
|
|
3693
|
-
declare enum MoveLearnMethods {
|
|
3694
|
-
LEVEL_UP = 1,
|
|
3695
|
-
EGG = 2,
|
|
3696
|
-
TUTOR = 3,
|
|
3697
|
-
MACHINE = 4,
|
|
3698
|
-
STADIUM_SURFING_PIKACHU = 5,
|
|
3699
|
-
LIGHT_BALL_EGG = 6,
|
|
3700
|
-
COLOSSEUM_PURIFICATION = 7,
|
|
3701
|
-
XD_SHADOW = 8,
|
|
3702
|
-
XD_PURIFICATION = 9,
|
|
3703
|
-
FORM_CHANGE = 10
|
|
3704
|
-
}
|
|
3705
|
-
declare enum MoveTargets {
|
|
3706
|
-
SPECIFIC_MOVE = 1,
|
|
3707
|
-
SELECTED_POKEMON_ME_FIRST = 2,
|
|
3708
|
-
ALLY = 3,
|
|
3709
|
-
USERS_FIELD = 4,
|
|
3710
|
-
USER_OR_ALLY = 5,
|
|
3711
|
-
OPPONENTS_FIELD = 6,
|
|
3712
|
-
USER = 7,
|
|
3713
|
-
RANDOM_OPPONENT = 8,
|
|
3714
|
-
ALL_OTHER_POKEMON = 9,
|
|
3715
|
-
SELECTED_POKEMON = 10,
|
|
3716
|
-
ALL_OPPONENTS = 11,
|
|
3717
|
-
ENTIRE_FIELD = 12,
|
|
3718
|
-
USER_AND_ALIES = 13,
|
|
3719
|
-
ALL_POKEMON = 14,
|
|
3720
|
-
ALL_ALLIES = 15
|
|
3721
|
-
}
|
|
3722
|
-
|
|
3723
|
-
declare enum EggGroups {
|
|
3724
|
-
MONSTER = 1,
|
|
3725
|
-
WATER1 = 2,
|
|
3726
|
-
BUG = 3,
|
|
3727
|
-
FLYING = 4,
|
|
3728
|
-
GROUND = 5,
|
|
3729
|
-
FAIRY = 6,
|
|
3730
|
-
PLANT = 7,
|
|
3731
|
-
HUMANSHAPE = 8,
|
|
3732
|
-
WATER3 = 9,
|
|
3733
|
-
MINERAL = 10,
|
|
3734
|
-
INDETERMINATE = 11,
|
|
3735
|
-
WATER2 = 12,
|
|
3736
|
-
DITTO = 13,
|
|
3737
|
-
DRAGON = 14,
|
|
3738
|
-
NO_EGGS = 15
|
|
3739
|
-
}
|
|
3740
|
-
declare enum Genders {
|
|
3741
|
-
FEMALE = 1,
|
|
3742
|
-
MALE = 2,
|
|
3743
|
-
GENDERLESS = 3
|
|
3744
|
-
}
|
|
3745
|
-
declare enum GrowthRates {
|
|
3746
|
-
SLOW = 1,
|
|
3747
|
-
MEDIUM = 2,
|
|
3748
|
-
FAST = 3,
|
|
3749
|
-
MEDIUM_SLOW = 4,
|
|
3750
|
-
SLOW_THEN_VERY_FAST = 5,
|
|
3751
|
-
FAST_THEN_VERY_SLOW = 6
|
|
3752
|
-
}
|
|
3753
|
-
declare enum Natures {
|
|
3754
|
-
HARDY = 1,
|
|
3755
|
-
BOLD = 2,
|
|
3756
|
-
MODEST = 3,
|
|
3757
|
-
CALM = 4,
|
|
3758
|
-
TIMID = 5,
|
|
3759
|
-
LONELY = 6,
|
|
3760
|
-
DOCILE = 7,
|
|
3761
|
-
MILD = 8,
|
|
3762
|
-
GENTLE = 9,
|
|
3763
|
-
HASTY = 10,
|
|
3764
|
-
ADAMANT = 11,
|
|
3765
|
-
IMPISH = 12,
|
|
3766
|
-
BASHFUL = 13,
|
|
3767
|
-
CAREFUL = 14,
|
|
3768
|
-
RASH = 15,
|
|
3769
|
-
JOLLY = 16,
|
|
3770
|
-
NAUGHTY = 17,
|
|
3771
|
-
LAX = 18,
|
|
3772
|
-
QUIRKY = 19,
|
|
3773
|
-
NAIVE = 20,
|
|
3774
|
-
BRAVE = 21,
|
|
3775
|
-
RELAXED = 22,
|
|
3776
|
-
QUIET = 23,
|
|
3777
|
-
SASSY = 24,
|
|
3778
|
-
SERIOUS = 25
|
|
3779
|
-
}
|
|
3780
|
-
declare enum PokeathlonStats {
|
|
3781
|
-
SPEED = 1,
|
|
3782
|
-
POWER = 2,
|
|
3783
|
-
SKILL = 3,
|
|
3784
|
-
STAMINA = 4,
|
|
3785
|
-
JUMP = 5
|
|
3786
|
-
}
|
|
3787
|
-
declare enum PokemonColors {
|
|
3788
|
-
BLACK = 1,
|
|
3789
|
-
BLUE = 2,
|
|
3790
|
-
BROWN = 3,
|
|
3791
|
-
GRAY = 4,
|
|
3792
|
-
GREEN = 5,
|
|
3793
|
-
PINK = 6,
|
|
3794
|
-
PURPLE = 7,
|
|
3795
|
-
RED = 8,
|
|
3796
|
-
WHITE = 9,
|
|
3797
|
-
YELLOW = 10
|
|
3798
|
-
}
|
|
3799
|
-
declare enum PokemonHabitats {
|
|
3800
|
-
CAVE = 1,
|
|
3801
|
-
FOREST = 2,
|
|
3802
|
-
GRASSLAND = 3,
|
|
3803
|
-
MONTAIN = 4,
|
|
3804
|
-
RARE = 5,
|
|
3805
|
-
ROUGH_TERRAIN = 6,
|
|
3806
|
-
SEA = 7,
|
|
3807
|
-
URBAN = 8,
|
|
3808
|
-
WATERS_EDGE = 9
|
|
3809
|
-
}
|
|
3810
|
-
declare enum PokemonShapes {
|
|
3811
|
-
BALL = 1,
|
|
3812
|
-
SQUIGGLE = 2,
|
|
3813
|
-
FISH = 3,
|
|
3814
|
-
ARMS = 4,
|
|
3815
|
-
BLOB = 5,
|
|
3816
|
-
UPRIGHT = 6,
|
|
3817
|
-
LEGS = 7,
|
|
3818
|
-
QUADRUPED = 8,
|
|
3819
|
-
WINGS = 9,
|
|
3820
|
-
TENTACLES = 10,
|
|
3821
|
-
HEADS = 11,
|
|
3822
|
-
HUMANOID = 12,
|
|
3823
|
-
BUG_WINGS = 13,
|
|
3824
|
-
ARMOR = 14
|
|
3825
|
-
}
|
|
3826
|
-
declare enum Stats {
|
|
3827
|
-
HP = 1,
|
|
3828
|
-
ATTACK = 2,
|
|
3829
|
-
DEFENSE = 3,
|
|
3830
|
-
SPECIAL_ATTACK = 4,
|
|
3831
|
-
SPECIAL_DEFENSE = 5,
|
|
3832
|
-
SPEED = 6,
|
|
3833
|
-
ACCURACY = 7,
|
|
3834
|
-
EVASION = 8
|
|
3835
|
-
}
|
|
3836
|
-
declare enum Types {
|
|
3837
|
-
NORMAL = 1,
|
|
3838
|
-
FIGHTING = 2,
|
|
3839
|
-
FLYING = 3,
|
|
3840
|
-
POISON = 4,
|
|
3841
|
-
GROUND = 5,
|
|
3842
|
-
ROCK = 6,
|
|
3843
|
-
BUG = 7,
|
|
3844
|
-
GHOST = 8,
|
|
3845
|
-
STEEL = 9,
|
|
3846
|
-
FIRE = 10,
|
|
3847
|
-
WATER = 11,
|
|
3848
|
-
GRASS = 12,
|
|
3849
|
-
ELECTRIC = 13,
|
|
3850
|
-
PSYCHIC = 14,
|
|
3851
|
-
ICE = 15,
|
|
3852
|
-
DRAGON = 16,
|
|
3853
|
-
DARK = 17,
|
|
3854
|
-
FAIRY = 18,
|
|
3855
|
-
UNKNOWN = 10001,
|
|
3856
|
-
SHADOW = 10002
|
|
3857
|
-
}
|
|
3858
|
-
|
|
3859
|
-
declare enum Languages {
|
|
3860
|
-
JA_HRKT = 1,
|
|
3861
|
-
ROOMAJI = 2,
|
|
3862
|
-
KO = 3,
|
|
3863
|
-
ZH_HANT = 4,
|
|
3864
|
-
FR = 5,
|
|
3865
|
-
DE = 6,
|
|
3866
|
-
ES = 7,
|
|
3867
|
-
IT = 8,
|
|
3868
|
-
EN = 9,
|
|
3869
|
-
CS = 10,
|
|
3870
|
-
JA = 11,
|
|
3871
|
-
ZH_HANS = 12,
|
|
3872
|
-
PT_BR = 13
|
|
3873
|
-
}
|
|
3874
|
-
|
|
3875
|
-
declare enum ItemAttributes {
|
|
3876
|
-
COUNTABLE = 1,
|
|
3877
|
-
CONSUMABLE = 2,
|
|
3878
|
-
USABLE_OVERWORLD = 3,
|
|
3879
|
-
USABLE_IN_BATTLE = 4,
|
|
3880
|
-
HOLDABLE = 5,
|
|
3881
|
-
HOLDABLE_PASSIVE = 6,
|
|
3882
|
-
HOLDABLE_ACTIVE = 7,
|
|
3883
|
-
UNDERGROUND = 8
|
|
3884
|
-
}
|
|
3885
|
-
declare enum ItemCategories {
|
|
3886
|
-
STAT_BOOSTS = 1,
|
|
3887
|
-
EFFORT_DROP = 2,
|
|
3888
|
-
MEDICINE = 3,
|
|
3889
|
-
OTHER = 4,
|
|
3890
|
-
IN_A_PINCH = 5,
|
|
3891
|
-
PICKY_HEALING = 6,
|
|
3892
|
-
TYPE_PROTECTION = 7,
|
|
3893
|
-
BAKING_ONLY = 8,
|
|
3894
|
-
COLLECTIBLES = 9,
|
|
3895
|
-
EVOLUTION = 10,
|
|
3896
|
-
SPELUNKING = 11,
|
|
3897
|
-
HELD_ITEMS = 12,
|
|
3898
|
-
CHOICE = 13,
|
|
3899
|
-
EFFORT_TRAINING = 14,
|
|
3900
|
-
BAD_HELD_ITEMS = 15,
|
|
3901
|
-
TRAINING = 16,
|
|
3902
|
-
PLATES = 17,
|
|
3903
|
-
SPECIES_SPECIFIC = 18,
|
|
3904
|
-
TYPE_ENHANCEMENT = 19,
|
|
3905
|
-
EVENT_ITEMS = 20,
|
|
3906
|
-
GAMEPLAY = 21,
|
|
3907
|
-
PLOT_ADVANCEMENT = 22,
|
|
3908
|
-
UNUSED = 23,
|
|
3909
|
-
LOOT = 24,
|
|
3910
|
-
ALL_MAIL = 25,
|
|
3911
|
-
VITAMINS = 26,
|
|
3912
|
-
HEALING = 27,
|
|
3913
|
-
PP_RECOVERY = 28,
|
|
3914
|
-
REVIVAL = 29,
|
|
3915
|
-
STATUS_CURES = 30,
|
|
3916
|
-
MULCH = 32,
|
|
3917
|
-
SPECIAL_BALLS = 33,
|
|
3918
|
-
STANDARD_BALLS = 34,
|
|
3919
|
-
DEX_COMPLETION = 35,
|
|
3920
|
-
SCARVES = 36,
|
|
3921
|
-
ALL_MACHINES = 37,
|
|
3922
|
-
FLUTES = 38,
|
|
3923
|
-
APRICORN_BALLS = 39,
|
|
3924
|
-
APRICORN_BOX = 40,
|
|
3925
|
-
DATA_CARDS = 41,
|
|
3926
|
-
JEWELS = 42,
|
|
3927
|
-
MIRACLE_SHOOTER = 43,
|
|
3928
|
-
MEGA_STONES = 44,
|
|
3929
|
-
MEMORIES = 45,
|
|
3930
|
-
Z_CRYSTALS = 46,
|
|
3931
|
-
SPECIES_CANDIES = 47,
|
|
3932
|
-
CATCHING_BONUS = 48,
|
|
3933
|
-
DYNAMAX_CRISTALS = 49,
|
|
3934
|
-
NATURE_MINTS = 50,
|
|
3935
|
-
CURRY_INGREDIENTS = 51
|
|
3936
|
-
}
|
|
3937
|
-
declare enum ItemFlingEffects {
|
|
3938
|
-
BADLY_POISON = 1,
|
|
3939
|
-
BURN = 2,
|
|
3940
|
-
BERRY_EFFECT = 3,
|
|
3941
|
-
HERB_EFFECT = 4,
|
|
3942
|
-
PARALYZE = 5,
|
|
3943
|
-
POISON = 6,
|
|
3944
|
-
FLINCH = 7
|
|
3945
|
-
}
|
|
3946
|
-
declare enum ItemPockets {
|
|
3947
|
-
MISC = 1,
|
|
3948
|
-
MEDICINE = 2,
|
|
3949
|
-
POKEBALLS = 3,
|
|
3950
|
-
MACHINES = 4,
|
|
3951
|
-
BERRIES = 5,
|
|
3952
|
-
MAIL = 6,
|
|
3953
|
-
BATTLE = 7,
|
|
3954
|
-
KEY = 8
|
|
3955
|
-
}
|
|
3956
|
-
|
|
3957
|
-
type index_BaseURL = BaseURL;
|
|
3958
|
-
declare const index_BaseURL: typeof BaseURL;
|
|
3959
|
-
type index_Berries = Berries;
|
|
3960
|
-
declare const index_Berries: typeof Berries;
|
|
3961
|
-
type index_BerryFirmnesses = BerryFirmnesses;
|
|
3962
|
-
declare const index_BerryFirmnesses: typeof BerryFirmnesses;
|
|
3963
|
-
type index_BerryFlavors = BerryFlavors;
|
|
3964
|
-
declare const index_BerryFlavors: typeof BerryFlavors;
|
|
3965
|
-
type index_ContestTypes = ContestTypes;
|
|
3966
|
-
declare const index_ContestTypes: typeof ContestTypes;
|
|
3967
|
-
type index_EggGroups = EggGroups;
|
|
3968
|
-
declare const index_EggGroups: typeof EggGroups;
|
|
3969
|
-
type index_EncounterConditionValues = EncounterConditionValues;
|
|
3970
|
-
declare const index_EncounterConditionValues: typeof EncounterConditionValues;
|
|
3971
|
-
type index_EncounterConditions = EncounterConditions;
|
|
3972
|
-
declare const index_EncounterConditions: typeof EncounterConditions;
|
|
3973
|
-
type index_EncounterMethods = EncounterMethods;
|
|
3974
|
-
declare const index_EncounterMethods: typeof EncounterMethods;
|
|
3975
|
-
type index_Endpoints = Endpoints;
|
|
3976
|
-
declare const index_Endpoints: typeof Endpoints;
|
|
3977
|
-
type index_EvolutionTriggers = EvolutionTriggers;
|
|
3978
|
-
declare const index_EvolutionTriggers: typeof EvolutionTriggers;
|
|
3979
|
-
type index_Genders = Genders;
|
|
3980
|
-
declare const index_Genders: typeof Genders;
|
|
3981
|
-
type index_Generations = Generations;
|
|
3982
|
-
declare const index_Generations: typeof Generations;
|
|
3983
|
-
type index_GrowthRates = GrowthRates;
|
|
3984
|
-
declare const index_GrowthRates: typeof GrowthRates;
|
|
3985
|
-
type index_ItemAttributes = ItemAttributes;
|
|
3986
|
-
declare const index_ItemAttributes: typeof ItemAttributes;
|
|
3987
|
-
type index_ItemCategories = ItemCategories;
|
|
3988
|
-
declare const index_ItemCategories: typeof ItemCategories;
|
|
3989
|
-
type index_ItemFlingEffects = ItemFlingEffects;
|
|
3990
|
-
declare const index_ItemFlingEffects: typeof ItemFlingEffects;
|
|
3991
|
-
type index_ItemPockets = ItemPockets;
|
|
3992
|
-
declare const index_ItemPockets: typeof ItemPockets;
|
|
3993
|
-
type index_Languages = Languages;
|
|
3994
|
-
declare const index_Languages: typeof Languages;
|
|
3995
|
-
type index_MoveAilmtents = MoveAilmtents;
|
|
3996
|
-
declare const index_MoveAilmtents: typeof MoveAilmtents;
|
|
3997
|
-
type index_MoveBattleStyles = MoveBattleStyles;
|
|
3998
|
-
declare const index_MoveBattleStyles: typeof MoveBattleStyles;
|
|
3999
|
-
type index_MoveCategories = MoveCategories;
|
|
4000
|
-
declare const index_MoveCategories: typeof MoveCategories;
|
|
4001
|
-
type index_MoveDamageClasses = MoveDamageClasses;
|
|
4002
|
-
declare const index_MoveDamageClasses: typeof MoveDamageClasses;
|
|
4003
|
-
type index_MoveLearnMethods = MoveLearnMethods;
|
|
4004
|
-
declare const index_MoveLearnMethods: typeof MoveLearnMethods;
|
|
4005
|
-
type index_MoveTargets = MoveTargets;
|
|
4006
|
-
declare const index_MoveTargets: typeof MoveTargets;
|
|
4007
|
-
type index_Natures = Natures;
|
|
4008
|
-
declare const index_Natures: typeof Natures;
|
|
4009
|
-
type index_PalParkAreas = PalParkAreas;
|
|
4010
|
-
declare const index_PalParkAreas: typeof PalParkAreas;
|
|
4011
|
-
type index_PokeathlonStats = PokeathlonStats;
|
|
4012
|
-
declare const index_PokeathlonStats: typeof PokeathlonStats;
|
|
4013
|
-
type index_Pokedexes = Pokedexes;
|
|
4014
|
-
declare const index_Pokedexes: typeof Pokedexes;
|
|
4015
|
-
type index_PokemonColors = PokemonColors;
|
|
4016
|
-
declare const index_PokemonColors: typeof PokemonColors;
|
|
4017
|
-
type index_PokemonHabitats = PokemonHabitats;
|
|
4018
|
-
declare const index_PokemonHabitats: typeof PokemonHabitats;
|
|
4019
|
-
type index_PokemonShapes = PokemonShapes;
|
|
4020
|
-
declare const index_PokemonShapes: typeof PokemonShapes;
|
|
4021
|
-
type index_Regions = Regions;
|
|
4022
|
-
declare const index_Regions: typeof Regions;
|
|
4023
|
-
type index_Stats = Stats;
|
|
4024
|
-
declare const index_Stats: typeof Stats;
|
|
4025
|
-
type index_Types = Types;
|
|
4026
|
-
declare const index_Types: typeof Types;
|
|
4027
|
-
type index_VersionGroups = VersionGroups;
|
|
4028
|
-
declare const index_VersionGroups: typeof VersionGroups;
|
|
4029
|
-
type index_Versions = Versions;
|
|
4030
|
-
declare const index_Versions: typeof Versions;
|
|
4031
|
-
declare namespace index {
|
|
4032
|
-
export {
|
|
4033
|
-
index_BaseURL as BaseURL,
|
|
4034
|
-
index_Berries as Berries,
|
|
4035
|
-
index_BerryFirmnesses as BerryFirmnesses,
|
|
4036
|
-
index_BerryFlavors as BerryFlavors,
|
|
4037
|
-
index_ContestTypes as ContestTypes,
|
|
4038
|
-
index_EggGroups as EggGroups,
|
|
4039
|
-
index_EncounterConditionValues as EncounterConditionValues,
|
|
4040
|
-
index_EncounterConditions as EncounterConditions,
|
|
4041
|
-
index_EncounterMethods as EncounterMethods,
|
|
4042
|
-
index_Endpoints as Endpoints,
|
|
4043
|
-
index_EvolutionTriggers as EvolutionTriggers,
|
|
4044
|
-
index_Genders as Genders,
|
|
4045
|
-
index_Generations as Generations,
|
|
4046
|
-
index_GrowthRates as GrowthRates,
|
|
4047
|
-
index_ItemAttributes as ItemAttributes,
|
|
4048
|
-
index_ItemCategories as ItemCategories,
|
|
4049
|
-
index_ItemFlingEffects as ItemFlingEffects,
|
|
4050
|
-
index_ItemPockets as ItemPockets,
|
|
4051
|
-
index_Languages as Languages,
|
|
4052
|
-
index_MoveAilmtents as MoveAilmtents,
|
|
4053
|
-
index_MoveBattleStyles as MoveBattleStyles,
|
|
4054
|
-
index_MoveCategories as MoveCategories,
|
|
4055
|
-
index_MoveDamageClasses as MoveDamageClasses,
|
|
4056
|
-
index_MoveLearnMethods as MoveLearnMethods,
|
|
4057
|
-
index_MoveTargets as MoveTargets,
|
|
4058
|
-
index_Natures as Natures,
|
|
4059
|
-
index_PalParkAreas as PalParkAreas,
|
|
4060
|
-
index_PokeathlonStats as PokeathlonStats,
|
|
4061
|
-
index_Pokedexes as Pokedexes,
|
|
4062
|
-
index_PokemonColors as PokemonColors,
|
|
4063
|
-
index_PokemonHabitats as PokemonHabitats,
|
|
4064
|
-
index_PokemonShapes as PokemonShapes,
|
|
4065
|
-
index_Regions as Regions,
|
|
4066
|
-
index_Stats as Stats,
|
|
4067
|
-
index_Types as Types,
|
|
4068
|
-
index_VersionGroups as VersionGroups,
|
|
4069
|
-
index_Versions as Versions,
|
|
4070
|
-
};
|
|
4071
|
-
}
|
|
4072
|
-
|
|
4073
|
-
export { APIResource, Ability, AbilityEffectChange, AbilityFlavorText, AbilityPokemon, Animated, AwesomeName, BaseClient, BaseURL, Berries, Berry, BerryClient, BerryFirmness, BerryFirmnesses, BerryFlavor, BerryFlavorMap, BerryFlavors, BlackWhite, ChainLink, Characteristic, ClientArgs, index as Constants, ContestClient, ContestComboDetail, ContestComboSets, ContestEffect, ContestName, ContestType, ContestTypes, Crystal, Description, DiamondPearl, DreamWorld, Effect, EggGroup, EggGroups, Emerald, Encounter, EncounterClient, EncounterCondition, EncounterConditionValue, EncounterConditionValues, EncounterConditions, EncounterMethod, EncounterMethodRate, EncounterMethods, EncounterVersionDetails, Endpoints, EvolutionChain, EvolutionClient, EvolutionDetail, EvolutionTrigger, EvolutionTriggers, FireredLeafgreen, FlavorBerryMap, FlavorText, GameClient, Gender, Genders, Generation, GenerationGameIndex, GenerationIIISprites, GenerationIISprites, GenerationISprites, GenerationIVSprites, GenerationVIIISprites, GenerationVIISprites, GenerationVISprites, GenerationVSprites, GenerationViiIcons, GenerationViiiIcons, Generations, Genus, Gold, GrowthRate, GrowthRateExperienceLevel, GrowthRates, HeartgoldSoulsilver, Home, Item, ItemAttribute, ItemAttributes, ItemCategories, ItemCategory, ItemClient, ItemFlingEffect, ItemFlingEffects, ItemHolderPokemon, ItemHolderPokemonVersionDetail, ItemPocket, ItemPockets, ItemSprites, Language, Languages, Location, LocationArea, LocationAreaEncounter, LocationClient, Machine, MachineClient, MachineVersionDetail, MainClient, Move, MoveAilment, MoveAilmtents, MoveBattleStyle, MoveBattleStylePreference, MoveBattleStyles, MoveCategories, MoveCategory, MoveClient, MoveDamageClass, MoveDamageClasses, MoveFlavorText, MoveLearnMethod, MoveLearnMethods, MoveMetaData, MoveStatAffect, MoveStatAffectSets, MoveStatChange, MoveTarget, MoveTargets, Name, NamedAPIResource, NamedAPIResourceList, Nature, NaturePokeathlonStatAffect, NaturePokeathlonStatAffectSets, NatureStatAffectSets, NatureStatChange, Natures, OmegarubyAlphasapphire, OtherPokemonSprites, PalParkArea, PalParkAreas, PalParkEncounterArea, PalParkEncounterSpecies, PastMoveStatValues, Platinum, PokeathlonStat, PokeathlonStats, Pokedex, Pokedexes, Pokemon, PokemonAbility, PokemonClient, PokemonColor, PokemonColors, PokemonEncounter, PokemonEntry, PokemonForm, PokemonFormSprites, PokemonHabitat, PokemonHabitats, PokemonHeldItem, PokemonHeldItemVersion, PokemonMove, PokemonMoveVersion, PokemonPastType, PokemonShape, PokemonShapes, PokemonSpecies, PokemonSpeciesDexEntry, PokemonSpeciesGender, PokemonSpeciesVariety, PokemonSprites, PokemonStat, PokemonType, RedBlue, Region, Regions, RubySapphire, Stat, Stats, SuperContestEffect, Type, TypePokemon, TypeRelations, TypeRelationsPast, Types, UltraSunUltraMoon, UtilityClient, VerboseEffect, Version, VersionEncounterDetail, VersionGameIndex, VersionGroup, VersionGroupFlavorText, VersionGroups, VersionSprites, Versions, XY, Yellow };
|
|
4040
|
+
export { APIResource, Ability, AbilityEffectChange, AbilityFlavorText, AbilityPokemon, Animated, AwesomeName, BERRIES, BERRY_FIRMNESSES, BERRY_FLAVORS, BaseClient, BaseURL, Berry, BerryClient, BerryFirmness, BerryFlavor, BerryFlavorMap, BlackWhite, CONTEST_TYPES, ChainLink, Characteristic, ClientArgs, index as Constants, ContestClient, ContestComboDetail, ContestComboSets, ContestEffect, ContestName, ContestType, Crystal, Description, DiamondPearl, DreamWorld, EGG_GROUPS, ENCOUNTER_CONDITIONS, ENCOUNTER_CONDITION_VALUES, ENCOUNTER_METHODS, ENDPOINTS, EVOLUTION_TRIGGERS, Effect, EggGroup, Emerald, Encounter, EncounterClient, EncounterCondition, EncounterConditionValue, EncounterMethod, EncounterMethodRate, EncounterVersionDetails, EvolutionChain, EvolutionClient, EvolutionDetail, EvolutionTrigger, FireredLeafgreen, FlavorBerryMap, FlavorText, GENDERS, GENERATIONS, GROWTH_RATES, GameClient, Gender, Generation, GenerationGameIndex, GenerationIIISprites, GenerationIISprites, GenerationISprites, GenerationIVSprites, GenerationVIIISprites, GenerationVIISprites, GenerationVISprites, GenerationVSprites, GenerationViiIcons, GenerationViiiIcons, Genus, Gold, GrowthRate, GrowthRateExperienceLevel, HeartgoldSoulsilver, Home, ITEM_ATTRIBUTES, ITEM_CATEGORIES, ITEM_FLING_EFFECTS, ITEM_POCKETS, Item, ItemAttribute, ItemCategory, ItemClient, ItemFlingEffect, ItemHolderPokemon, ItemHolderPokemonVersionDetail, ItemPocket, ItemSprites, LANGUAGES, Language, Location, LocationArea, LocationAreaEncounter, LocationClient, MOVE_AILMENTS, MOVE_BATTLE_STYLES, MOVE_CATEGORIES, MOVE_DAMAGE_CLASSES, MOVE_LEARN_METHODS, MOVE_TARGETS, Machine, MachineClient, MachineVersionDetail, MainClient, Move, MoveAilment, MoveBattleStyle, MoveBattleStylePreference, MoveCategory, MoveClient, MoveDamageClass, MoveFlavorText, MoveLearnMethod, MoveMetaData, MoveStatAffect, MoveStatAffectSets, MoveStatChange, MoveTarget, NATURES, Name, NamedAPIResource, NamedAPIResourceList, Nature, NaturePokeathlonStatAffect, NaturePokeathlonStatAffectSets, NatureStatAffectSets, NatureStatChange, OmegarubyAlphasapphire, OtherPokemonSprites, PAL_PARK_AREAS, POKEATHLON_STATS, POKEDEXES, POKEMON_COLORS, POKEMON_HABITATS, POKEMON_SHAPES, PalParkArea, PalParkEncounterArea, PalParkEncounterSpecies, PastMoveStatValues, Platinum, PokeathlonStat, Pokedex, Pokemon, PokemonAbility, PokemonClient, PokemonColor, PokemonEncounter, PokemonEntry, PokemonForm, PokemonFormSprites, PokemonHabitat, PokemonHeldItem, PokemonHeldItemVersion, PokemonMove, PokemonMoveVersion, PokemonPastType, PokemonShape, PokemonSpecies, PokemonSpeciesDexEntry, PokemonSpeciesGender, PokemonSpeciesVariety, PokemonSprites, PokemonStat, PokemonType, REGIONS, RedBlue, Region, RubySapphire, STATS, Stat, SuperContestEffect, TYPES, Type, TypePokemon, TypeRelations, TypeRelationsPast, UltraSunUltraMoon, UtilityClient, VERSIONS, VERSION_GROUPS, VerboseEffect, Version, VersionEncounterDetail, VersionGameIndex, VersionGroup, VersionGroupFlavorText, VersionSprites, XY, Yellow };
|