123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657 |
- create table pokemons(id int auto_increment primary key,name text not null,primary_type int not null,secondary_type int null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (1, 'Smeargle', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (2, 'Wailord', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (3, 'Vileplume', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (4, 'Armaldo', 4, 8);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (5, 'Cradily', 4, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (6, 'Carvanha', 2, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (7, 'Numel', 5, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (8, 'Sandslash', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (9, 'Ninetales', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (10, 'Weepinbell', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (11, 'Gloom', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (12, 'Ivysaur', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (13, 'Nidorino', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (14, 'Nidoking', 7, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (15, 'Dugtrio', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (16, 'Rhyhorn', 6, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (17, 'Persian', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (18, 'Wartortle', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (19, 'Charmeleon', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (20, 'Charizard', 5, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (21, 'Exeggutor', 3, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (22, 'Cloyster', 2, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (23, 'Arcanine', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (24, 'Parasect', 8, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (25, 'Dewgong', 2, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (26, 'Chansey', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (27, 'Kingler', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (28, 'Tentacruel', 2, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (29, 'Blastoise', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (30, 'Bellsprout', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (31, 'Victreebel', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (32, 'Rapidash', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (33, 'Magneton', 9, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (34, 'Quagsire', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (35, 'Exeggcute', 3, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (36, 'Horsea', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (37, 'Electrode', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (38, 'Starmie', 2, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (39, 'Seadra', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (40, 'Butterfree', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (41, 'Bellossom', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (42, 'Dragonair', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (43, 'Poliwhirl', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (44, 'Flareon', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (45, 'Eevee', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (46, 'Vaporeon', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (47, 'Jolteon', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (48, 'Goldeen', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (49, 'Seaking', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (50, 'Golduck', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (51, 'Staryu', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (52, 'Pikachu', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (53, 'Shellder', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (54, 'Marill', 2, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (55, 'Skiploom', 3, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (56, 'Dratini', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (57, 'Bulbasaur', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (58, 'Venusaur', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (59, 'Charmander', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (60, 'Squirtle', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (61, 'Nidoqueen', 7, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (62, 'Pidgeot', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (63, 'Electabuzz', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (64, 'Tangela', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (65, 'Tauros', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (66, 'Manectric', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (67, 'Muk', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (68, 'Azumarill', 2, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (69, 'Zangoose', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (70, 'Wingull', 2, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (71, 'Roselia', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (72, 'Pelipper', 2, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (73, 'Camerupt', 5, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (74, 'Mawile', 11, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (75, 'Sableye', 12, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (76, 'Swellow', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (77, 'Trapinch', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (78, 'Wailmer', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (79, 'Shiftry', 3, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (80, 'Cacturne', 3, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (81, 'Lairon', 11, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (82, 'Linoone', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (83, 'Milotic', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (84, 'Delcatty', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (85, 'Nosepass', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (86, 'Medicham', 13, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (87, 'Ludicolo', 2, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (88, 'Kecleon', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (89, 'Graveler', 4, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (90, 'Loudred', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (91, 'Dodrio', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (92, 'Kadabra', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (93, 'Claydol', 6, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (94, 'Sharpedo', 2, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (95, 'Magcargo', 5, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (96, 'Electrike', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (97, 'Makuhita', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (98, 'Hariyama', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (99, 'Wigglytuff', 1, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (100, 'Vigoroth', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (101, 'Skarmory', 11, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (102, 'Spinda', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (103, 'Exploud', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (104, 'Slaking', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (105, 'Lanturn', 2, 9);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (106, 'Slakoth', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (107, 'Absol', 12, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (108, 'Tropius', 3, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (109, 'Gardevoir', 14, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (110, 'Torkoal', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (111, 'Lunatone', 4, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (112, 'Solrock', 4, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (113, 'Dusclops', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (114, 'Tyranitar', 4, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (115, 'Clefairy', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (116, 'Jigglypuff', 1, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (117, 'Kingdra', 2, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (118, 'Paras', 8, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (119, 'Lapras', 2, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (120, 'Rhydon', 6, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (121, 'Slowbro', 2, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (122, 'Ursaring', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (123, 'Machoke', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (124, 'Kangaskhan', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (125, 'Machamp', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (126, 'Oddish', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (127, 'Girafarig', 1, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (128, 'Ponyta', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (129, 'Vulpix', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (130, 'Raticate', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (131, 'Marowak', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (132, 'Nidorina', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (133, 'Onix', 4, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (134, 'Aerodactyl', 4, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (135, 'Sneasel', 12, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (136, 'Gastly', 15, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (137, 'Haunter', 15, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (138, 'Gengar', 15, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (139, 'Grotle', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (140, 'Snover', 3, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (141, 'Ambipom', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (142, 'Raichu', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (143, 'Gastrodon', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (144, 'Pachirisu', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (145, 'Blissey', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (146, 'Sudowoodo', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (147, 'Misdreavus', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (148, 'Drifblim', 15, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (149, 'Skorupi', 7, 8);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (150, 'Steelix', 11, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (151, 'Lopunny', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (152, 'Hippopotas', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (153, 'Mightyena', 12, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (154, 'Kirlia', 14, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (155, 'Flaaffy', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (156, 'Ampharos', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (157, 'Monferno', 5, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (158, 'Gyarados', 2, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (159, 'Luxio', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (160, 'Mothim', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (161, 'Salamence', 10, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (162, 'Honchkrow', 12, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (163, 'Staravia', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (164, 'Metagross', 11, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (165, 'Drapion', 7, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (166, 'Floatzel', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (167, 'Stantler', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (168, 'Carnivine', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (169, 'Primeape', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (170, 'Glameow', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (171, 'Purugly', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (172, 'Alakazam', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (173, 'Yanma', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (174, 'Bibarel', 1, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (175, 'Beautifly', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (176, 'Meowth', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (177, 'Hypno', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (178, 'Dunsparce', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (179, 'Scyther', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (180, 'Rampardos', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (181, 'Pinsir', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (182, 'Lickitung', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (183, 'Miltank', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (184, 'Granbull', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (185, 'Cherrim', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (186, 'Larvitar', 4, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (187, 'Clefable', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (188, 'Torterra', 3, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (189, 'Glalie', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (190, 'Crobat', 7, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (191, 'Aipom', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (192, 'Beedrill', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (193, 'Porygon2', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (194, 'Bronzor', 11, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (195, 'Snorunt', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (196, 'Scizor', 8, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (197, 'Swalot', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (198, 'Magnezone', 9, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (199, 'Magmar', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (200, 'Electivire', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (201, 'Magmortar', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (202, 'Gligar', 6, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (203, 'Buizel', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (204, 'Gliscor', 6, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (205, 'Probopass', 4, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (206, 'Tyrogue', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (207, 'Hitmonchan', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (208, 'Piloswine', 17, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (209, 'Staraptor', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (210, 'Jumpluff', 3, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (211, 'Banette', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (212, 'Ralts', 14, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (213, 'Roserade', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (214, 'Lickilicky', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (215, 'Abomasnow', 3, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (216, 'Metang', 11, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (217, 'Seviper', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (218, 'Luxray', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (219, 'Buneary', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (220, 'Mamoswine', 17, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (221, 'Vibrava', 6, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (222, 'Flygon', 6, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (223, 'Nuzleaf', 3, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (224, 'Pupitar', 4, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (225, 'Magnemite', 9, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (226, 'Mareep', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (227, 'Growlithe', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (228, 'Slowking', 2, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (229, 'Drilbur', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (230, 'Zebstrika', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (231, 'Swoobat', 14, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (232, 'Stoutland', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (233, 'Furret', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (234, 'Gabite', 10, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (235, 'Grumpig', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (236, 'Vanillish', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (237, 'Gothorita', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (238, 'Duosion', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (239, 'Simisage', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (240, 'Simisear', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (241, 'Simipour', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (242, 'Galvantula', 8, 9);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (243, 'Sawsbuck', 1, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (244, 'Jellicent', 2, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (245, 'Fraxure', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (246, 'Whimsicott', 3, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (247, 'Tirtouga', 2, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (248, 'Deino', 12, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (249, 'Druddigon', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (250, 'Klang', 11, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (251, 'Seismitoad', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (252, 'Scolipede', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (253, 'Mienfoo', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (254, 'Elgyem', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (255, 'Pawniard', 12, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (256, 'Liepard', 12, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (257, 'Watchog', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (258, 'Alomomola', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (259, 'Klinklang', 11, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (260, 'Beheeyem', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (261, 'Cubchoo', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (262, 'Leavanny', 8, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (263, 'Archen', 4, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (264, 'Eelektrik', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (265, 'Accelgor', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (266, 'Espeon', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (267, 'Walrein', 17, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (268, 'Gallade', 14, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (269, 'Jynx', 17, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (270, 'Rotom', 9, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (271, 'Gothita', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (272, 'Lilligant', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (273, 'Ducklett', 2, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (274, 'Krokorok', 6, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (275, 'Palpitoad', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (276, 'Lampent', 15, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (277, 'Unfezant', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (278, 'Axew', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (279, 'Golurk', 6, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (280, 'Sigilyph', 14, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (281, 'Tangrowth', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (282, 'Heatmor', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (283, 'Umbreon', 12, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (284, 'Mismagius', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (285, 'Klink', 11, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (286, 'Mantine', 2, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (287, 'Basculin', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (288, 'Emolga', 9, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (289, 'Herdier', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (290, 'Excadrill', 6, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (291, 'Swanna', 2, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (292, 'Mandibuzz', 12, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (293, 'Toxicroak', 7, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (294, 'Braviary', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (295, 'Cofagrigus', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (296, 'Beartic', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (297, 'Durant', 8, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (298, 'Ferroseed', 3, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (299, 'Ferrothorn', 3, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (300, 'Lucario', 13, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (301, 'Weavile', 12, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (302, 'Weezing', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (303, 'Bronzong', 11, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (304, 'Eelektross', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (305, 'Doublade', 11, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (306, 'Chandelure', 15, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (307, 'Crustle', 8, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (308, 'Doduo', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (309, 'Helioptile', 9, 1);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (310, 'Carbink', 4, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (311, 'Cryogonal', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (312, 'Vanilluxe', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (313, 'Delibird', 17, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (314, 'Rhyperior', 6, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (315, 'Masquerain', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (316, 'Golem', 4, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (317, 'Froslass', 17, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (318, 'Shedinja', 8, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (319, 'Breloom', 3, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (320, 'Bagon', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (321, 'Talonflame', 5, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (322, 'Haxorus', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (323, 'Slugma', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (324, 'Goomy', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (325, 'Sylveon', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (326, 'Grimer', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (327, 'Goodra', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (328, 'Fearow', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (329, 'Garbodor', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (330, 'Slowpoke', 2, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (331, 'Sandshrew', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (332, 'Psyduck', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (333, 'Poliwag', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (334, 'Diglett', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (335, 'Seel', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (336, 'Voltorb', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (337, 'Ditto', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (338, 'Koffing', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (339, 'Moltres', 5, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (340, 'Kabutops', 4, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (341, 'Dragonite', 10, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (342, 'Snorlax', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (343, 'Omastar', 4, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (344, 'Poliwrath', 2, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (345, 'Mew', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (346, 'Zapdos', 9, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (347, 'Remoraid', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (348, 'Politoed', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (349, 'Venonat', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (350, 'Celebi', 14, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (351, 'Raikou', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (352, 'Chikorita', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (353, 'Totodile', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (354, 'Cyndaquil', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (355, 'Bayleef', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (356, 'Croconaw', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (357, 'Quilava', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (358, 'Anorith', 4, 8);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (359, 'Sunkern', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (360, 'Hoppip', 3, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (361, 'Luvdisc', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (362, 'Hoothoot', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (363, 'Treecko', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (364, 'Sunflora', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (365, 'Taillow', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (366, 'Togepi', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (367, 'Surskit', 8, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (368, 'Blaziken', 5, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (369, 'Sceptile', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (370, 'Swampert', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (371, 'Altaria', 10, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (372, 'Mudkip', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (373, 'Zubat', 7, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (374, 'Cacnea', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (375, 'Barboach', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (376, 'Seedot', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (377, 'Typhlosion', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (378, 'Feraligatr', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (379, 'Meganium', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (380, 'Jirachi', 11, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (381, 'Xatu', 14, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (382, 'Latias', 10, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (383, 'Illumise', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (384, 'Entei', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (385, 'Gorebyss', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (386, 'Suicune', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (387, 'Aggron', 11, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (388, 'Donphan', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (389, 'Golbat', 7, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (390, 'Noctowl', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (391, 'Forretress', 8, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (392, 'Houndoom', 12, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (393, 'Castform', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (394, 'Rayquaza', 10, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (395, 'Huntail', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (396, 'Volbeat', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (397, 'Dustox', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (398, 'Ledian', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (399, 'Ariados', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (400, 'Relicanth', 2, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (401, 'Octillery', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (402, 'Lombre', 2, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (403, 'Clamperl', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (404, 'Teddiursa', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (405, 'Nincada', 8, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (406, 'Swinub', 17, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (407, 'Sentret', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (408, 'Pineco', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (409, 'Skitty', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (410, 'Zigzagoon', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (411, 'Heracross', 8, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (412, 'Wobbuffet', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (413, 'Regice', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (414, 'Swablu', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (415, 'Plusle', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (416, 'Minun', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (417, 'Spoink', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (418, 'Qwilfish', 2, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (419, 'Combusken', 5, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (420, 'Azurill', 1, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (421, 'Igglybuff', 1, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (422, 'Togetic', 16, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (423, 'Corsola', 2, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (424, 'Baltoy', 6, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (425, 'Articuno', 17, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (426, 'Lileep', 4, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (427, 'Chimecho', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (428, 'Murkrow', 12, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (429, 'Sealeo', 17, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (430, 'Ledyba', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (431, 'Sliggoo', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (432, 'Lumineon', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (433, 'Shelgon', 10, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (434, 'Poochyena', 12, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (435, 'Corphish', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (436, 'Phanpy', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (437, 'Whismur', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (438, 'Regirock', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (439, 'Registeel', 11, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (440, 'Groudon', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (441, 'Shuckle', 8, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (442, 'Hitmontop', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (443, 'Geodude', 4, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (444, 'Grovyle', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (445, 'Marshtomp', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (446, 'Beldum', 11, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (447, 'Wynaut', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (448, 'Lotad', 2, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (449, 'Machop', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (450, 'Shroomish', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (451, 'Turtwig', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (452, 'Budew', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (453, 'Combee', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (454, 'Cherubi', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (455, 'Gogoat', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (456, 'Bonsly', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (457, 'Kricketune', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (458, 'Abra', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (459, 'Ninjask', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (460, 'Wooper', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (461, 'Latios', 10, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (462, 'Natu', 14, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (463, 'Spheal', 17, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (464, 'Whiscash', 2, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (465, 'Shuppet', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (466, 'Meditite', 13, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (467, 'Cascoon', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (468, 'Feebas', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (469, 'Chinchou', 2, 9);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (470, 'Aron', 11, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (471, 'Torchic', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (472, 'Fletchinder', 5, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (473, 'Bisharp', 12, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (474, 'Pansear', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (475, 'Panpour', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (476, 'Sawk', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (477, 'Throh', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (478, 'Darumaka', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (479, 'Bouffalant', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (480, 'Boldore', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (481, 'Gigalith', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (482, 'Minccino', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (483, 'Scraggy', 12, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (484, 'Cottonee', 3, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (485, 'Maractus', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (486, 'Porygon-Z', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (487, 'Pidove', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (488, 'Petilil', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (489, 'Tranquill', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (490, 'Munna', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (491, 'Swadloon', 8, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (492, 'Dwebble', 8, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (493, 'Croagunk', 7, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (494, 'Blitzle', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (495, 'Sandile', 6, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (496, 'Cubone', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (497, 'Omanyte', 4, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (498, 'Shieldon', 4, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (499, 'Archeops', 4, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (500, 'Mantyke', 2, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (501, 'Vanillite', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (502, 'Woobat', 14, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (503, 'Riolu', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (504, 'Timburr', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (505, 'Kabuto', 4, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (506, 'Cranidos', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (507, 'Carracosta', 2, 4);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (508, 'Fletchling', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (509, 'Bunnelby', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (510, 'Pansage', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (511, 'Tentacool', 2, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (512, 'Snubbull', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (513, 'Houndour', 12, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (514, 'Clauncher', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (515, 'Scatterbug', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (516, 'Burmy', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (517, 'Bidoof', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (518, 'Dragalge', 7, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (519, 'Klefki', 11, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (520, 'Cobalion', 11, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (521, 'Terrakion', 4, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (522, 'Virizion', 3, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (523, 'Scrafty', 12, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (524, 'Gurdurr', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (525, 'Mienshao', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (526, 'Hitmonlee', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (527, 'Conkeldurr', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (528, 'Hawlucha', 13, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (529, 'Rattata', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (530, 'Pidgeotto', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (531, 'Finneon', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (532, 'Elekid', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (533, 'Espurr', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (534, 'Krookodile', 6, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (535, 'Krabby', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (536, 'Pidgey', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (537, 'Wurmple', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (538, 'Crawdaunt', 2, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (539, 'Stunky', 7, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (540, 'Drifloon', 15, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (541, 'Magby', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (542, 'Gulpin', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (543, 'Arbok', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (544, 'Joltik', 8, 9);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (545, 'Ekans', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (546, 'Mankey', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (547, 'Venomoth', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (548, 'Spearow', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (549, 'Starly', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (550, 'Infernape', 5, 13);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (551, 'Roggenrola', 4, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (552, 'Pangoro', 13, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (553, 'Smoochum', 17, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (554, 'Kyogre', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (555, 'Silcoon', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (556, 'Mewtwo', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (557, 'Golett', 6, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (558, 'Garchomp', 10, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (559, 'Volcarona', 8, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (560, 'Audino', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (561, 'Togekiss', 16, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (562, 'Dusknoir', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (563, 'Hydreigon', 12, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (564, 'Heatran', 5, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (565, 'Cresselia', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (566, 'Musharna', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (567, 'Weedle', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (568, 'Caterpie', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (569, 'Kakuna', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (570, 'Metapod', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (571, 'Kricketot', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (572, 'Magikarp', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (573, 'Spinarak', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (574, 'Vespiquen', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (575, 'Drowzee', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (576, 'Shinx', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (577, 'Chimchar', 5, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (578, 'Skuntank', 7, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (579, 'Sewaddle', 8, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (580, 'Cleffa', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (581, 'Pichu', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (582, 'Duskull', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (583, 'Unown', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (584, 'Munchlax', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (585, 'Porygon', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (586, 'Gible', 10, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (587, 'Prinplup', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (588, 'Whirlipede', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (589, 'Noivern', 18, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (590, 'Pyroar', 5, 1);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (591, 'Florges', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (592, 'Clawitzer', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (593, 'Barbaracle', 4, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (594, 'Dedenne', 9, 16);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (595, 'Floette', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (596, 'Slurpuff', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (597, 'Aromatisse', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (598, 'Shellos', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (599, 'Stunfisk', 6, 9);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (600, 'Frillish', 2, 15);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (601, 'Hippowdon', 6, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (602, 'Chatot', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (603, 'Lillipup', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (604, 'Venipede', 8, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (605, 'Bastiodon', 4, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (606, 'Tynamo', 9, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (607, 'Diggersby', 1, 6);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (608, 'Chingling', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (609, 'Trubbish', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (610, 'Cinccino', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (611, 'Glaceon', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (612, 'Leafeon', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (613, 'Regigigas', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (614, 'Purrloin', 12, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (615, 'Nidoran', 7, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (616, 'Deerling', 1, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (617, 'Shelmet', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (618, 'Patrat', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (619, 'Escavalier', 8, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (620, 'Avalugg', 17, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (621, 'Vivillon', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (622, 'Heliolisk', 9, 1);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (623, 'Aurorus', 4, 17);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (624, 'Tyrantrum', 4, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (625, 'Yanmega', 8, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (626, 'Spiritomb', 15, 12);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (627, 'Vullaby', 12, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (628, 'Zoroark', 12, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (629, 'Amoonguss', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (630, 'Tympole', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (631, 'Piplup', 2, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (632, 'Empoleon', 2, 11);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (633, 'Furfrou', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (634, 'Solosis', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (635, 'Larvesta', 8, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (636, 'Foongus', 3, 7);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (637, 'Litwick', 15, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (638, 'Yamask', 15, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (639, 'Gothitelle', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (640, 'Reuniclus', 14, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (641, 'Pancham', 13, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (642, 'Litleo', 5, 1);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (643, 'Skiddo', 3, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (644, 'Rufflet', 1, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (645, 'Karrablast', 8, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (646, 'Lugia', 14, 18);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (647, 'Binacle', 4, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (648, 'Skrelp', 7, 2);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (649, 'Malamar', 12, 14);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (650, 'Zekrom', 10, 9);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (651, 'Reshiram', 10, 5);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (652, 'Happiny', 1, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (653, 'Zweilous', 12, 10);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (654, 'Trevenant', 15, 3);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (655, 'Swirlix', 16, null);
- INSERT INTO pokemon.pokemons (id, name, primary_type, secondary_type) VALUES (656, 'Spewpa', 8, null);
|