├── .gitignore ├── package.json ├── .vscode └── settings.json ├── style.css ├── index.html ├── main.js ├── images └── pokemon_logo.svg └── db.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "bootstrap": "^5.2.2" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true, 3 | "liveServer.settings.port": 5501 4 | } -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | main .wrapper_pokemons{ 8 | display: grid; 9 | gap: 30px; 10 | grid-template-columns: repeat(4, 300px); 11 | } 12 | 13 | main .wrapper_pokemons .card{ 14 | height: 370px; 15 | border: 2px solid black; 16 | border-radius: 20px; 17 | 18 | } 19 | 20 | main .wrapper_pokemons .card img{ 21 | margin-top: 20px; 22 | } 23 | 24 | main .wrapper_pokemons .card .line_card{ 25 | width: 100%; 26 | height: 1.5px; 27 | margin: 50px auto; 28 | background-color: black; 29 | } 30 | 31 | main .container .inputs{ 32 | margin-top: 70px; 33 | margin-bottom: 100px; 34 | margin-left: 100px; 35 | } 36 | 37 | main .container .inputs input , .click_btn,select{ 38 | padding: 16px 40px; 39 | border-radius:15px; 40 | margin-left: 50px; 41 | } 42 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Pokemon 12 | 13 | 14 | 15 |
16 | pokemon_logo 17 |
18 |
19 |
20 |
21 |
22 | 23 | 24 | 29 | 30 |
31 |
32 |
33 | 34 |
35 |
36 |
37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | "use strict" 2 | 3 | const elPokemonCard = document.querySelector(".wrapper_pokemons"); 4 | const searchInput = document.querySelector(".input_search"); 5 | 6 | 7 | 8 | // render qism 9 | 10 | const renderPokemon = (pokemons, elPokemonCard) => { 11 | elPokemonCard.textContent = ""; 12 | for (let i = 0; i < pokemons.length; i++) { 13 | const element = pokemons[i]; 14 | const newCard = document.createElement("div", "card"); 15 | newCard.className = "card text-center"; 16 | newCard.innerHTML = ` 17 |
18 | ${element.name} 19 |
20 |
21 |
${element.name}
22 |

${element.type}

23 |
24 |
${element.height}
25 |
${element.weight}
26 |
27 |
28 |
29 | 30 | `; 31 | elPokemonCard.appendChild(newCard); 32 | } 33 | }; 34 | 35 | renderPokemon(pokemons, elPokemonCard); 36 | 37 | // search qism 38 | 39 | searchInput.addEventListener('input', (e) => { 40 | e.preventDefault(); 41 | 42 | const inputText = searchInput.value.trim().toLowerCase(); 43 | let sourc = []; 44 | 45 | pokemons.forEach((elements) => { 46 | if (elements.name.toLowerCase().includes(inputText)) { 47 | sourc.push(elements); 48 | console.log(sourc); 49 | } 50 | }); 51 | 52 | renderPokemon(sourc, elPokemonCard); 53 | }); 54 | 55 | -------------------------------------------------------------------------------- /images/pokemon_logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /db.js: -------------------------------------------------------------------------------- 1 | var pokemons = [ 2 | { 3 | id: 1, 4 | num: "001", 5 | name: "Bulbasaur", 6 | img: "http://www.serebii.net/pokemongo/pokemon/001.png", 7 | type: ["Grass", "Poison"], 8 | height: "0.71 m", 9 | weight: "6.9 kg", 10 | candy: "Bulbasaur Candy", 11 | candy_count: 25, 12 | egg: "2 km", 13 | spawn_chance: 0.69, 14 | avg_spawns: 69, 15 | spawn_time: "20:00", 16 | multipliers: [1.58], 17 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 18 | next_evolution: [ 19 | { 20 | num: "002", 21 | name: "Ivysaur", 22 | }, 23 | { 24 | num: "003", 25 | name: "Venusaur", 26 | }, 27 | ], 28 | }, 29 | { 30 | id: 2, 31 | num: "002", 32 | name: "Ivysaur", 33 | img: "http://www.serebii.net/pokemongo/pokemon/002.png", 34 | type: ["Grass", "Poison"], 35 | height: "0.99 m", 36 | weight: "13.0 kg", 37 | candy: "Bulbasaur Candy", 38 | candy_count: 100, 39 | egg: "Not in Eggs", 40 | spawn_chance: 0.042, 41 | avg_spawns: 4.2, 42 | spawn_time: "07:00", 43 | multipliers: [1.2, 1.6], 44 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 45 | prev_evolution: [ 46 | { 47 | num: "001", 48 | name: "Bulbasaur", 49 | }, 50 | ], 51 | next_evolution: [ 52 | { 53 | num: "003", 54 | name: "Venusaur", 55 | }, 56 | ], 57 | }, 58 | { 59 | id: 3, 60 | num: "003", 61 | name: "Venusaur", 62 | img: "http://www.serebii.net/pokemongo/pokemon/003.png", 63 | type: ["Grass", "Poison"], 64 | height: "2.01 m", 65 | weight: "100.0 kg", 66 | candy: "Bulbasaur Candy", 67 | egg: "Not in Eggs", 68 | spawn_chance: 0.017, 69 | avg_spawns: 1.7, 70 | spawn_time: "11:30", 71 | multipliers: null, 72 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 73 | prev_evolution: [ 74 | { 75 | num: "001", 76 | name: "Bulbasaur", 77 | }, 78 | { 79 | num: "002", 80 | name: "Ivysaur", 81 | }, 82 | ], 83 | }, 84 | { 85 | id: 4, 86 | num: "004", 87 | name: "Charmander", 88 | img: "http://www.serebii.net/pokemongo/pokemon/004.png", 89 | type: ["Fire"], 90 | height: "0.61 m", 91 | weight: "8.5 kg", 92 | candy: "Charmander Candy", 93 | candy_count: 25, 94 | egg: "2 km", 95 | spawn_chance: 0.253, 96 | avg_spawns: 25.3, 97 | spawn_time: "08:45", 98 | multipliers: [1.65], 99 | weaknesses: ["Water", "Ground", "Rock"], 100 | next_evolution: [ 101 | { 102 | num: "005", 103 | name: "Charmeleon", 104 | }, 105 | { 106 | num: "006", 107 | name: "Charizard", 108 | }, 109 | ], 110 | }, 111 | { 112 | id: 5, 113 | num: "005", 114 | name: "Charmeleon", 115 | img: "http://www.serebii.net/pokemongo/pokemon/005.png", 116 | type: ["Fire"], 117 | height: "1.09 m", 118 | weight: "19.0 kg", 119 | candy: "Charmander Candy", 120 | candy_count: 100, 121 | egg: "Not in Eggs", 122 | spawn_chance: 0.012, 123 | avg_spawns: 1.2, 124 | spawn_time: "19:00", 125 | multipliers: [1.79], 126 | weaknesses: ["Water", "Ground", "Rock"], 127 | prev_evolution: [ 128 | { 129 | num: "004", 130 | name: "Charmander", 131 | }, 132 | ], 133 | next_evolution: [ 134 | { 135 | num: "006", 136 | name: "Charizard", 137 | }, 138 | ], 139 | }, 140 | { 141 | id: 6, 142 | num: "006", 143 | name: "Charizard", 144 | img: "http://www.serebii.net/pokemongo/pokemon/006.png", 145 | type: ["Fire", "Flying"], 146 | height: "1.70 m", 147 | weight: "90.5 kg", 148 | candy: "Charmander Candy", 149 | egg: "Not in Eggs", 150 | spawn_chance: 0.0031, 151 | avg_spawns: 0.31, 152 | spawn_time: "13:34", 153 | multipliers: null, 154 | weaknesses: ["Water", "Electric", "Rock"], 155 | prev_evolution: [ 156 | { 157 | num: "004", 158 | name: "Charmander", 159 | }, 160 | { 161 | num: "005", 162 | name: "Charmeleon", 163 | }, 164 | ], 165 | }, 166 | { 167 | id: 7, 168 | num: "007", 169 | name: "Squirtle", 170 | img: "http://www.serebii.net/pokemongo/pokemon/007.png", 171 | type: ["Water"], 172 | height: "0.51 m", 173 | weight: "9.0 kg", 174 | candy: "Squirtle Candy", 175 | candy_count: 25, 176 | egg: "2 km", 177 | spawn_chance: 0.58, 178 | avg_spawns: 58, 179 | spawn_time: "04:25", 180 | multipliers: [2.1], 181 | weaknesses: ["Electric", "Grass"], 182 | next_evolution: [ 183 | { 184 | num: "008", 185 | name: "Wartortle", 186 | }, 187 | { 188 | num: "009", 189 | name: "Blastoise", 190 | }, 191 | ], 192 | }, 193 | { 194 | id: 8, 195 | num: "008", 196 | name: "Wartortle", 197 | img: "http://www.serebii.net/pokemongo/pokemon/008.png", 198 | type: ["Water"], 199 | height: "0.99 m", 200 | weight: "22.5 kg", 201 | candy: "Squirtle Candy", 202 | candy_count: 100, 203 | egg: "Not in Eggs", 204 | spawn_chance: 0.034, 205 | avg_spawns: 3.4, 206 | spawn_time: "07:02", 207 | multipliers: [1.4], 208 | weaknesses: ["Electric", "Grass"], 209 | prev_evolution: [ 210 | { 211 | num: "007", 212 | name: "Squirtle", 213 | }, 214 | ], 215 | next_evolution: [ 216 | { 217 | num: "009", 218 | name: "Blastoise", 219 | }, 220 | ], 221 | }, 222 | { 223 | id: 9, 224 | num: "009", 225 | name: "Blastoise", 226 | img: "http://www.serebii.net/pokemongo/pokemon/009.png", 227 | type: ["Water"], 228 | height: "1.60 m", 229 | weight: "85.5 kg", 230 | candy: "Squirtle Candy", 231 | egg: "Not in Eggs", 232 | spawn_chance: 0.0067, 233 | avg_spawns: 0.67, 234 | spawn_time: "00:06", 235 | multipliers: null, 236 | weaknesses: ["Electric", "Grass"], 237 | prev_evolution: [ 238 | { 239 | num: "007", 240 | name: "Squirtle", 241 | }, 242 | { 243 | num: "008", 244 | name: "Wartortle", 245 | }, 246 | ], 247 | }, 248 | { 249 | id: 10, 250 | num: "010", 251 | name: "Caterpie", 252 | img: "http://www.serebii.net/pokemongo/pokemon/010.png", 253 | type: ["Bug"], 254 | height: "0.30 m", 255 | weight: "2.9 kg", 256 | candy: "Caterpie Candy", 257 | candy_count: 12, 258 | egg: "2 km", 259 | spawn_chance: 3.032, 260 | avg_spawns: 303.2, 261 | spawn_time: "16:35", 262 | multipliers: [1.05], 263 | weaknesses: ["Fire", "Flying", "Rock"], 264 | next_evolution: [ 265 | { 266 | num: "011", 267 | name: "Metapod", 268 | }, 269 | { 270 | num: "012", 271 | name: "Butterfree", 272 | }, 273 | ], 274 | }, 275 | { 276 | id: 11, 277 | num: "011", 278 | name: "Metapod", 279 | img: "http://www.serebii.net/pokemongo/pokemon/011.png", 280 | type: ["Bug"], 281 | height: "0.71 m", 282 | weight: "9.9 kg", 283 | candy: "Caterpie Candy", 284 | candy_count: 50, 285 | egg: "Not in Eggs", 286 | spawn_chance: 0.187, 287 | avg_spawns: 18.7, 288 | spawn_time: "02:11", 289 | multipliers: [3.55, 3.79], 290 | weaknesses: ["Fire", "Flying", "Rock"], 291 | prev_evolution: [ 292 | { 293 | num: "010", 294 | name: "Caterpie", 295 | }, 296 | ], 297 | next_evolution: [ 298 | { 299 | num: "012", 300 | name: "Butterfree", 301 | }, 302 | ], 303 | }, 304 | { 305 | id: 12, 306 | num: "012", 307 | name: "Butterfree", 308 | img: "http://www.serebii.net/pokemongo/pokemon/012.png", 309 | type: ["Bug", "Flying"], 310 | height: "1.09 m", 311 | weight: "32.0 kg", 312 | candy: "Caterpie Candy", 313 | egg: "Not in Eggs", 314 | spawn_chance: 0.022, 315 | avg_spawns: 2.2, 316 | spawn_time: "05:23", 317 | multipliers: null, 318 | weaknesses: ["Fire", "Electric", "Ice", "Flying", "Rock"], 319 | prev_evolution: [ 320 | { 321 | num: "010", 322 | name: "Caterpie", 323 | }, 324 | { 325 | num: "011", 326 | name: "Metapod", 327 | }, 328 | ], 329 | }, 330 | { 331 | id: 13, 332 | num: "013", 333 | name: "Weedle", 334 | img: "http://www.serebii.net/pokemongo/pokemon/013.png", 335 | type: ["Bug", "Poison"], 336 | height: "0.30 m", 337 | weight: "3.2 kg", 338 | candy: "Weedle Candy", 339 | candy_count: 12, 340 | egg: "2 km", 341 | spawn_chance: 7.12, 342 | avg_spawns: 712, 343 | spawn_time: "02:21", 344 | multipliers: [1.01, 1.09], 345 | weaknesses: ["Fire", "Flying", "Psychic", "Rock"], 346 | next_evolution: [ 347 | { 348 | num: "014", 349 | name: "Kakuna", 350 | }, 351 | { 352 | num: "015", 353 | name: "Beedrill", 354 | }, 355 | ], 356 | }, 357 | { 358 | id: 14, 359 | num: "014", 360 | name: "Kakuna", 361 | img: "http://www.serebii.net/pokemongo/pokemon/014.png", 362 | type: ["Bug", "Poison"], 363 | height: "0.61 m", 364 | weight: "10.0 kg", 365 | candy: "Weedle Candy", 366 | candy_count: 50, 367 | egg: "Not in Eggs", 368 | spawn_chance: 0.44, 369 | avg_spawns: 44, 370 | spawn_time: "02:30", 371 | multipliers: [3.01, 3.41], 372 | weaknesses: ["Fire", "Flying", "Psychic", "Rock"], 373 | prev_evolution: [ 374 | { 375 | num: "013", 376 | name: "Weedle", 377 | }, 378 | ], 379 | next_evolution: [ 380 | { 381 | num: "015", 382 | name: "Beedrill", 383 | }, 384 | ], 385 | }, 386 | { 387 | id: 15, 388 | num: "015", 389 | name: "Beedrill", 390 | img: "http://www.serebii.net/pokemongo/pokemon/015.png", 391 | type: ["Bug", "Poison"], 392 | height: "0.99 m", 393 | weight: "29.5 kg", 394 | candy: "Weedle Candy", 395 | egg: "Not in Eggs", 396 | spawn_chance: 0.051, 397 | avg_spawns: 5.1, 398 | spawn_time: "04:50", 399 | multipliers: null, 400 | weaknesses: ["Fire", "Flying", "Psychic", "Rock"], 401 | prev_evolution: [ 402 | { 403 | num: "013", 404 | name: "Weedle", 405 | }, 406 | { 407 | num: "014", 408 | name: "Kakuna", 409 | }, 410 | ], 411 | }, 412 | { 413 | id: 16, 414 | num: "016", 415 | name: "Pidgey", 416 | img: "http://www.serebii.net/pokemongo/pokemon/016.png", 417 | type: ["Normal", "Flying"], 418 | height: "0.30 m", 419 | weight: "1.8 kg", 420 | candy: "Pidgey Candy", 421 | candy_count: 12, 422 | egg: "2 km", 423 | spawn_chance: 15.98, 424 | avg_spawns: 1.598, 425 | spawn_time: "01:34", 426 | multipliers: [1.71, 1.92], 427 | weaknesses: ["Electric", "Rock"], 428 | next_evolution: [ 429 | { 430 | num: "017", 431 | name: "Pidgeotto", 432 | }, 433 | { 434 | num: "018", 435 | name: "Pidgeot", 436 | }, 437 | ], 438 | }, 439 | { 440 | id: 17, 441 | num: "017", 442 | name: "Pidgeotto", 443 | img: "http://www.serebii.net/pokemongo/pokemon/017.png", 444 | type: ["Normal", "Flying"], 445 | height: "1.09 m", 446 | weight: "30.0 kg", 447 | candy: "Pidgey Candy", 448 | candy_count: 50, 449 | egg: "Not in Eggs", 450 | spawn_chance: 1.02, 451 | avg_spawns: 102, 452 | spawn_time: "01:30", 453 | multipliers: [1.79], 454 | weaknesses: ["Electric", "Rock"], 455 | prev_evolution: [ 456 | { 457 | num: "016", 458 | name: "Pidgey", 459 | }, 460 | ], 461 | next_evolution: [ 462 | { 463 | num: "018", 464 | name: "Pidgeot", 465 | }, 466 | ], 467 | }, 468 | { 469 | id: 18, 470 | num: "018", 471 | name: "Pidgeot", 472 | img: "http://www.serebii.net/pokemongo/pokemon/018.png", 473 | type: ["Normal", "Flying"], 474 | height: "1.50 m", 475 | weight: "39.5 kg", 476 | candy: "Pidgey Candy", 477 | egg: "Not in Eggs", 478 | spawn_chance: 0.13, 479 | avg_spawns: 13, 480 | spawn_time: "01:50", 481 | multipliers: null, 482 | weaknesses: ["Electric", "Rock"], 483 | prev_evolution: [ 484 | { 485 | num: "016", 486 | name: "Pidgey", 487 | }, 488 | { 489 | num: "017", 490 | name: "Pidgeotto", 491 | }, 492 | ], 493 | }, 494 | { 495 | id: 19, 496 | num: "019", 497 | name: "Rattata", 498 | img: "http://www.serebii.net/pokemongo/pokemon/019.png", 499 | type: ["Normal"], 500 | height: "0.30 m", 501 | weight: "3.5 kg", 502 | candy: "Rattata Candy", 503 | candy_count: 25, 504 | egg: "2 km", 505 | spawn_chance: 13.05, 506 | avg_spawns: 1.305, 507 | spawn_time: "01:55", 508 | multipliers: [2.55, 2.73], 509 | weaknesses: ["Fighting"], 510 | next_evolution: [ 511 | { 512 | num: "020", 513 | name: "Raticate", 514 | }, 515 | ], 516 | }, 517 | { 518 | id: 20, 519 | num: "020", 520 | name: "Raticate", 521 | img: "http://www.serebii.net/pokemongo/pokemon/020.png", 522 | type: ["Normal"], 523 | height: "0.71 m", 524 | weight: "18.5 kg", 525 | candy: "Rattata Candy", 526 | egg: "Not in Eggs", 527 | spawn_chance: 0.41, 528 | avg_spawns: 41, 529 | spawn_time: "01:56", 530 | multipliers: null, 531 | weaknesses: ["Fighting"], 532 | prev_evolution: [ 533 | { 534 | num: "019", 535 | name: "Rattata", 536 | }, 537 | ], 538 | }, 539 | { 540 | id: 21, 541 | num: "021", 542 | name: "Spearow", 543 | img: "http://www.serebii.net/pokemongo/pokemon/021.png", 544 | type: ["Normal", "Flying"], 545 | height: "0.30 m", 546 | weight: "2.0 kg", 547 | candy: "Spearow Candy", 548 | candy_count: 50, 549 | egg: "2 km", 550 | spawn_chance: 4.73, 551 | avg_spawns: 473, 552 | spawn_time: "12:25", 553 | multipliers: [2.66, 2.68], 554 | weaknesses: ["Electric", "Rock"], 555 | next_evolution: [ 556 | { 557 | num: "022", 558 | name: "Fearow", 559 | }, 560 | ], 561 | }, 562 | { 563 | id: 22, 564 | num: "022", 565 | name: "Fearow", 566 | img: "http://www.serebii.net/pokemongo/pokemon/022.png", 567 | type: ["Normal", "Flying"], 568 | height: "1.19 m", 569 | weight: "38.0 kg", 570 | candy: "Spearow Candy", 571 | egg: "Not in Eggs", 572 | spawn_chance: 0.15, 573 | avg_spawns: 15, 574 | spawn_time: "01:11", 575 | multipliers: null, 576 | weaknesses: ["Electric", "Rock"], 577 | prev_evolution: [ 578 | { 579 | num: "021", 580 | name: "Spearow", 581 | }, 582 | ], 583 | }, 584 | { 585 | id: 23, 586 | num: "023", 587 | name: "Ekans", 588 | img: "http://www.serebii.net/pokemongo/pokemon/023.png", 589 | type: ["Poison"], 590 | height: "2.01 m", 591 | weight: "6.9 kg", 592 | candy: "Ekans Candy", 593 | candy_count: 50, 594 | egg: "5 km", 595 | spawn_chance: 2.27, 596 | avg_spawns: 227, 597 | spawn_time: "12:20", 598 | multipliers: [2.21, 2.27], 599 | weaknesses: ["Ground", "Psychic"], 600 | next_evolution: [ 601 | { 602 | num: "024", 603 | name: "Arbok", 604 | }, 605 | ], 606 | }, 607 | { 608 | id: 24, 609 | num: "024", 610 | name: "Arbok", 611 | img: "http://www.serebii.net/pokemongo/pokemon/024.png", 612 | type: ["Poison"], 613 | height: "3.51 m", 614 | weight: "65.0 kg", 615 | candy: "Ekans Candy", 616 | egg: "Not in Eggs", 617 | spawn_chance: 0.072, 618 | avg_spawns: 7.2, 619 | spawn_time: "01:50", 620 | multipliers: null, 621 | weaknesses: ["Ground", "Psychic"], 622 | prev_evolution: [ 623 | { 624 | num: "023", 625 | name: "Ekans", 626 | }, 627 | ], 628 | }, 629 | { 630 | id: 25, 631 | num: "025", 632 | name: "Pikachu", 633 | img: "http://www.serebii.net/pokemongo/pokemon/025.png", 634 | type: ["Electric"], 635 | height: "0.41 m", 636 | weight: "6.0 kg", 637 | candy: "Pikachu Candy", 638 | candy_count: 50, 639 | egg: "2 km", 640 | spawn_chance: 0.21, 641 | avg_spawns: 21, 642 | spawn_time: "04:00", 643 | multipliers: [2.34], 644 | weaknesses: ["Ground"], 645 | next_evolution: [ 646 | { 647 | num: "026", 648 | name: "Raichu", 649 | }, 650 | ], 651 | }, 652 | { 653 | id: 26, 654 | num: "026", 655 | name: "Raichu", 656 | img: "http://www.serebii.net/pokemongo/pokemon/026.png", 657 | type: ["Electric"], 658 | height: "0.79 m", 659 | weight: "30.0 kg", 660 | candy: "Pikachu Candy", 661 | egg: "Not in Eggs", 662 | spawn_chance: 0.0076, 663 | avg_spawns: 0.76, 664 | spawn_time: "23:58", 665 | multipliers: null, 666 | weaknesses: ["Ground"], 667 | prev_evolution: [ 668 | { 669 | num: "025", 670 | name: "Pikachu", 671 | }, 672 | ], 673 | }, 674 | { 675 | id: 27, 676 | num: "027", 677 | name: "Sandshrew", 678 | img: "http://www.serebii.net/pokemongo/pokemon/027.png", 679 | type: ["Ground"], 680 | height: "0.61 m", 681 | weight: "12.0 kg", 682 | candy: "Sandshrew Candy", 683 | candy_count: 50, 684 | egg: "5 km", 685 | spawn_chance: 1.11, 686 | avg_spawns: 111, 687 | spawn_time: "01:58", 688 | multipliers: [2.45], 689 | weaknesses: ["Water", "Grass", "Ice"], 690 | next_evolution: [ 691 | { 692 | num: "028", 693 | name: "Sandslash", 694 | }, 695 | ], 696 | }, 697 | { 698 | id: 28, 699 | num: "028", 700 | name: "Sandslash", 701 | img: "http://www.serebii.net/pokemongo/pokemon/028.png", 702 | type: ["Ground"], 703 | height: "0.99 m", 704 | weight: "29.5 kg", 705 | candy: "Sandshrew Candy", 706 | egg: "Not in Eggs", 707 | spawn_chance: 0.037, 708 | avg_spawns: 3.7, 709 | spawn_time: "12:34", 710 | multipliers: null, 711 | weaknesses: ["Water", "Grass", "Ice"], 712 | prev_evolution: [ 713 | { 714 | num: "027", 715 | name: "Sandshrew", 716 | }, 717 | ], 718 | }, 719 | { 720 | id: 29, 721 | num: "029", 722 | name: "Nidoran ♀ (Female)", 723 | img: "http://www.serebii.net/pokemongo/pokemon/029.png", 724 | type: ["Poison"], 725 | height: "0.41 m", 726 | weight: "7.0 kg", 727 | candy: "Nidoran ♀ (Female) Candy", 728 | candy_count: 25, 729 | egg: "5 km", 730 | spawn_chance: 1.38, 731 | avg_spawns: 138, 732 | spawn_time: "01:51", 733 | multipliers: [1.63, 2.48], 734 | weaknesses: ["Ground", "Psychic"], 735 | next_evolution: [ 736 | { 737 | num: "030", 738 | name: "Nidorina", 739 | }, 740 | { 741 | num: "031", 742 | name: "Nidoqueen", 743 | }, 744 | ], 745 | }, 746 | { 747 | id: 30, 748 | num: "030", 749 | name: "Nidorina", 750 | img: "http://www.serebii.net/pokemongo/pokemon/030.png", 751 | type: ["Poison"], 752 | height: "0.79 m", 753 | weight: "20.0 kg", 754 | candy: "Nidoran ♀ (Female) Candy", 755 | candy_count: 100, 756 | egg: "Not in Eggs", 757 | spawn_chance: 0.088, 758 | avg_spawns: 8.8, 759 | spawn_time: "07:22", 760 | multipliers: [1.83, 2.48], 761 | weaknesses: ["Ground", "Psychic"], 762 | prev_evolution: [ 763 | { 764 | num: "029", 765 | name: "Nidoran(Female)", 766 | }, 767 | ], 768 | next_evolution: [ 769 | { 770 | num: "031", 771 | name: "Nidoqueen", 772 | }, 773 | ], 774 | }, 775 | { 776 | id: 31, 777 | num: "031", 778 | name: "Nidoqueen", 779 | img: "http://www.serebii.net/pokemongo/pokemon/031.png", 780 | type: ["Poison", "Ground"], 781 | height: "1.30 m", 782 | weight: "60.0 kg", 783 | candy: "Nidoran ♀ (Female) Candy", 784 | egg: "Not in Eggs", 785 | spawn_chance: 0.012, 786 | avg_spawns: 1.2, 787 | spawn_time: "12:35", 788 | multipliers: null, 789 | weaknesses: ["Water", "Ice", "Ground", "Psychic"], 790 | prev_evolution: [ 791 | { 792 | num: "029", 793 | name: "Nidoran(Female)", 794 | }, 795 | { 796 | num: "030", 797 | name: "Nidorina", 798 | }, 799 | ], 800 | }, 801 | { 802 | id: 32, 803 | num: "032", 804 | name: "Nidoran ♂ (Male)", 805 | img: "http://www.serebii.net/pokemongo/pokemon/032.png", 806 | type: ["Poison"], 807 | height: "0.51 m", 808 | weight: "9.0 kg", 809 | candy: "Nidoran ♂ (Male) Candy", 810 | candy_count: 25, 811 | egg: "5 km", 812 | spawn_chance: 1.31, 813 | avg_spawns: 131, 814 | spawn_time: "01:12", 815 | multipliers: [1.64, 1.7], 816 | weaknesses: ["Ground", "Psychic"], 817 | next_evolution: [ 818 | { 819 | num: "033", 820 | name: "Nidorino", 821 | }, 822 | { 823 | num: "034", 824 | name: "Nidoking", 825 | }, 826 | ], 827 | }, 828 | { 829 | id: 33, 830 | num: "033", 831 | name: "Nidorino", 832 | img: "http://www.serebii.net/pokemongo/pokemon/033.png", 833 | type: ["Poison"], 834 | height: "0.89 m", 835 | weight: "19.5 kg", 836 | candy: "Nidoran ♂ (Male) Candy", 837 | candy_count: 100, 838 | egg: "Not in Eggs", 839 | spawn_chance: 0.083, 840 | avg_spawns: 8.3, 841 | spawn_time: "09:02", 842 | multipliers: [1.83], 843 | weaknesses: ["Ground", "Psychic"], 844 | prev_evolution: [ 845 | { 846 | num: "032", 847 | name: "Nidoran(Male)", 848 | }, 849 | ], 850 | next_evolution: [ 851 | { 852 | num: "034", 853 | name: "Nidoking", 854 | }, 855 | ], 856 | }, 857 | { 858 | id: 34, 859 | num: "034", 860 | name: "Nidoking", 861 | img: "http://www.serebii.net/pokemongo/pokemon/034.png", 862 | type: ["Poison", "Ground"], 863 | height: "1.40 m", 864 | weight: "62.0 kg", 865 | candy: "Nidoran ♂ (Male) Candy", 866 | egg: "Not in Eggs", 867 | spawn_chance: 0.017, 868 | avg_spawns: 1.7, 869 | spawn_time: "12:16", 870 | multipliers: null, 871 | weaknesses: ["Water", "Ice", "Ground", "Psychic"], 872 | prev_evolution: [ 873 | { 874 | num: "032", 875 | name: "Nidoran(Male)", 876 | }, 877 | { 878 | num: "033", 879 | name: "Nidorino", 880 | }, 881 | ], 882 | }, 883 | { 884 | id: 35, 885 | num: "035", 886 | name: "Clefairy", 887 | img: "http://www.serebii.net/pokemongo/pokemon/035.png", 888 | type: ["Normal"], 889 | height: "0.61 m", 890 | weight: "7.5 kg", 891 | candy: "Clefairy Candy", 892 | candy_count: 50, 893 | egg: "2 km", 894 | spawn_chance: 0.92, 895 | avg_spawns: 92, 896 | spawn_time: "03:30", 897 | multipliers: [2.03, 2.14], 898 | weaknesses: ["Fighting"], 899 | next_evolution: [ 900 | { 901 | num: "036", 902 | name: "Clefable", 903 | }, 904 | ], 905 | }, 906 | { 907 | id: 36, 908 | num: "036", 909 | name: "Clefable", 910 | img: "http://www.serebii.net/pokemongo/pokemon/036.png", 911 | type: ["Normal"], 912 | height: "1.30 m", 913 | weight: "40.0 kg", 914 | candy: "Clefairy Candy", 915 | egg: "Not in Eggs", 916 | spawn_chance: 0.012, 917 | avg_spawns: 1.2, 918 | spawn_time: "03:29", 919 | multipliers: null, 920 | weaknesses: ["Fighting"], 921 | prev_evolution: [ 922 | { 923 | num: "035", 924 | name: "Clefairy", 925 | }, 926 | ], 927 | }, 928 | { 929 | id: 37, 930 | num: "037", 931 | name: "Vulpix", 932 | img: "http://www.serebii.net/pokemongo/pokemon/037.png", 933 | type: ["Fire"], 934 | height: "0.61 m", 935 | weight: "9.9 kg", 936 | candy: "Vulpix Candy", 937 | candy_count: 50, 938 | egg: "5 km", 939 | spawn_chance: 0.22, 940 | avg_spawns: 22, 941 | spawn_time: "13:43", 942 | multipliers: [2.74, 2.81], 943 | weaknesses: ["Water", "Ground", "Rock"], 944 | next_evolution: [ 945 | { 946 | num: "038", 947 | name: "Ninetales", 948 | }, 949 | ], 950 | }, 951 | { 952 | id: 38, 953 | num: "038", 954 | name: "Ninetales", 955 | img: "http://www.serebii.net/pokemongo/pokemon/038.png", 956 | type: ["Fire"], 957 | height: "1.09 m", 958 | weight: "19.9 kg", 959 | candy: "Vulpix Candy", 960 | egg: "Not in Eggs", 961 | spawn_chance: 0.0077, 962 | avg_spawns: 0.77, 963 | spawn_time: "01:32", 964 | multipliers: null, 965 | weaknesses: ["Water", "Ground", "Rock"], 966 | prev_evolution: [ 967 | { 968 | num: "037", 969 | name: "Vulpix", 970 | }, 971 | ], 972 | }, 973 | { 974 | id: 39, 975 | num: "039", 976 | name: "Jigglypuff", 977 | img: "http://www.serebii.net/pokemongo/pokemon/039.png", 978 | type: ["Normal"], 979 | height: "0.51 m", 980 | weight: "5.5 kg", 981 | candy: "Jigglypuff Candy", 982 | candy_count: 50, 983 | egg: "2 km", 984 | spawn_chance: 0.39, 985 | avg_spawns: 39, 986 | spawn_time: "08:46", 987 | multipliers: [1.85], 988 | weaknesses: ["Fighting"], 989 | next_evolution: [ 990 | { 991 | num: "040", 992 | name: "Wigglytuff", 993 | }, 994 | ], 995 | }, 996 | { 997 | id: 40, 998 | num: "040", 999 | name: "Wigglytuff", 1000 | img: "http://www.serebii.net/pokemongo/pokemon/040.png", 1001 | type: ["Normal"], 1002 | height: "0.99 m", 1003 | weight: "12.0 kg", 1004 | candy: "Jigglypuff Candy", 1005 | egg: "Not in Eggs", 1006 | spawn_chance: 0.018, 1007 | avg_spawns: 1.8, 1008 | spawn_time: "12:28", 1009 | multipliers: null, 1010 | weaknesses: ["Fighting"], 1011 | prev_evolution: [ 1012 | { 1013 | num: "039", 1014 | name: "Jigglypuff", 1015 | }, 1016 | ], 1017 | }, 1018 | { 1019 | id: 41, 1020 | num: "041", 1021 | name: "Zubat", 1022 | img: "http://www.serebii.net/pokemongo/pokemon/041.png", 1023 | type: ["Poison", "Flying"], 1024 | height: "0.79 m", 1025 | weight: "7.5 kg", 1026 | candy: "Zubat Candy", 1027 | candy_count: 50, 1028 | egg: "2 km", 1029 | spawn_chance: 6.52, 1030 | avg_spawns: 652, 1031 | spawn_time: "12:28", 1032 | multipliers: [2.6, 3.67], 1033 | weaknesses: ["Electric", "Ice", "Psychic", "Rock"], 1034 | next_evolution: [ 1035 | { 1036 | num: "042", 1037 | name: "Golbat", 1038 | }, 1039 | ], 1040 | }, 1041 | { 1042 | id: 42, 1043 | num: "042", 1044 | name: "Golbat", 1045 | img: "http://www.serebii.net/pokemongo/pokemon/042.png", 1046 | type: ["Poison", "Flying"], 1047 | height: "1.60 m", 1048 | weight: "55.0 kg", 1049 | candy: "Zubat Candy", 1050 | egg: "Not in Eggs", 1051 | spawn_chance: 0.42, 1052 | avg_spawns: 42, 1053 | spawn_time: "02:15", 1054 | multipliers: null, 1055 | weaknesses: ["Electric", "Ice", "Psychic", "Rock"], 1056 | prev_evolution: [ 1057 | { 1058 | num: "041", 1059 | name: "Zubat", 1060 | }, 1061 | ], 1062 | }, 1063 | { 1064 | id: 43, 1065 | num: "043", 1066 | name: "Oddish", 1067 | img: "http://www.serebii.net/pokemongo/pokemon/043.png", 1068 | type: ["Grass", "Poison"], 1069 | height: "0.51 m", 1070 | weight: "5.4 kg", 1071 | candy: "Oddish Candy", 1072 | candy_count: 25, 1073 | egg: "5 km", 1074 | spawn_chance: 1.02, 1075 | avg_spawns: 102, 1076 | spawn_time: "03:58", 1077 | multipliers: [1.5], 1078 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 1079 | next_evolution: [ 1080 | { 1081 | num: "044", 1082 | name: "Gloom", 1083 | }, 1084 | { 1085 | num: "045", 1086 | name: "Vileplume", 1087 | }, 1088 | ], 1089 | }, 1090 | { 1091 | id: 44, 1092 | num: "044", 1093 | name: "Gloom", 1094 | img: "http://www.serebii.net/pokemongo/pokemon/044.png", 1095 | type: ["Grass", "Poison"], 1096 | height: "0.79 m", 1097 | weight: "8.6 kg", 1098 | candy: "Oddish Candy", 1099 | candy_count: 100, 1100 | egg: "Not in Eggs", 1101 | spawn_chance: 0.064, 1102 | avg_spawns: 6.4, 1103 | spawn_time: "11:33", 1104 | multipliers: [1.49], 1105 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 1106 | prev_evolution: [ 1107 | { 1108 | num: "043", 1109 | name: "Oddish", 1110 | }, 1111 | ], 1112 | next_evolution: [ 1113 | { 1114 | num: "045", 1115 | name: "Vileplume", 1116 | }, 1117 | ], 1118 | }, 1119 | { 1120 | id: 45, 1121 | num: "045", 1122 | name: "Vileplume", 1123 | img: "http://www.serebii.net/pokemongo/pokemon/045.png", 1124 | type: ["Grass", "Poison"], 1125 | height: "1.19 m", 1126 | weight: "18.6 kg", 1127 | candy: "Oddish Candy", 1128 | egg: "Not in Eggs", 1129 | spawn_chance: 0.0097, 1130 | avg_spawns: 0.97, 1131 | spawn_time: "23:58", 1132 | multipliers: null, 1133 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 1134 | prev_evolution: [ 1135 | { 1136 | num: "043", 1137 | name: "Oddish", 1138 | }, 1139 | { 1140 | num: "044", 1141 | name: "Gloom", 1142 | }, 1143 | ], 1144 | }, 1145 | { 1146 | id: 46, 1147 | num: "046", 1148 | name: "Paras", 1149 | img: "http://www.serebii.net/pokemongo/pokemon/046.png", 1150 | type: ["Bug", "Grass"], 1151 | height: "0.30 m", 1152 | weight: "5.4 kg", 1153 | candy: "Paras Candy", 1154 | candy_count: 50, 1155 | egg: "5 km", 1156 | spawn_chance: 2.36, 1157 | avg_spawns: 236, 1158 | spawn_time: "01:42", 1159 | multipliers: [2.02], 1160 | weaknesses: ["Fire", "Ice", "Poison", "Flying", "Bug", "Rock"], 1161 | next_evolution: [ 1162 | { 1163 | num: "047", 1164 | name: "Parasect", 1165 | }, 1166 | ], 1167 | }, 1168 | { 1169 | id: 47, 1170 | num: "047", 1171 | name: "Parasect", 1172 | img: "http://www.serebii.net/pokemongo/pokemon/047.png", 1173 | type: ["Bug", "Grass"], 1174 | height: "0.99 m", 1175 | weight: "29.5 kg", 1176 | candy: "Paras Candy", 1177 | egg: "Not in Eggs", 1178 | spawn_chance: 0.074, 1179 | avg_spawns: 7.4, 1180 | spawn_time: "01:22", 1181 | multipliers: null, 1182 | weaknesses: ["Fire", "Ice", "Poison", "Flying", "Bug", "Rock"], 1183 | prev_evolution: [ 1184 | { 1185 | num: "046", 1186 | name: "Paras", 1187 | }, 1188 | ], 1189 | }, 1190 | { 1191 | id: 48, 1192 | num: "048", 1193 | name: "Venonat", 1194 | img: "http://www.serebii.net/pokemongo/pokemon/048.png", 1195 | type: ["Bug", "Poison"], 1196 | height: "0.99 m", 1197 | weight: "30.0 kg", 1198 | candy: "Venonat Candy", 1199 | candy_count: 50, 1200 | egg: "5 km", 1201 | spawn_chance: 2.28, 1202 | avg_spawns: 228, 1203 | spawn_time: "02:31", 1204 | multipliers: [1.86, 1.9], 1205 | weaknesses: ["Fire", "Flying", "Psychic", "Rock"], 1206 | next_evolution: [ 1207 | { 1208 | num: "049", 1209 | name: "Venomoth", 1210 | }, 1211 | ], 1212 | }, 1213 | { 1214 | id: 49, 1215 | num: "049", 1216 | name: "Venomoth", 1217 | img: "http://www.serebii.net/pokemongo/pokemon/049.png", 1218 | type: ["Bug", "Poison"], 1219 | height: "1.50 m", 1220 | weight: "12.5 kg", 1221 | candy: "Venonat Candy", 1222 | egg: "Not in Eggs", 1223 | spawn_chance: 0.072, 1224 | avg_spawns: 7.2, 1225 | spawn_time: "23:40", 1226 | multipliers: null, 1227 | weaknesses: ["Fire", "Flying", "Psychic", "Rock"], 1228 | prev_evolution: [ 1229 | { 1230 | num: "048", 1231 | name: "Venonat", 1232 | }, 1233 | ], 1234 | }, 1235 | { 1236 | id: 50, 1237 | num: "050", 1238 | name: "Diglett", 1239 | img: "http://www.serebii.net/pokemongo/pokemon/050.png", 1240 | type: ["Ground"], 1241 | height: "0.20 m", 1242 | weight: "0.8 kg", 1243 | candy: "Diglett Candy", 1244 | candy_count: 50, 1245 | egg: "5 km", 1246 | spawn_chance: 0.4, 1247 | avg_spawns: 40, 1248 | spawn_time: "02:22", 1249 | multipliers: [2.69], 1250 | weaknesses: ["Water", "Grass", "Ice"], 1251 | next_evolution: [ 1252 | { 1253 | num: "051", 1254 | name: "Dugtrio", 1255 | }, 1256 | ], 1257 | }, 1258 | { 1259 | id: 51, 1260 | num: "051", 1261 | name: "Dugtrio", 1262 | img: "http://www.serebii.net/pokemongo/pokemon/051.png", 1263 | type: ["Ground"], 1264 | height: "0.71 m", 1265 | weight: "33.3 kg", 1266 | candy: "Dugtrio", 1267 | egg: "Not in Eggs", 1268 | spawn_chance: 0.014, 1269 | avg_spawns: 1.4, 1270 | spawn_time: "12:37", 1271 | multipliers: null, 1272 | weaknesses: ["Water", "Grass", "Ice"], 1273 | prev_evolution: [ 1274 | { 1275 | num: "050", 1276 | name: "Diglett", 1277 | }, 1278 | ], 1279 | }, 1280 | { 1281 | id: 52, 1282 | num: "052", 1283 | name: "Meowth", 1284 | img: "http://www.serebii.net/pokemongo/pokemon/052.png", 1285 | type: ["Normal"], 1286 | height: "0.41 m", 1287 | weight: "4.2 kg", 1288 | candy: "Meowth Candy", 1289 | candy_count: 50, 1290 | egg: "5 km", 1291 | spawn_chance: 0.86, 1292 | avg_spawns: 86, 1293 | spawn_time: "02:54", 1294 | multipliers: [1.98], 1295 | weaknesses: ["Fighting"], 1296 | next_evolution: [ 1297 | { 1298 | num: "053", 1299 | name: "Persian", 1300 | }, 1301 | ], 1302 | }, 1303 | { 1304 | id: 53, 1305 | num: "053", 1306 | name: "Persian", 1307 | img: "http://www.serebii.net/pokemongo/pokemon/053.png", 1308 | type: ["Normal"], 1309 | height: "0.99 m", 1310 | weight: "32.0 kg", 1311 | candy: "Meowth Candy", 1312 | egg: "Not in Eggs", 1313 | spawn_chance: 0.022, 1314 | avg_spawns: 2.2, 1315 | spawn_time: "02:44", 1316 | multipliers: null, 1317 | weaknesses: ["Fighting"], 1318 | prev_evolution: [ 1319 | { 1320 | num: "052", 1321 | name: "Meowth", 1322 | }, 1323 | ], 1324 | }, 1325 | { 1326 | id: 54, 1327 | num: "054", 1328 | name: "Psyduck", 1329 | img: "http://www.serebii.net/pokemongo/pokemon/054.png", 1330 | type: ["Water"], 1331 | height: "0.79 m", 1332 | weight: "19.6 kg", 1333 | candy: "Psyduck Candy", 1334 | candy_count: 50, 1335 | egg: "5 km", 1336 | spawn_chance: 2.54, 1337 | avg_spawns: 254, 1338 | spawn_time: "03:41", 1339 | multipliers: [2.27], 1340 | weaknesses: ["Electric", "Grass"], 1341 | next_evolution: [ 1342 | { 1343 | num: "055", 1344 | name: "Golduck", 1345 | }, 1346 | ], 1347 | }, 1348 | { 1349 | id: 55, 1350 | num: "055", 1351 | name: "Golduck", 1352 | img: "http://www.serebii.net/pokemongo/pokemon/055.png", 1353 | type: ["Water"], 1354 | height: "1.70 m", 1355 | weight: "76.6 kg", 1356 | candy: "Psyduck Candy", 1357 | egg: "Not in Eggs", 1358 | spawn_chance: 0.087, 1359 | avg_spawns: 8.7, 1360 | spawn_time: "23:06", 1361 | multipliers: null, 1362 | weaknesses: ["Electric", "Grass"], 1363 | prev_evolution: [ 1364 | { 1365 | num: "054", 1366 | name: "Psyduck", 1367 | }, 1368 | ], 1369 | }, 1370 | { 1371 | id: 56, 1372 | num: "056", 1373 | name: "Mankey", 1374 | img: "http://www.serebii.net/pokemongo/pokemon/056.png", 1375 | type: ["Fighting"], 1376 | height: "0.51 m", 1377 | weight: "28.0 kg", 1378 | candy: "Mankey Candy", 1379 | candy_count: 50, 1380 | egg: "5 km", 1381 | spawn_chance: 0.92, 1382 | avg_spawns: 92, 1383 | spawn_time: "12:52", 1384 | multipliers: [2.17, 2.28], 1385 | weaknesses: ["Flying", "Psychic", "Fairy"], 1386 | next_evolution: [ 1387 | { 1388 | num: "057", 1389 | name: "Primeape", 1390 | }, 1391 | ], 1392 | }, 1393 | { 1394 | id: 57, 1395 | num: "057", 1396 | name: "Primeape", 1397 | img: "http://www.serebii.net/pokemongo/pokemon/057.png", 1398 | type: ["Fighting"], 1399 | height: "0.99 m", 1400 | weight: "32.0 kg", 1401 | candy: "Mankey Candy", 1402 | egg: "Not in Eggs", 1403 | spawn_chance: 0.031, 1404 | avg_spawns: 3.1, 1405 | spawn_time: "12:33", 1406 | multipliers: null, 1407 | weaknesses: ["Flying", "Psychic", "Fairy"], 1408 | prev_evolution: [ 1409 | { 1410 | num: "056", 1411 | name: "Mankey", 1412 | }, 1413 | ], 1414 | }, 1415 | { 1416 | id: 58, 1417 | num: "058", 1418 | name: "Growlithe", 1419 | img: "http://www.serebii.net/pokemongo/pokemon/058.png", 1420 | type: ["Fire"], 1421 | height: "0.71 m", 1422 | weight: "19.0 kg", 1423 | candy: "Growlithe Candy", 1424 | candy_count: 50, 1425 | egg: "5 km", 1426 | spawn_chance: 0.92, 1427 | avg_spawns: 92, 1428 | spawn_time: "03:57", 1429 | multipliers: [2.31, 2.36], 1430 | weaknesses: ["Water", "Ground", "Rock"], 1431 | next_evolution: [ 1432 | { 1433 | num: "059", 1434 | name: "Arcanine", 1435 | }, 1436 | ], 1437 | }, 1438 | { 1439 | id: 59, 1440 | num: "059", 1441 | name: "Arcanine", 1442 | img: "http://www.serebii.net/pokemongo/pokemon/059.png", 1443 | type: ["Fire"], 1444 | height: "1.91 m", 1445 | weight: "155.0 kg", 1446 | candy: "Growlithe Candy", 1447 | egg: "Not in Eggs", 1448 | spawn_chance: 0.017, 1449 | avg_spawns: 1.7, 1450 | spawn_time: "03:11", 1451 | multipliers: null, 1452 | weaknesses: ["Water", "Ground", "Rock"], 1453 | prev_evolution: [ 1454 | { 1455 | num: "058", 1456 | name: "Growlithe", 1457 | }, 1458 | ], 1459 | }, 1460 | { 1461 | id: 60, 1462 | num: "060", 1463 | name: "Poliwag", 1464 | img: "http://www.serebii.net/pokemongo/pokemon/060.png", 1465 | type: ["Water"], 1466 | height: "0.61 m", 1467 | weight: "12.4 kg", 1468 | candy: "Poliwag Candy", 1469 | candy_count: 25, 1470 | egg: "5 km", 1471 | spawn_chance: 2.19, 1472 | avg_spawns: 219, 1473 | spawn_time: "03:40", 1474 | multipliers: [1.72, 1.73], 1475 | weaknesses: ["Electric", "Grass"], 1476 | next_evolution: [ 1477 | { 1478 | num: "061", 1479 | name: "Poliwhirl", 1480 | }, 1481 | { 1482 | num: "062", 1483 | name: "Poliwrath", 1484 | }, 1485 | ], 1486 | }, 1487 | { 1488 | id: 61, 1489 | num: "061", 1490 | name: "Poliwhirl", 1491 | img: "http://www.serebii.net/pokemongo/pokemon/061.png", 1492 | type: ["Water"], 1493 | height: "0.99 m", 1494 | weight: "20.0 kg", 1495 | candy: "Poliwag Candy", 1496 | candy_count: 100, 1497 | egg: "Not in Eggs", 1498 | spawn_chance: 0.13, 1499 | avg_spawns: 13, 1500 | spawn_time: "09:14", 1501 | multipliers: [1.95], 1502 | weaknesses: ["Electric", "Grass"], 1503 | prev_evolution: [ 1504 | { 1505 | num: "060", 1506 | name: "Poliwag", 1507 | }, 1508 | ], 1509 | next_evolution: [ 1510 | { 1511 | num: "062", 1512 | name: "Poliwrath", 1513 | }, 1514 | ], 1515 | }, 1516 | { 1517 | id: 62, 1518 | num: "062", 1519 | name: "Poliwrath", 1520 | img: "http://www.serebii.net/pokemongo/pokemon/062.png", 1521 | type: ["Water", "Fighting"], 1522 | height: "1.30 m", 1523 | weight: "54.0 kg", 1524 | candy: "Poliwag Candy", 1525 | egg: "Not in Eggs", 1526 | spawn_chance: 0.011, 1527 | avg_spawns: 1.1, 1528 | spawn_time: "01:32", 1529 | multipliers: null, 1530 | weaknesses: ["Electric", "Grass", "Flying", "Psychic", "Fairy"], 1531 | prev_evolution: [ 1532 | { 1533 | num: "060", 1534 | name: "Poliwag", 1535 | }, 1536 | { 1537 | num: "061", 1538 | name: "Poliwhirl", 1539 | }, 1540 | ], 1541 | }, 1542 | { 1543 | id: 63, 1544 | num: "063", 1545 | name: "Abra", 1546 | img: "http://www.serebii.net/pokemongo/pokemon/063.png", 1547 | type: ["Psychic"], 1548 | height: "0.89 m", 1549 | weight: "19.5 kg", 1550 | candy: "Abra Candy", 1551 | candy_count: 25, 1552 | egg: "5 km", 1553 | spawn_chance: 0.42, 1554 | avg_spawns: 42, 1555 | spawn_time: "04:30", 1556 | multipliers: [1.36, 1.95], 1557 | weaknesses: ["Bug", "Ghost", "Dark"], 1558 | next_evolution: [ 1559 | { 1560 | num: "064", 1561 | name: "Kadabra", 1562 | }, 1563 | { 1564 | num: "065", 1565 | name: "Alakazam", 1566 | }, 1567 | ], 1568 | }, 1569 | { 1570 | id: 64, 1571 | num: "064", 1572 | name: "Kadabra", 1573 | img: "http://www.serebii.net/pokemongo/pokemon/064.png", 1574 | type: ["Psychic"], 1575 | height: "1.30 m", 1576 | weight: "56.5 kg", 1577 | candy: "Abra Candy", 1578 | candy_count: 100, 1579 | egg: "Not in Eggs", 1580 | spawn_chance: 0.027, 1581 | avg_spawns: 2.7, 1582 | spawn_time: "11:25", 1583 | multipliers: [1.4], 1584 | weaknesses: ["Bug", "Ghost", "Dark"], 1585 | prev_evolution: [ 1586 | { 1587 | num: "063", 1588 | name: "Abra", 1589 | }, 1590 | ], 1591 | next_evolution: [ 1592 | { 1593 | num: "065", 1594 | name: "Alakazam", 1595 | }, 1596 | ], 1597 | }, 1598 | { 1599 | id: 65, 1600 | num: "065", 1601 | name: "Alakazam", 1602 | img: "http://www.serebii.net/pokemongo/pokemon/065.png", 1603 | type: ["Psychic"], 1604 | height: "1.50 m", 1605 | weight: "48.0 kg", 1606 | candy: "Abra Candy", 1607 | egg: "Not in Eggs", 1608 | spawn_chance: 0.0073, 1609 | avg_spawns: 0.73, 1610 | spawn_time: "12:33", 1611 | multipliers: null, 1612 | weaknesses: ["Bug", "Ghost", "Dark"], 1613 | prev_evolution: [ 1614 | { 1615 | num: "063", 1616 | name: "Abra", 1617 | }, 1618 | { 1619 | num: "064", 1620 | name: "Kadabra", 1621 | }, 1622 | ], 1623 | }, 1624 | { 1625 | id: 66, 1626 | num: "066", 1627 | name: "Machop", 1628 | img: "http://www.serebii.net/pokemongo/pokemon/066.png", 1629 | type: ["Fighting"], 1630 | height: "0.79 m", 1631 | weight: "19.5 kg", 1632 | candy: "Machop Candy", 1633 | candy_count: 25, 1634 | egg: "5 km", 1635 | spawn_chance: 0.49, 1636 | avg_spawns: 49, 1637 | spawn_time: "01:55", 1638 | multipliers: [1.64, 1.65], 1639 | weaknesses: ["Flying", "Psychic", "Fairy"], 1640 | next_evolution: [ 1641 | { 1642 | num: "067", 1643 | name: "Machoke", 1644 | }, 1645 | { 1646 | num: "068", 1647 | name: "Machamp", 1648 | }, 1649 | ], 1650 | }, 1651 | { 1652 | id: 67, 1653 | num: "067", 1654 | name: "Machoke", 1655 | img: "http://www.serebii.net/pokemongo/pokemon/067.png", 1656 | type: ["Fighting"], 1657 | height: "1.50 m", 1658 | weight: "70.5 kg", 1659 | candy: "Machop Candy", 1660 | candy_count: 100, 1661 | egg: "Not in Eggs", 1662 | spawn_chance: 0.034, 1663 | avg_spawns: 3.4, 1664 | spawn_time: "10:32", 1665 | multipliers: [1.7], 1666 | weaknesses: ["Flying", "Psychic", "Fairy"], 1667 | prev_evolution: [ 1668 | { 1669 | num: "066", 1670 | name: "Machop", 1671 | }, 1672 | ], 1673 | next_evolution: [ 1674 | { 1675 | num: "068", 1676 | name: "Machamp", 1677 | }, 1678 | ], 1679 | }, 1680 | { 1681 | id: 68, 1682 | num: "068", 1683 | name: "Machamp", 1684 | img: "http://www.serebii.net/pokemongo/pokemon/068.png", 1685 | type: ["Fighting"], 1686 | height: "1.60 m", 1687 | weight: "130.0 kg", 1688 | candy: "Machop Candy", 1689 | egg: "Not in Eggs", 1690 | spawn_chance: 0.0068, 1691 | avg_spawns: 0.68, 1692 | spawn_time: "02:55", 1693 | multipliers: null, 1694 | weaknesses: ["Flying", "Psychic", "Fairy"], 1695 | prev_evolution: [ 1696 | { 1697 | num: "066", 1698 | name: "Machop", 1699 | }, 1700 | { 1701 | num: "067", 1702 | name: "Machoke", 1703 | }, 1704 | ], 1705 | }, 1706 | { 1707 | id: 69, 1708 | num: "069", 1709 | name: "Bellsprout", 1710 | img: "http://www.serebii.net/pokemongo/pokemon/069.png", 1711 | type: ["Grass", "Poison"], 1712 | height: "0.71 m", 1713 | weight: "4.0 kg", 1714 | candy: "Bellsprout Candy", 1715 | candy_count: 25, 1716 | egg: "5 km", 1717 | spawn_chance: 1.15, 1718 | avg_spawns: 115, 1719 | spawn_time: "04:10", 1720 | multipliers: [1.57], 1721 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 1722 | next_evolution: [ 1723 | { 1724 | num: "070", 1725 | name: "Weepinbell", 1726 | }, 1727 | { 1728 | num: "071", 1729 | name: "Victreebel", 1730 | }, 1731 | ], 1732 | }, 1733 | { 1734 | id: 70, 1735 | num: "070", 1736 | name: "Weepinbell", 1737 | img: "http://www.serebii.net/pokemongo/pokemon/070.png", 1738 | type: ["Grass", "Poison"], 1739 | height: "0.99 m", 1740 | weight: "6.4 kg", 1741 | candy: "Bellsprout Candy", 1742 | candy_count: 100, 1743 | egg: "Not in Eggs", 1744 | spawn_chance: 0.072, 1745 | avg_spawns: 7.2, 1746 | spawn_time: "09:45", 1747 | multipliers: [1.59], 1748 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 1749 | prev_evolution: [ 1750 | { 1751 | num: "069", 1752 | name: "Bellsprout", 1753 | }, 1754 | ], 1755 | next_evolution: [ 1756 | { 1757 | num: "071", 1758 | name: "Victreebel", 1759 | }, 1760 | ], 1761 | }, 1762 | { 1763 | id: 71, 1764 | num: "071", 1765 | name: "Victreebel", 1766 | img: "http://www.serebii.net/pokemongo/pokemon/071.png", 1767 | type: ["Grass", "Poison"], 1768 | height: "1.70 m", 1769 | weight: "15.5 kg", 1770 | candy: "Bellsprout Candy", 1771 | egg: "Not in Eggs", 1772 | spawn_chance: 0.0059, 1773 | avg_spawns: 0.59, 1774 | spawn_time: "12:19", 1775 | multipliers: null, 1776 | weaknesses: ["Fire", "Ice", "Flying", "Psychic"], 1777 | prev_evolution: [ 1778 | { 1779 | num: "069", 1780 | name: "Bellsprout", 1781 | }, 1782 | { 1783 | num: "070", 1784 | name: "Weepinbell", 1785 | }, 1786 | ], 1787 | }, 1788 | { 1789 | id: 72, 1790 | num: "072", 1791 | name: "Tentacool", 1792 | img: "http://www.serebii.net/pokemongo/pokemon/072.png", 1793 | type: ["Water", "Poison"], 1794 | height: "0.89 m", 1795 | weight: "45.5 kg", 1796 | candy: "Tentacool Candy", 1797 | candy_count: 50, 1798 | egg: "5 km", 1799 | spawn_chance: 0.81, 1800 | avg_spawns: 81, 1801 | spawn_time: "03:20", 1802 | multipliers: [2.52], 1803 | weaknesses: ["Electric", "Ground", "Psychic"], 1804 | next_evolution: [ 1805 | { 1806 | num: "073", 1807 | name: "Tentacruel", 1808 | }, 1809 | ], 1810 | }, 1811 | { 1812 | id: 73, 1813 | num: "073", 1814 | name: "Tentacruel", 1815 | img: "http://www.serebii.net/pokemongo/pokemon/073.png", 1816 | type: ["Water", "Poison"], 1817 | height: "1.60 m", 1818 | weight: "55.0 kg", 1819 | candy: "Tentacool Candy", 1820 | egg: "Not in Eggs", 1821 | spawn_chance: 0.082, 1822 | avg_spawns: 8.2, 1823 | spawn_time: "23:36", 1824 | multipliers: null, 1825 | weaknesses: ["Electric", "Ground", "Psychic"], 1826 | prev_evolution: [ 1827 | { 1828 | num: "072", 1829 | name: "Tentacool", 1830 | }, 1831 | ], 1832 | }, 1833 | { 1834 | id: 74, 1835 | num: "074", 1836 | name: "Geodude", 1837 | img: "http://www.serebii.net/pokemongo/pokemon/074.png", 1838 | type: ["Rock", "Ground"], 1839 | height: "0.41 m", 1840 | weight: "20.0 kg", 1841 | candy: "Geodude Candy", 1842 | candy_count: 25, 1843 | egg: "2 km", 1844 | spawn_chance: 1.19, 1845 | avg_spawns: 119, 1846 | spawn_time: "12:40", 1847 | multipliers: [1.75, 1.76], 1848 | weaknesses: ["Water", "Grass", "Ice", "Fighting", "Ground", "Steel"], 1849 | next_evolution: [ 1850 | { 1851 | num: "075", 1852 | name: "Graveler", 1853 | }, 1854 | { 1855 | num: "076", 1856 | name: "Golem", 1857 | }, 1858 | ], 1859 | }, 1860 | { 1861 | id: 75, 1862 | num: "075", 1863 | name: "Graveler", 1864 | img: "http://www.serebii.net/pokemongo/pokemon/075.png", 1865 | type: ["Rock", "Ground"], 1866 | height: "0.99 m", 1867 | weight: "105.0 kg", 1868 | candy: "Geodude Candy", 1869 | candy_count: 100, 1870 | egg: "Not in Eggs", 1871 | spawn_chance: 0.071, 1872 | avg_spawns: 7.1, 1873 | spawn_time: "04:53", 1874 | multipliers: [1.64, 1.72], 1875 | weaknesses: ["Water", "Grass", "Ice", "Fighting", "Ground", "Steel"], 1876 | prev_evolution: [ 1877 | { 1878 | num: "074", 1879 | name: "Geodude", 1880 | }, 1881 | ], 1882 | next_evolution: [ 1883 | { 1884 | num: "076", 1885 | name: "Golem", 1886 | }, 1887 | ], 1888 | }, 1889 | { 1890 | id: 76, 1891 | num: "076", 1892 | name: "Golem", 1893 | img: "http://www.serebii.net/pokemongo/pokemon/076.png", 1894 | type: ["Rock", "Ground"], 1895 | height: "1.40 m", 1896 | weight: "300.0 kg", 1897 | candy: "Geodude Candy", 1898 | egg: "Not in Eggs", 1899 | spawn_chance: 0.0047, 1900 | avg_spawns: 0.47, 1901 | spawn_time: "12:16", 1902 | multipliers: null, 1903 | weaknesses: ["Water", "Grass", "Ice", "Fighting", "Ground", "Steel"], 1904 | prev_evolution: [ 1905 | { 1906 | num: "074", 1907 | name: "Geodude", 1908 | }, 1909 | { 1910 | num: "075", 1911 | name: "Graveler", 1912 | }, 1913 | ], 1914 | }, 1915 | { 1916 | id: 77, 1917 | num: "077", 1918 | name: "Ponyta", 1919 | img: "http://www.serebii.net/pokemongo/pokemon/077.png", 1920 | type: ["Fire"], 1921 | height: "0.99 m", 1922 | weight: "30.0 kg", 1923 | candy: "Ponyta Candy", 1924 | candy_count: 50, 1925 | egg: "5 km", 1926 | spawn_chance: 0.51, 1927 | avg_spawns: 51, 1928 | spawn_time: "02:50", 1929 | multipliers: [1.48, 1.5], 1930 | weaknesses: ["Water", "Ground", "Rock"], 1931 | next_evolution: [ 1932 | { 1933 | num: "078", 1934 | name: "Rapidash", 1935 | }, 1936 | ], 1937 | }, 1938 | { 1939 | id: 78, 1940 | num: "078", 1941 | name: "Rapidash", 1942 | img: "http://www.serebii.net/pokemongo/pokemon/078.png", 1943 | type: ["Fire"], 1944 | height: "1.70 m", 1945 | weight: "95.0 kg", 1946 | candy: "Ponyta Candy", 1947 | egg: "Not in Eggs", 1948 | spawn_chance: 0.011, 1949 | avg_spawns: 1.1, 1950 | spawn_time: "04:00", 1951 | multipliers: null, 1952 | weaknesses: ["Water", "Ground", "Rock"], 1953 | prev_evolution: [ 1954 | { 1955 | num: "077", 1956 | name: "Ponyta", 1957 | }, 1958 | ], 1959 | }, 1960 | { 1961 | id: 79, 1962 | num: "079", 1963 | name: "Slowpoke", 1964 | img: "http://www.serebii.net/pokemongo/pokemon/079.png", 1965 | type: ["Water", "Psychic"], 1966 | height: "1.19 m", 1967 | weight: "36.0 kg", 1968 | candy: "Slowpoke Candy", 1969 | candy_count: 50, 1970 | egg: "5 km", 1971 | spawn_chance: 1.05, 1972 | avg_spawns: 105, 1973 | spawn_time: "07:12", 1974 | multipliers: [2.21], 1975 | weaknesses: ["Electric", "Grass", "Bug", "Ghost", "Dark"], 1976 | next_evolution: [ 1977 | { 1978 | num: "080", 1979 | name: "Slowbro", 1980 | }, 1981 | ], 1982 | }, 1983 | { 1984 | id: 80, 1985 | num: "080", 1986 | name: "Slowbro", 1987 | img: "http://www.serebii.net/pokemongo/pokemon/080.png", 1988 | type: ["Water", "Psychic"], 1989 | height: "1.60 m", 1990 | weight: "78.5 kg", 1991 | candy: "Slowpoke Candy", 1992 | egg: "Not in Eggs", 1993 | spawn_chance: 0.036, 1994 | avg_spawns: 3.6, 1995 | spawn_time: "02:56", 1996 | multipliers: null, 1997 | weaknesses: ["Electric", "Grass", "Bug", "Ghost", "Dark"], 1998 | prev_evolution: [ 1999 | { 2000 | num: "079", 2001 | name: "Slowpoke", 2002 | }, 2003 | ], 2004 | }, 2005 | { 2006 | id: 81, 2007 | num: "081", 2008 | name: "Magnemite", 2009 | img: "http://www.serebii.net/pokemongo/pokemon/081.png", 2010 | type: ["Electric"], 2011 | height: "0.30 m", 2012 | weight: "6.0 kg", 2013 | candy: "Magnemite Candy", 2014 | candy_count: 50, 2015 | egg: "5 km", 2016 | spawn_chance: 0.71, 2017 | avg_spawns: 71, 2018 | spawn_time: "04:04", 2019 | multipliers: [2.16, 2.17], 2020 | weaknesses: ["Fire", "Water", "Ground"], 2021 | next_evolution: [ 2022 | { 2023 | num: "082", 2024 | name: "Magneton", 2025 | }, 2026 | ], 2027 | }, 2028 | { 2029 | id: 82, 2030 | num: "082", 2031 | name: "Magneton", 2032 | img: "http://www.serebii.net/pokemongo/pokemon/082.png", 2033 | type: ["Electric"], 2034 | height: "0.99 m", 2035 | weight: "60.0 kg", 2036 | candy: "Magnemite Candy", 2037 | egg: "Not in Eggs", 2038 | spawn_chance: 0.023, 2039 | avg_spawns: 2.3, 2040 | spawn_time: "15:25", 2041 | multipliers: null, 2042 | weaknesses: ["Fire", "Water", "Ground"], 2043 | prev_evolution: [ 2044 | { 2045 | num: "081", 2046 | name: "Magnemite", 2047 | }, 2048 | ], 2049 | }, 2050 | { 2051 | id: 83, 2052 | num: "083", 2053 | name: "Farfetch'd", 2054 | img: "http://www.serebii.net/pokemongo/pokemon/083.png", 2055 | type: ["Normal", "Flying"], 2056 | height: "0.79 m", 2057 | weight: "15.0 kg", 2058 | candy: "None", 2059 | egg: "5 km", 2060 | spawn_chance: 0.0212, 2061 | avg_spawns: 2.12, 2062 | spawn_time: "01:09", 2063 | multipliers: null, 2064 | weaknesses: ["Electric", "Rock"], 2065 | }, 2066 | { 2067 | id: 84, 2068 | num: "084", 2069 | name: "Doduo", 2070 | img: "http://www.serebii.net/pokemongo/pokemon/084.png", 2071 | type: ["Normal", "Flying"], 2072 | height: "1.40 m", 2073 | weight: "39.2 kg", 2074 | candy: "Doduo Candy", 2075 | candy_count: 50, 2076 | egg: "5 km", 2077 | spawn_chance: 0.52, 2078 | avg_spawns: 52, 2079 | spawn_time: "05:10", 2080 | multipliers: [2.19, 2.24], 2081 | weaknesses: ["Electric", "Rock"], 2082 | next_evolution: [ 2083 | { 2084 | num: "085", 2085 | name: "Dodrio", 2086 | }, 2087 | ], 2088 | }, 2089 | { 2090 | id: 85, 2091 | num: "085", 2092 | name: "Dodrio", 2093 | img: "http://www.serebii.net/pokemongo/pokemon/085.png", 2094 | type: ["Normal", "Flying"], 2095 | height: "1.80 m", 2096 | weight: "85.2 kg", 2097 | candy: "Doduo Candy", 2098 | egg: "Not in Eggs", 2099 | spawn_chance: 0.22, 2100 | avg_spawns: 22, 2101 | spawn_time: "02:12", 2102 | multipliers: null, 2103 | weaknesses: ["Electric", "Rock"], 2104 | prev_evolution: [ 2105 | { 2106 | num: "084", 2107 | name: "Doduo", 2108 | }, 2109 | ], 2110 | }, 2111 | { 2112 | id: 86, 2113 | num: "086", 2114 | name: "Seel", 2115 | img: "http://www.serebii.net/pokemongo/pokemon/086.png", 2116 | type: ["Water"], 2117 | height: "1.09 m", 2118 | weight: "90.0 kg", 2119 | candy: "Seel Candy", 2120 | candy_count: 50, 2121 | egg: "5 km", 2122 | spawn_chance: 0.28, 2123 | avg_spawns: 28, 2124 | spawn_time: "06:46", 2125 | multipliers: [1.04, 1.96], 2126 | weaknesses: ["Electric", "Grass"], 2127 | next_evolution: [ 2128 | { 2129 | num: "087", 2130 | name: "Dewgong", 2131 | }, 2132 | ], 2133 | }, 2134 | { 2135 | id: 87, 2136 | num: "087", 2137 | name: "Dewgong", 2138 | img: "http://www.serebii.net/pokemongo/pokemon/087.png", 2139 | type: ["Water", "Ice"], 2140 | height: "1.70 m", 2141 | weight: "120.0 kg", 2142 | candy: "Seel Candy", 2143 | egg: "Not in Eggs", 2144 | spawn_chance: 0.013, 2145 | avg_spawns: 1.3, 2146 | spawn_time: "06:04", 2147 | multipliers: null, 2148 | weaknesses: ["Electric", "Grass", "Fighting", "Rock"], 2149 | prev_evolution: [ 2150 | { 2151 | num: "086", 2152 | name: "Seel", 2153 | }, 2154 | ], 2155 | }, 2156 | { 2157 | id: 88, 2158 | num: "088", 2159 | name: "Grimer", 2160 | img: "http://www.serebii.net/pokemongo/pokemon/088.png", 2161 | type: ["Poison"], 2162 | height: "0.89 m", 2163 | weight: "30.0 kg", 2164 | candy: "Grimer Candy", 2165 | candy_count: 50, 2166 | egg: "5 km", 2167 | spawn_chance: 0.052, 2168 | avg_spawns: 5.2, 2169 | spawn_time: "15:11", 2170 | multipliers: [2.44], 2171 | weaknesses: ["Ground", "Psychic"], 2172 | next_evolution: [ 2173 | { 2174 | num: "089", 2175 | name: "Muk", 2176 | }, 2177 | ], 2178 | }, 2179 | { 2180 | id: 89, 2181 | num: "089", 2182 | name: "Muk", 2183 | img: "http://www.serebii.net/pokemongo/pokemon/089.png", 2184 | type: ["Poison"], 2185 | height: "1.19 m", 2186 | weight: "30.0 kg", 2187 | candy: "Grimer Candy", 2188 | egg: "Not in Eggs", 2189 | spawn_chance: 0.0031, 2190 | avg_spawns: 0.31, 2191 | spawn_time: "01:28", 2192 | multipliers: null, 2193 | weaknesses: ["Ground", "Psychic"], 2194 | prev_evolution: [ 2195 | { 2196 | num: "088", 2197 | name: "Grimer", 2198 | }, 2199 | ], 2200 | }, 2201 | { 2202 | id: 90, 2203 | num: "090", 2204 | name: "Shellder", 2205 | img: "http://www.serebii.net/pokemongo/pokemon/090.png", 2206 | type: ["Water"], 2207 | height: "0.30 m", 2208 | weight: "4.0 kg", 2209 | candy: "Shellder Candy", 2210 | candy_count: 50, 2211 | egg: "5 km", 2212 | spawn_chance: 0.52, 2213 | avg_spawns: 52, 2214 | spawn_time: "07:39", 2215 | multipliers: [2.65], 2216 | weaknesses: ["Electric", "Grass"], 2217 | next_evolution: [ 2218 | { 2219 | num: "091", 2220 | name: "Cloyster", 2221 | }, 2222 | ], 2223 | }, 2224 | { 2225 | id: 91, 2226 | num: "091", 2227 | name: "Cloyster", 2228 | img: "http://www.serebii.net/pokemongo/pokemon/091.png", 2229 | type: ["Water", "Ice"], 2230 | height: "1.50 m", 2231 | weight: "132.5 kg", 2232 | candy: "Shellder Candy", 2233 | egg: "Not in Eggs", 2234 | spawn_chance: 0.015, 2235 | avg_spawns: 1.5, 2236 | spawn_time: "02:33", 2237 | multipliers: null, 2238 | weaknesses: ["Electric", "Grass", "Fighting", "Rock"], 2239 | prev_evolution: [ 2240 | { 2241 | num: "090", 2242 | name: "Shellder", 2243 | }, 2244 | ], 2245 | }, 2246 | { 2247 | id: 92, 2248 | num: "092", 2249 | name: "Gastly", 2250 | img: "http://www.serebii.net/pokemongo/pokemon/092.png", 2251 | type: ["Ghost", "Poison"], 2252 | height: "1.30 m", 2253 | weight: "0.1 kg", 2254 | candy: "Gastly Candy", 2255 | candy_count: 25, 2256 | egg: "5 km", 2257 | spawn_chance: 0.79, 2258 | avg_spawns: 79, 2259 | spawn_time: "04:21", 2260 | multipliers: [1.78], 2261 | weaknesses: ["Ground", "Psychic", "Ghost", "Dark"], 2262 | next_evolution: [ 2263 | { 2264 | num: "093", 2265 | name: "Haunter", 2266 | }, 2267 | { 2268 | num: "094", 2269 | name: "Gengar", 2270 | }, 2271 | ], 2272 | }, 2273 | { 2274 | id: 93, 2275 | num: "093", 2276 | name: "Haunter", 2277 | img: "http://www.serebii.net/pokemongo/pokemon/093.png", 2278 | type: ["Ghost", "Poison"], 2279 | height: "1.60 m", 2280 | weight: "0.1 kg", 2281 | candy: "Gastly Candy", 2282 | candy_count: 100, 2283 | egg: "Not in Eggs", 2284 | spawn_chance: 0.052, 2285 | avg_spawns: 5.2, 2286 | spawn_time: "00:10", 2287 | multipliers: [1.56, 1.8], 2288 | weaknesses: ["Ground", "Psychic", "Ghost", "Dark"], 2289 | prev_evolution: [ 2290 | { 2291 | num: "092", 2292 | name: "Gastly", 2293 | }, 2294 | ], 2295 | next_evolution: [ 2296 | { 2297 | num: "094", 2298 | name: "Gengar", 2299 | }, 2300 | ], 2301 | }, 2302 | { 2303 | id: 94, 2304 | num: "094", 2305 | name: "Gengar", 2306 | img: "http://www.serebii.net/pokemongo/pokemon/094.png", 2307 | type: ["Ghost", "Poison"], 2308 | height: "1.50 m", 2309 | weight: "40.5 kg", 2310 | candy: "Gastly Candy", 2311 | egg: "Not in Eggs", 2312 | spawn_chance: 0.0067, 2313 | avg_spawns: 0.67, 2314 | spawn_time: "03:55", 2315 | multipliers: null, 2316 | weaknesses: ["Ground", "Psychic", "Ghost", "Dark"], 2317 | prev_evolution: [ 2318 | { 2319 | num: "092", 2320 | name: "Gastly", 2321 | }, 2322 | { 2323 | num: "093", 2324 | name: "Haunter", 2325 | }, 2326 | ], 2327 | }, 2328 | { 2329 | id: 95, 2330 | num: "095", 2331 | name: "Onix", 2332 | img: "http://www.serebii.net/pokemongo/pokemon/095.png", 2333 | type: ["Rock", "Ground"], 2334 | height: "8.79 m", 2335 | weight: "210.0 kg", 2336 | candy: "None", 2337 | egg: "10 km", 2338 | spawn_chance: 0.1, 2339 | avg_spawns: 10, 2340 | spawn_time: "01:18", 2341 | multipliers: null, 2342 | weaknesses: ["Water", "Grass", "Ice", "Fighting", "Ground", "Steel"], 2343 | }, 2344 | { 2345 | id: 96, 2346 | num: "096", 2347 | name: "Drowzee", 2348 | img: "http://www.serebii.net/pokemongo/pokemon/096.png", 2349 | type: ["Psychic"], 2350 | height: "0.99 m", 2351 | weight: "32.4 kg", 2352 | candy: "Drowzee Candy", 2353 | candy_count: 50, 2354 | egg: "5 km", 2355 | spawn_chance: 3.21, 2356 | avg_spawns: 321, 2357 | spawn_time: "01:51", 2358 | multipliers: [2.08, 2.09], 2359 | weaknesses: ["Bug", "Ghost", "Dark"], 2360 | next_evolution: [ 2361 | { 2362 | num: "097", 2363 | name: "Hypno", 2364 | }, 2365 | ], 2366 | }, 2367 | { 2368 | id: 97, 2369 | num: "097", 2370 | name: "Hypno", 2371 | img: "http://www.serebii.net/pokemongo/pokemon/097.png", 2372 | type: ["Psychic"], 2373 | height: "1.60 m", 2374 | weight: "75.6 kg", 2375 | candy: "Drowzee Candy", 2376 | egg: "Not in Eggs", 2377 | spawn_chance: 0.1, 2378 | avg_spawns: 10, 2379 | spawn_time: "02:17", 2380 | multipliers: null, 2381 | weaknesses: ["Bug", "Ghost", "Dark"], 2382 | prev_evolution: [ 2383 | { 2384 | num: "096", 2385 | name: "Drowzee", 2386 | }, 2387 | ], 2388 | }, 2389 | { 2390 | id: 98, 2391 | num: "098", 2392 | name: "Krabby", 2393 | img: "http://www.serebii.net/pokemongo/pokemon/098.png", 2394 | type: ["Water"], 2395 | height: "0.41 m", 2396 | weight: "6.5 kg", 2397 | candy: "Krabby Candy", 2398 | candy_count: 50, 2399 | egg: "5 km", 2400 | spawn_chance: 2.12, 2401 | avg_spawns: 212, 2402 | spawn_time: "03:33", 2403 | multipliers: [2.36, 2.4], 2404 | weaknesses: ["Electric", "Grass"], 2405 | next_evolution: [ 2406 | { 2407 | num: "099", 2408 | name: "Kingler", 2409 | }, 2410 | ], 2411 | }, 2412 | { 2413 | id: 99, 2414 | num: "099", 2415 | name: "Kingler", 2416 | img: "http://www.serebii.net/pokemongo/pokemon/099.png", 2417 | type: ["Water"], 2418 | height: "1.30 m", 2419 | weight: "60.0 kg", 2420 | candy: "Krabby Candy", 2421 | egg: "Not in Eggs", 2422 | spawn_chance: 0.062, 2423 | avg_spawns: 6.2, 2424 | spawn_time: "03:44", 2425 | multipliers: null, 2426 | weaknesses: ["Electric", "Grass"], 2427 | prev_evolution: [ 2428 | { 2429 | num: "098", 2430 | name: "Krabby", 2431 | }, 2432 | ], 2433 | }, 2434 | { 2435 | id: 100, 2436 | num: "100", 2437 | name: "Voltorb", 2438 | img: "http://www.serebii.net/pokemongo/pokemon/100.png", 2439 | type: ["Electric"], 2440 | height: "0.51 m", 2441 | weight: "10.4 kg", 2442 | candy: "Voltorb Candy", 2443 | candy_count: 50, 2444 | egg: "5 km", 2445 | spawn_chance: 0.65, 2446 | avg_spawns: 65, 2447 | spawn_time: "04:36", 2448 | multipliers: [2.01, 2.02], 2449 | weaknesses: ["Ground"], 2450 | next_evolution: [ 2451 | { 2452 | num: "101", 2453 | name: "Electrode", 2454 | }, 2455 | ], 2456 | }, 2457 | { 2458 | id: 101, 2459 | num: "101", 2460 | name: "Electrode", 2461 | img: "http://www.serebii.net/pokemongo/pokemon/101.png", 2462 | type: ["Electric"], 2463 | height: "1.19 m", 2464 | weight: "66.6 kg", 2465 | candy: "Voltorb Candy", 2466 | egg: "Not in Eggs", 2467 | spawn_chance: 0.02, 2468 | avg_spawns: 2, 2469 | spawn_time: "04:10", 2470 | multipliers: null, 2471 | weaknesses: ["Ground"], 2472 | prev_evolution: [ 2473 | { 2474 | num: "100", 2475 | name: "Voltorb", 2476 | }, 2477 | ], 2478 | }, 2479 | { 2480 | id: 102, 2481 | num: "102", 2482 | name: "Exeggcute", 2483 | img: "http://www.serebii.net/pokemongo/pokemon/102.png", 2484 | type: ["Grass", "Psychic"], 2485 | height: "0.41 m", 2486 | weight: "2.5 kg", 2487 | candy: "Exeggcute Candy", 2488 | candy_count: 50, 2489 | egg: "5 km", 2490 | spawn_chance: 0.78, 2491 | avg_spawns: 78, 2492 | spawn_time: "09:09", 2493 | multipliers: [2.7, 3.18], 2494 | weaknesses: ["Fire", "Ice", "Poison", "Flying", "Bug", "Ghost", "Dark"], 2495 | next_evolution: [ 2496 | { 2497 | num: "103", 2498 | name: "Exeggutor", 2499 | }, 2500 | ], 2501 | }, 2502 | { 2503 | id: 103, 2504 | num: "103", 2505 | name: "Exeggutor", 2506 | img: "http://www.serebii.net/pokemongo/pokemon/103.png", 2507 | type: ["Grass", "Psychic"], 2508 | height: "2.01 m", 2509 | weight: "120.0 kg", 2510 | candy: "Exeggcute Candy", 2511 | egg: "Not in Eggs", 2512 | spawn_chance: 0.014, 2513 | avg_spawns: 1.4, 2514 | spawn_time: "12:34", 2515 | multipliers: null, 2516 | weaknesses: ["Fire", "Ice", "Poison", "Flying", "Bug", "Ghost", "Dark"], 2517 | prev_evolution: [ 2518 | { 2519 | num: "102", 2520 | name: "Exeggcute", 2521 | }, 2522 | ], 2523 | }, 2524 | { 2525 | id: 104, 2526 | num: "104", 2527 | name: "Cubone", 2528 | img: "http://www.serebii.net/pokemongo/pokemon/104.png", 2529 | type: ["Ground"], 2530 | height: "0.41 m", 2531 | weight: "6.5 kg", 2532 | candy: "Cubone Candy", 2533 | candy_count: 50, 2534 | egg: "5 km", 2535 | spawn_chance: 0.61, 2536 | avg_spawns: 61, 2537 | spawn_time: "01:51", 2538 | multipliers: [1.67], 2539 | weaknesses: ["Water", "Grass", "Ice"], 2540 | next_evolution: [ 2541 | { 2542 | num: "105", 2543 | name: "Marowak", 2544 | }, 2545 | ], 2546 | }, 2547 | { 2548 | id: 105, 2549 | num: "105", 2550 | name: "Marowak", 2551 | img: "http://www.serebii.net/pokemongo/pokemon/105.png", 2552 | type: ["Ground"], 2553 | height: "0.99 m", 2554 | weight: "45.0 kg", 2555 | candy: "Cubone Candy", 2556 | egg: "Not in Eggs", 2557 | spawn_chance: 0.02, 2558 | avg_spawns: 2, 2559 | spawn_time: "03:59", 2560 | multipliers: null, 2561 | weaknesses: ["Water", "Grass", "Ice"], 2562 | prev_evolution: [ 2563 | { 2564 | num: "104", 2565 | name: "Cubone", 2566 | }, 2567 | ], 2568 | }, 2569 | { 2570 | id: 106, 2571 | num: "106", 2572 | name: "Hitmonlee", 2573 | img: "http://www.serebii.net/pokemongo/pokemon/106.png", 2574 | type: ["Fighting"], 2575 | height: "1.50 m", 2576 | weight: "49.8 kg", 2577 | candy: "None", 2578 | egg: "10 km", 2579 | spawn_chance: 0.02, 2580 | avg_spawns: 2, 2581 | spawn_time: "03:59", 2582 | multipliers: null, 2583 | weaknesses: ["Flying", "Psychic", "Fairy"], 2584 | }, 2585 | { 2586 | id: 107, 2587 | num: "107", 2588 | name: "Hitmonchan", 2589 | img: "http://www.serebii.net/pokemongo/pokemon/107.png", 2590 | type: ["Fighting"], 2591 | height: "1.40 m", 2592 | weight: "50.2 kg", 2593 | candy: "None", 2594 | egg: "10 km", 2595 | spawn_chance: 0.022, 2596 | avg_spawns: 2.2, 2597 | spawn_time: "05:58", 2598 | multipliers: null, 2599 | weaknesses: ["Flying", "Psychic", "Fairy"], 2600 | }, 2601 | { 2602 | id: 108, 2603 | num: "108", 2604 | name: "Lickitung", 2605 | img: "http://www.serebii.net/pokemongo/pokemon/108.png", 2606 | type: ["Normal"], 2607 | height: "1.19 m", 2608 | weight: "65.5 kg", 2609 | candy: "None", 2610 | egg: "5 km", 2611 | spawn_chance: 0.011, 2612 | avg_spawns: 1.1, 2613 | spawn_time: "02:46", 2614 | multipliers: null, 2615 | weaknesses: ["Fighting"], 2616 | }, 2617 | { 2618 | id: 109, 2619 | num: "109", 2620 | name: "Koffing", 2621 | img: "http://www.serebii.net/pokemongo/pokemon/109.png", 2622 | type: ["Poison"], 2623 | height: "0.61 m", 2624 | weight: "1.0 kg", 2625 | candy: "Koffing Candy", 2626 | candy_count: 50, 2627 | egg: "5 km", 2628 | spawn_chance: 0.2, 2629 | avg_spawns: 20, 2630 | spawn_time: "08:16", 2631 | multipliers: [1.11], 2632 | weaknesses: ["Ground", "Psychic"], 2633 | next_evolution: [ 2634 | { 2635 | num: "110", 2636 | name: "Weezing", 2637 | }, 2638 | ], 2639 | }, 2640 | { 2641 | id: 110, 2642 | num: "110", 2643 | name: "Weezing", 2644 | img: "http://www.serebii.net/pokemongo/pokemon/110.png", 2645 | type: ["Poison"], 2646 | height: "1.19 m", 2647 | weight: "9.5 kg", 2648 | candy: "Koffing Candy", 2649 | egg: "Not in Eggs", 2650 | spawn_chance: 0.016, 2651 | avg_spawns: 1.6, 2652 | spawn_time: "12:17", 2653 | multipliers: null, 2654 | weaknesses: ["Ground", "Psychic"], 2655 | prev_evolution: [ 2656 | { 2657 | num: "109", 2658 | name: "Koffing", 2659 | }, 2660 | ], 2661 | }, 2662 | { 2663 | id: 111, 2664 | num: "111", 2665 | name: "Rhyhorn", 2666 | img: "http://www.serebii.net/pokemongo/pokemon/111.png", 2667 | type: ["Ground", "Rock"], 2668 | height: "0.99 m", 2669 | weight: "115.0 kg", 2670 | candy: "Rhyhorn Candy", 2671 | candy_count: 50, 2672 | egg: "5 km", 2673 | spawn_chance: 0.63, 2674 | avg_spawns: 63, 2675 | spawn_time: "03:21", 2676 | multipliers: [1.91], 2677 | weaknesses: ["Water", "Grass", "Ice", "Fighting", "Ground", "Steel"], 2678 | next_evolution: [ 2679 | { 2680 | num: "112", 2681 | name: "Rhydon", 2682 | }, 2683 | ], 2684 | }, 2685 | { 2686 | id: 112, 2687 | num: "112", 2688 | name: "Rhydon", 2689 | img: "http://www.serebii.net/pokemongo/pokemon/112.png", 2690 | type: ["Ground", "Rock"], 2691 | height: "1.91 m", 2692 | weight: "120.0 kg", 2693 | candy: "Rhyhorn Candy", 2694 | egg: "Not in Eggs", 2695 | spawn_chance: 0.022, 2696 | avg_spawns: 2.2, 2697 | spawn_time: "05:50", 2698 | multipliers: null, 2699 | weaknesses: ["Water", "Grass", "Ice", "Fighting", "Ground", "Steel"], 2700 | prev_evolution: [ 2701 | { 2702 | num: "111", 2703 | name: "Rhyhorn", 2704 | }, 2705 | ], 2706 | }, 2707 | { 2708 | id: 113, 2709 | num: "113", 2710 | name: "Chansey", 2711 | img: "http://www.serebii.net/pokemongo/pokemon/113.png", 2712 | type: ["Normal"], 2713 | height: "1.09 m", 2714 | weight: "34.6 kg", 2715 | candy: "None", 2716 | egg: "10 km", 2717 | spawn_chance: 0.013, 2718 | avg_spawns: 1.3, 2719 | spawn_time: "04:46", 2720 | multipliers: null, 2721 | weaknesses: ["Fighting"], 2722 | }, 2723 | { 2724 | id: 114, 2725 | num: "114", 2726 | name: "Tangela", 2727 | img: "http://www.serebii.net/pokemongo/pokemon/114.png", 2728 | type: ["Grass"], 2729 | height: "0.99 m", 2730 | weight: "35.0 kg", 2731 | candy: "None", 2732 | egg: "5 km", 2733 | spawn_chance: 0.228, 2734 | avg_spawns: 22.8, 2735 | spawn_time: "23:13", 2736 | multipliers: null, 2737 | weaknesses: ["Fire", "Ice", "Poison", "Flying", "Bug"], 2738 | }, 2739 | { 2740 | id: 115, 2741 | num: "115", 2742 | name: "Kangaskhan", 2743 | img: "http://www.serebii.net/pokemongo/pokemon/115.png", 2744 | type: ["Normal"], 2745 | height: "2.21 m", 2746 | weight: "80.0 kg", 2747 | candy: "None", 2748 | egg: "5 km", 2749 | spawn_chance: 0.0086, 2750 | avg_spawns: 0.86, 2751 | spawn_time: "02:40", 2752 | multipliers: null, 2753 | weaknesses: ["Fighting"], 2754 | }, 2755 | { 2756 | id: 116, 2757 | num: "116", 2758 | name: "Horsea", 2759 | img: "http://www.serebii.net/pokemongo/pokemon/116.png", 2760 | type: ["Water"], 2761 | height: "0.41 m", 2762 | weight: "8.0 kg", 2763 | candy: "Horsea Candy", 2764 | candy_count: 50, 2765 | egg: "5 km", 2766 | spawn_chance: 1.13, 2767 | avg_spawns: 113, 2768 | spawn_time: "02:53", 2769 | multipliers: [2.23], 2770 | weaknesses: ["Electric", "Grass"], 2771 | next_evolution: [ 2772 | { 2773 | num: "117", 2774 | name: "Seadra", 2775 | }, 2776 | ], 2777 | }, 2778 | { 2779 | id: 117, 2780 | num: "117", 2781 | name: "Seadra", 2782 | img: "http://www.serebii.net/pokemongo/pokemon/117.png", 2783 | type: ["Water"], 2784 | height: "1.19 m", 2785 | weight: "25.0 kg", 2786 | candy: "Horsea Candy", 2787 | egg: "Not in Eggs", 2788 | spawn_chance: 0.034, 2789 | avg_spawns: 3.4, 2790 | spawn_time: "03:18", 2791 | multipliers: null, 2792 | weaknesses: ["Electric", "Grass"], 2793 | prev_evolution: [ 2794 | { 2795 | num: "116", 2796 | name: "Horsea", 2797 | }, 2798 | ], 2799 | }, 2800 | { 2801 | id: 118, 2802 | num: "118", 2803 | name: "Goldeen", 2804 | img: "http://www.serebii.net/pokemongo/pokemon/118.png", 2805 | type: ["Water"], 2806 | height: "0.61 m", 2807 | weight: "15.0 kg", 2808 | candy: "Goldeen Candy", 2809 | candy_count: 50, 2810 | egg: "5 km", 2811 | spawn_chance: 2.18, 2812 | avg_spawns: 218, 2813 | spawn_time: "03:14", 2814 | multipliers: [2.15, 2.2], 2815 | weaknesses: ["Electric", "Grass"], 2816 | next_evolution: [ 2817 | { 2818 | num: "119", 2819 | name: "Seaking", 2820 | }, 2821 | ], 2822 | }, 2823 | { 2824 | id: 119, 2825 | num: "119", 2826 | name: "Seaking", 2827 | img: "http://www.serebii.net/pokemongo/pokemon/119.png", 2828 | type: ["Water"], 2829 | height: "1.30 m", 2830 | weight: "39.0 kg", 2831 | candy: "Goldeen Candy", 2832 | egg: "Not in Eggs", 2833 | spawn_chance: 0.08, 2834 | avg_spawns: 8, 2835 | spawn_time: "05:21", 2836 | multipliers: null, 2837 | weaknesses: ["Electric", "Grass"], 2838 | prev_evolution: [ 2839 | { 2840 | num: "118", 2841 | name: "Goldeen", 2842 | }, 2843 | ], 2844 | }, 2845 | { 2846 | id: 120, 2847 | num: "120", 2848 | name: "Staryu", 2849 | img: "http://www.serebii.net/pokemongo/pokemon/120.png", 2850 | type: ["Water"], 2851 | height: "0.79 m", 2852 | weight: "34.5 kg", 2853 | candy: "Staryu Candy", 2854 | candy_count: 50, 2855 | egg: "5 km", 2856 | spawn_chance: 1.95, 2857 | avg_spawns: 195, 2858 | spawn_time: "22:59", 2859 | multipliers: [2.38, 2.41], 2860 | weaknesses: ["Electric", "Grass"], 2861 | next_evolution: [ 2862 | { 2863 | num: "121", 2864 | name: "Starmie", 2865 | }, 2866 | ], 2867 | }, 2868 | { 2869 | id: 121, 2870 | num: "121", 2871 | name: "Starmie", 2872 | img: "http://www.serebii.net/pokemongo/pokemon/121.png", 2873 | type: ["Water", "Psychic"], 2874 | height: "1.09 m", 2875 | weight: "80.0 kg", 2876 | candy: "Staryu Candy", 2877 | egg: "Not in Eggs", 2878 | spawn_chance: 0.034, 2879 | avg_spawns: 3.4, 2880 | spawn_time: "06:57", 2881 | multipliers: null, 2882 | weaknesses: ["Electric", "Grass", "Bug", "Ghost", "Dark"], 2883 | prev_evolution: [ 2884 | { 2885 | num: "120", 2886 | name: "Staryu", 2887 | }, 2888 | ], 2889 | }, 2890 | { 2891 | id: 122, 2892 | num: "122", 2893 | name: "Mr. Mime", 2894 | img: "http://www.serebii.net/pokemongo/pokemon/122.png", 2895 | type: ["Psychic"], 2896 | height: "1.30 m", 2897 | weight: "54.5 kg", 2898 | candy: "None", 2899 | egg: "10 km", 2900 | spawn_chance: 0.0031, 2901 | avg_spawns: 0.31, 2902 | spawn_time: "01:51", 2903 | multipliers: null, 2904 | weaknesses: ["Bug", "Ghost", "Dark"], 2905 | }, 2906 | { 2907 | id: 123, 2908 | num: "123", 2909 | name: "Scyther", 2910 | img: "http://www.serebii.net/pokemongo/pokemon/123.png", 2911 | type: ["Bug", "Flying"], 2912 | height: "1.50 m", 2913 | weight: "56.0 kg", 2914 | candy: "None", 2915 | egg: "10 km", 2916 | spawn_chance: 0.14, 2917 | avg_spawns: 14, 2918 | spawn_time: "05:43", 2919 | multipliers: null, 2920 | weaknesses: ["Fire", "Electric", "Ice", "Flying", "Rock"], 2921 | }, 2922 | { 2923 | id: 124, 2924 | num: "124", 2925 | name: "Jynx", 2926 | img: "http://www.serebii.net/pokemongo/pokemon/124.png", 2927 | type: ["Ice", "Psychic"], 2928 | height: "1.40 m", 2929 | weight: "40.6 kg", 2930 | candy: "None", 2931 | egg: "10 km", 2932 | spawn_chance: 0.35, 2933 | avg_spawns: 35, 2934 | spawn_time: "05:41", 2935 | multipliers: null, 2936 | weaknesses: ["Fire", "Bug", "Rock", "Ghost", "Dark", "Steel"], 2937 | }, 2938 | { 2939 | id: 125, 2940 | num: "125", 2941 | name: "Electabuzz", 2942 | img: "http://www.serebii.net/pokemongo/pokemon/125.png", 2943 | type: ["Electric"], 2944 | height: "1.09 m", 2945 | weight: "30.0 kg", 2946 | candy: "None", 2947 | egg: "10 km", 2948 | spawn_chance: 0.074, 2949 | avg_spawns: 7.4, 2950 | spawn_time: "04:28", 2951 | multipliers: null, 2952 | weaknesses: ["Ground"], 2953 | }, 2954 | { 2955 | id: 126, 2956 | num: "126", 2957 | name: "Magmar", 2958 | img: "http://www.serebii.net/pokemongo/pokemon/126.png", 2959 | type: ["Fire"], 2960 | height: "1.30 m", 2961 | weight: "44.5 kg", 2962 | candy: "None", 2963 | egg: "10 km", 2964 | spawn_chance: 0.1, 2965 | avg_spawns: 10, 2966 | spawn_time: "20:36", 2967 | multipliers: null, 2968 | weaknesses: ["Water", "Ground", "Rock"], 2969 | }, 2970 | { 2971 | id: 127, 2972 | num: "127", 2973 | name: "Pinsir", 2974 | img: "http://www.serebii.net/pokemongo/pokemon/127.png", 2975 | type: ["Bug"], 2976 | height: "1.50 m", 2977 | weight: "55.0 kg", 2978 | candy: "None", 2979 | egg: "10 km", 2980 | spawn_chance: 0.99, 2981 | avg_spawns: 99, 2982 | spawn_time: "03:25", 2983 | multipliers: null, 2984 | weaknesses: ["Fire", "Flying", "Rock"], 2985 | }, 2986 | { 2987 | id: 128, 2988 | num: "128", 2989 | name: "Tauros", 2990 | img: "http://www.serebii.net/pokemongo/pokemon/128.png", 2991 | type: ["Normal"], 2992 | height: "1.40 m", 2993 | weight: "88.4 kg", 2994 | candy: "None", 2995 | egg: "5 km", 2996 | spawn_chance: 0.12, 2997 | avg_spawns: 12, 2998 | spawn_time: "00:37", 2999 | multipliers: null, 3000 | weaknesses: ["Fighting"], 3001 | }, 3002 | { 3003 | id: 129, 3004 | num: "129", 3005 | name: "Magikarp", 3006 | img: "http://www.serebii.net/pokemongo/pokemon/129.png", 3007 | type: ["Water"], 3008 | height: "0.89 m", 3009 | weight: "10.0 kg", 3010 | candy: "Magikarp Candy", 3011 | candy_count: 400, 3012 | egg: "2 km", 3013 | spawn_chance: 4.78, 3014 | avg_spawns: 478, 3015 | spawn_time: "14:26", 3016 | multipliers: [10.1, 11.8], 3017 | weaknesses: ["Electric", "Grass"], 3018 | next_evolution: [ 3019 | { 3020 | num: "130", 3021 | name: "Gyarados", 3022 | }, 3023 | ], 3024 | }, 3025 | { 3026 | id: 130, 3027 | num: "130", 3028 | name: "Gyarados", 3029 | img: "http://www.serebii.net/pokemongo/pokemon/130.png", 3030 | type: ["Water", "Flying"], 3031 | height: "6.50 m", 3032 | weight: "235.0 kg", 3033 | candy: "Magikarp Candy", 3034 | egg: "Not in Eggs", 3035 | spawn_chance: 0.0032, 3036 | avg_spawns: 0.32, 3037 | spawn_time: "02:15", 3038 | multipliers: null, 3039 | weaknesses: ["Electric", "Rock"], 3040 | prev_evolution: [ 3041 | { 3042 | num: "129", 3043 | name: "Magikarp", 3044 | }, 3045 | ], 3046 | }, 3047 | { 3048 | id: 131, 3049 | num: "131", 3050 | name: "Lapras", 3051 | img: "http://www.serebii.net/pokemongo/pokemon/131.png", 3052 | type: ["Water", "Ice"], 3053 | height: "2.49 m", 3054 | weight: "220.0 kg", 3055 | candy: "None", 3056 | egg: "10 km", 3057 | spawn_chance: 0.006, 3058 | avg_spawns: 0.6, 3059 | spawn_time: "08:59", 3060 | multipliers: null, 3061 | weaknesses: ["Electric", "Grass", "Fighting", "Rock"], 3062 | }, 3063 | { 3064 | id: 132, 3065 | num: "132", 3066 | name: "Ditto", 3067 | img: "http://www.serebii.net/pokemongo/pokemon/132.png", 3068 | type: ["Normal"], 3069 | height: "0.30 m", 3070 | weight: "4.0 kg", 3071 | candy: "None", 3072 | egg: "Not in Eggs", 3073 | spawn_chance: 0, 3074 | avg_spawns: 0, 3075 | spawn_time: "N/A", 3076 | multipliers: null, 3077 | weaknesses: ["Fighting"], 3078 | }, 3079 | { 3080 | id: 133, 3081 | num: "133", 3082 | name: "Eevee", 3083 | img: "http://www.serebii.net/pokemongo/pokemon/133.png", 3084 | type: ["Normal"], 3085 | height: "0.30 m", 3086 | weight: "6.5 kg", 3087 | candy: "Eevee Candy", 3088 | candy_count: 25, 3089 | egg: "10 km", 3090 | spawn_chance: 2.75, 3091 | avg_spawns: 275, 3092 | spawn_time: "05:32", 3093 | multipliers: [2.02, 2.64], 3094 | weaknesses: ["Fighting"], 3095 | next_evolution: [ 3096 | { 3097 | num: "134", 3098 | name: "Vaporeon", 3099 | }, 3100 | { 3101 | num: "135", 3102 | name: "Jolteon", 3103 | }, 3104 | { 3105 | num: "136", 3106 | name: "Flareon", 3107 | }, 3108 | ], 3109 | }, 3110 | { 3111 | id: 134, 3112 | num: "134", 3113 | name: "Vaporeon", 3114 | img: "http://www.serebii.net/pokemongo/pokemon/134.png", 3115 | type: ["Water"], 3116 | height: "0.99 m", 3117 | weight: "29.0 kg", 3118 | candy: "Eevee Candy", 3119 | egg: "Not in Eggs", 3120 | spawn_chance: 0.014, 3121 | avg_spawns: 1.4, 3122 | spawn_time: "10:54", 3123 | multipliers: null, 3124 | weaknesses: ["Electric", "Grass"], 3125 | prev_evolution: [ 3126 | { 3127 | num: "133", 3128 | name: "Eevee", 3129 | }, 3130 | ], 3131 | }, 3132 | { 3133 | id: 135, 3134 | num: "135", 3135 | name: "Jolteon", 3136 | img: "http://www.serebii.net/pokemongo/pokemon/135.png", 3137 | type: ["Electric"], 3138 | height: "0.79 m", 3139 | weight: "24.5 kg", 3140 | candy: "None", 3141 | egg: "Not in Eggs", 3142 | spawn_chance: 0.012, 3143 | avg_spawns: 1.2, 3144 | spawn_time: "02:30", 3145 | multipliers: null, 3146 | weaknesses: ["Ground"], 3147 | prev_evolution: [ 3148 | { 3149 | num: "133", 3150 | name: "Eevee", 3151 | }, 3152 | ], 3153 | }, 3154 | { 3155 | id: 136, 3156 | num: "136", 3157 | name: "Flareon", 3158 | img: "http://www.serebii.net/pokemongo/pokemon/136.png", 3159 | type: ["Fire"], 3160 | height: "0.89 m", 3161 | weight: "25.0 kg", 3162 | candy: "Eevee Candy", 3163 | egg: "Not in Eggs", 3164 | spawn_chance: 0.017, 3165 | avg_spawns: 1.7, 3166 | spawn_time: "07:02", 3167 | multipliers: null, 3168 | weaknesses: ["Water", "Ground", "Rock"], 3169 | prev_evolution: [ 3170 | { 3171 | num: "133", 3172 | name: "Eevee", 3173 | }, 3174 | ], 3175 | }, 3176 | { 3177 | id: 137, 3178 | num: "137", 3179 | name: "Porygon", 3180 | img: "http://www.serebii.net/pokemongo/pokemon/137.png", 3181 | type: ["Normal"], 3182 | height: "0.79 m", 3183 | weight: "36.5 kg", 3184 | candy: "None", 3185 | egg: "5 km", 3186 | spawn_chance: 0.012, 3187 | avg_spawns: 1.2, 3188 | spawn_time: "02:49", 3189 | multipliers: null, 3190 | weaknesses: ["Fighting"], 3191 | }, 3192 | { 3193 | id: 138, 3194 | num: "138", 3195 | name: "Omanyte", 3196 | img: "http://www.serebii.net/pokemongo/pokemon/138.png", 3197 | type: ["Rock", "Water"], 3198 | height: "0.41 m", 3199 | weight: "7.5 kg", 3200 | candy: "Omanyte Candy", 3201 | candy_count: 50, 3202 | egg: "10 km", 3203 | spawn_chance: 0.14, 3204 | avg_spawns: 14, 3205 | spawn_time: "10:23", 3206 | multipliers: [2.12], 3207 | weaknesses: ["Electric", "Grass", "Fighting", "Ground"], 3208 | next_evolution: [ 3209 | { 3210 | num: "139", 3211 | name: "Omastar", 3212 | }, 3213 | ], 3214 | }, 3215 | { 3216 | id: 139, 3217 | num: "139", 3218 | name: "Omastar", 3219 | img: "http://www.serebii.net/pokemongo/pokemon/139.png", 3220 | type: ["Rock", "Water"], 3221 | height: "0.99 m", 3222 | weight: "35.0 kg", 3223 | candy: "None", 3224 | egg: "Omanyte Candy", 3225 | spawn_chance: 0.0061, 3226 | avg_spawns: 0.61, 3227 | spawn_time: "05:04", 3228 | multipliers: null, 3229 | weaknesses: ["Electric", "Grass", "Fighting", "Ground"], 3230 | prev_evolution: [ 3231 | { 3232 | num: "138", 3233 | name: "Omanyte", 3234 | }, 3235 | ], 3236 | }, 3237 | { 3238 | id: 140, 3239 | num: "140", 3240 | name: "Kabuto", 3241 | img: "http://www.serebii.net/pokemongo/pokemon/140.png", 3242 | type: ["Rock", "Water"], 3243 | height: "0.51 m", 3244 | weight: "11.5 kg", 3245 | candy: "Kabuto Candy", 3246 | candy_count: 50, 3247 | egg: "10 km", 3248 | spawn_chance: 0.1, 3249 | avg_spawns: 10, 3250 | spawn_time: "00:05", 3251 | multipliers: [1.97, 2.37], 3252 | weaknesses: ["Electric", "Grass", "Fighting", "Ground"], 3253 | next_evolution: [ 3254 | { 3255 | num: "141", 3256 | name: "Kabutops", 3257 | }, 3258 | ], 3259 | }, 3260 | { 3261 | id: 141, 3262 | num: "141", 3263 | name: "Kabutops", 3264 | img: "http://www.serebii.net/pokemongo/pokemon/141.png", 3265 | type: ["Rock", "Water"], 3266 | height: "1.30 m", 3267 | weight: "40.5 kg", 3268 | candy: "Kabuto Candy", 3269 | egg: "Not in Eggs", 3270 | spawn_chance: 0.0032, 3271 | avg_spawns: 0.32, 3272 | spawn_time: "23:40", 3273 | multipliers: null, 3274 | weaknesses: ["Electric", "Grass", "Fighting", "Ground"], 3275 | prev_evolution: [ 3276 | { 3277 | num: "140", 3278 | name: "Kabuto", 3279 | }, 3280 | ], 3281 | }, 3282 | { 3283 | id: 142, 3284 | num: "142", 3285 | name: "Aerodactyl", 3286 | img: "http://www.serebii.net/pokemongo/pokemon/142.png", 3287 | type: ["Rock", "Flying"], 3288 | height: "1.80 m", 3289 | weight: "59.0 kg", 3290 | candy: "None", 3291 | egg: "10 km", 3292 | spawn_chance: 0.018, 3293 | avg_spawns: 1.8, 3294 | spawn_time: "23:40", 3295 | multipliers: null, 3296 | weaknesses: ["Water", "Electric", "Ice", "Rock", "Steel"], 3297 | }, 3298 | { 3299 | id: 143, 3300 | num: "143", 3301 | name: "Snorlax", 3302 | img: "http://www.serebii.net/pokemongo/pokemon/143.png", 3303 | type: ["Normal"], 3304 | height: "2.11 m", 3305 | weight: "460.0 kg", 3306 | candy: "None", 3307 | egg: "10 km", 3308 | spawn_chance: 0.016, 3309 | avg_spawns: 1.6, 3310 | spawn_time: "23:40", 3311 | multipliers: null, 3312 | weaknesses: ["Fighting"], 3313 | }, 3314 | { 3315 | id: 144, 3316 | num: "144", 3317 | name: "Articuno", 3318 | img: "http://www.serebii.net/pokemongo/pokemon/144.png", 3319 | type: ["Ice", "Flying"], 3320 | height: "1.70 m", 3321 | weight: "55.4 kg", 3322 | candy: "None", 3323 | egg: "Not in Eggs", 3324 | spawn_chance: 0, 3325 | avg_spawns: 0, 3326 | spawn_time: "N/A", 3327 | multipliers: null, 3328 | weaknesses: ["Fire", "Electric", "Rock", "Steel"], 3329 | }, 3330 | { 3331 | id: 145, 3332 | num: "145", 3333 | name: "Zapdos", 3334 | img: "http://www.serebii.net/pokemongo/pokemon/145.png", 3335 | type: ["Electric", "Flying"], 3336 | height: "1.60 m", 3337 | weight: "52.6 kg", 3338 | candy: "None", 3339 | egg: "Not in Eggs", 3340 | spawn_chance: 0, 3341 | avg_spawns: 0, 3342 | spawn_time: "N/A", 3343 | multipliers: null, 3344 | weaknesses: ["Ice", "Rock"], 3345 | }, 3346 | { 3347 | id: 146, 3348 | num: "146", 3349 | name: "Moltres", 3350 | img: "http://www.serebii.net/pokemongo/pokemon/146.png", 3351 | type: ["Fire", "Flying"], 3352 | height: "2.01 m", 3353 | weight: "60.0 kg", 3354 | candy: "None", 3355 | egg: "Not in Eggs", 3356 | spawn_chance: 0, 3357 | avg_spawns: 0, 3358 | spawn_time: "N/A", 3359 | multipliers: null, 3360 | weaknesses: ["Water", "Electric", "Rock"], 3361 | }, 3362 | { 3363 | id: 147, 3364 | num: "147", 3365 | name: "Dratini", 3366 | img: "http://www.serebii.net/pokemongo/pokemon/147.png", 3367 | type: ["Dragon"], 3368 | height: "1.80 m", 3369 | weight: "3.3 kg", 3370 | candy: "Dratini Candy", 3371 | candy_count: 25, 3372 | egg: "10 km", 3373 | spawn_chance: 0.3, 3374 | avg_spawns: 30, 3375 | spawn_time: "06:41", 3376 | multipliers: [1.83, 1.84], 3377 | weaknesses: ["Ice", "Dragon", "Fairy"], 3378 | next_evolution: [ 3379 | { 3380 | num: "148", 3381 | name: "Dragonair", 3382 | }, 3383 | { 3384 | num: "149", 3385 | name: "Dragonite", 3386 | }, 3387 | ], 3388 | }, 3389 | { 3390 | id: 148, 3391 | num: "148", 3392 | name: "Dragonair", 3393 | img: "http://www.serebii.net/pokemongo/pokemon/148.png", 3394 | type: ["Dragon"], 3395 | height: "3.99 m", 3396 | weight: "16.5 kg", 3397 | candy: "Dratini Candy", 3398 | candy_count: 100, 3399 | egg: "Not in Eggs", 3400 | spawn_chance: 0.02, 3401 | avg_spawns: 2, 3402 | spawn_time: "11:57", 3403 | multipliers: [2.05], 3404 | weaknesses: ["Ice", "Dragon", "Fairy"], 3405 | prev_evolution: [ 3406 | { 3407 | num: "147", 3408 | name: "Dratini", 3409 | }, 3410 | ], 3411 | next_evolution: [ 3412 | { 3413 | num: "149", 3414 | name: "Dragonite", 3415 | }, 3416 | ], 3417 | }, 3418 | { 3419 | id: 149, 3420 | num: "149", 3421 | name: "Dragonite", 3422 | img: "http://www.serebii.net/pokemongo/pokemon/149.png", 3423 | type: ["Dragon", "Flying"], 3424 | height: "2.21 m", 3425 | weight: "210.0 kg", 3426 | candy: "Dratini Candy", 3427 | egg: "Not in Eggs", 3428 | spawn_chance: 0.0011, 3429 | avg_spawns: 0.11, 3430 | spawn_time: "23:38", 3431 | multipliers: null, 3432 | weaknesses: ["Ice", "Rock", "Dragon", "Fairy"], 3433 | prev_evolution: [ 3434 | { 3435 | num: "147", 3436 | name: "Dratini", 3437 | }, 3438 | { 3439 | num: "148", 3440 | name: "Dragonair", 3441 | }, 3442 | ], 3443 | }, 3444 | { 3445 | id: 150, 3446 | num: "150", 3447 | name: "Mewtwo", 3448 | img: "http://www.serebii.net/pokemongo/pokemon/150.png", 3449 | type: ["Psychic"], 3450 | height: "2.01 m", 3451 | weight: "122.0 kg", 3452 | candy: "None", 3453 | egg: "Not in Eggs", 3454 | spawn_chance: 0, 3455 | avg_spawns: 0, 3456 | spawn_time: "N/A", 3457 | multipliers: null, 3458 | weaknesses: ["Bug", "Ghost", "Dark"], 3459 | }, 3460 | { 3461 | id: 151, 3462 | num: "151", 3463 | name: "Mew", 3464 | img: "http://www.serebii.net/pokemongo/pokemon/151.png", 3465 | type: ["Psychic"], 3466 | height: "0.41 m", 3467 | weight: "4.0 kg", 3468 | candy: "None", 3469 | egg: "Not in Eggs", 3470 | spawn_chance: 0, 3471 | avg_spawns: 0, 3472 | spawn_time: "N/A", 3473 | multipliers: null, 3474 | weaknesses: ["Bug", "Ghost", "Dark"], 3475 | }, 3476 | ]; 3477 | --------------------------------------------------------------------------------