(require '#:winbase) (require '#:asdf-patch) (require '#:asdf) (require '#:asdf-addons) (pushnew 'asdf-util:source-dir-search asdf:*system-definition-search-functions*) (pushnew #p"C:/dev/uffi" asdf-util:*source-dirs* :test #'equal) (pushnew #p"C:/dev/clsql" asdf-util:*source-dirs* :test #'equal) (asdf:operate 'asdf:load-op '#:clsql) ;; (asdf:operate 'asdf:test-op '#:clsql) ;; (asdf:operate 'asdf:load-op '#:clsql-tests) (use-package '#:clsql) ;(use-package '#:clsql-tests) (enable-sql-reader-syntax) (clsql:push-library-path "/dev/clsql/") ;(setf *default-database-type* :odbc) (setf *default-database-type* :mysql) ;(setf *default-database-type* :sqlite3) (initialize-database-type) ;(connect '("pokemon")) ; for SQLite3 (connect '("localhost" "pokemon" "root" "raistlin")) ; for MySQL ;(connect '("Pokemon Database" "" "")) ; for ODBC (if (member "pokemon" (list-tables) :test #'equalp) (drop-table "pokemon")) (create-table "pokemon" '(([id] integer :primary-key :not-null) ([Name] (string 40) :not-null) ([Type1] (string 15) :not-null) ([Type2] (string 15) :not-null) ([Ability] (string 30) :not-null) (["Terrain Ability"] (string 30)) (["Friend Area"] (string 30)) ([HP] integer) ([ATK] integer) ([DEF] integer) (["SP ATK"] integer) (["SP DEF"] integer) ([Size] integer) ([Find] string) (["Find Floor"] string) ([Evolution] string) (["Evolution Level"] string) (["Evolution Condition"] string))) (insert-records :into [pokemon] :values '(1 "Bulbasaur" "Grass" "Poison" "Overgrow" "Ground" "Beau Plains" 3 3 4 2 4 1 "Joyous Tower" "1-5" "N/A" "N/A" "N/A")) (insert-records :into [pokemon] :values '(2 "Ivysaur" "Grass" "Poison" "Overgrow" "Ground" "Beau Plains" 4 4 2 3 1 1 "Western Cave" "19-27" "Bulbasaur" "16" "N/A")) (insert-records :into [pokemon] :values '(3 "Venusaur" "Grass" "Poison" "Overgrow" "Ground" "Beau Plains" 4 4 2 4 2 1 "N/A" "N/A" "Ivysaur" "32" "N/A" )) (insert-records :into [pokemon] :values '(4 "Charmander" "Fire" "None" "Blaze" "Magma" "Mt. Cleft" 3 4 4 3 4 1 "Fiery Field" "5-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(5 "Charmeleon" "Fire" "None" "Blaze" "Magma" "Mt. Cleft" 3 4 4 3 4 1 "Fiery Field" "26-29" "Charmander" "16" "N/A" )) (insert-records :into [pokemon] :values '(6 "Charizard" "Fire" "Flying" "Blaze" "Magma" "Mt. Cleft" 3 4 4 3 4 1 "N/A" "N/A" "Charmeleon" "36" "N/A" )) (insert-records :into [pokemon] :values '(7 "Squirtle" "Water" "None" "Torrent" "Water" "Turtleshell Pond" 3 3 4 3 4 1 "Waterfall Pond" "8-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(8 "Wartortle" "Water" "None" "Torrent" "Water" "Turtleshell Pond" 3 3 4 3 4 1 "Northwind Field" "27-29" "Squirtle" "16" "N/A" )) (insert-records :into [pokemon] :values '(9 "Blastoise" "Water" "None" "Torrent" "Water" "Turtleshell Pond" 3 3 4 3 4 1 "Western Cave" "89-98" "Wartortle" "36" "N/A" )) (insert-records :into [pokemon] :values '(10 "Caterpie" "Bug" "None" "Shield Dust" "Ground" "Mist-Rise Forest" 1 1 1 1 1 1 "Wish Cave" "2-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(11 "Metapod" "Bug" "None" "Shed Skin" "Ground" "Mist-Rise Forest" 1 1 1 1 1 1 "Joyous Tower" "7-8" "Caterpie" "7" "N/A" )) (insert-records :into [pokemon] :values '(12 "Butterfree" "Bug" "Flying" "Compoundeyes" "Float" "Mist-Rise Forest" 1 1 1 1 1 1 "N/A" "N/A" "Metapod" "10" "N/A" )) (insert-records :into [pokemon] :values '(13 "Weedle" "Bug" "Poison" "Shield Dust" "Ground" "Mist-Rise Forest" 1 1 1 1 1 1 "Silent Chasm" "1-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(14 "Kakuna" "Bug" "Poison" "Shed Skin" "Ground" "Mist-Rise Forest" 1 1 1 1 1 1 "Joyous Tower" "9-13" "Weedle" "7" "N/A" )) (insert-records :into [pokemon] :values '(15 "Beedrill" "Bug" "Poison" "Swarm" "Float" "Mist-Rise Forest" 2 1 1 1 1 1 "N/A" "N/A" "Kakuna" "10" "N/A" )) (insert-records :into [pokemon] :values '(16 "Pidgey" "Normal" "Flying" "Keen Eye" "Ground" "Flyaway Forest" 1 3 3 3 2 1 "Howling Forest" "9-13" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(17 "Pidgeotto" "Normal" "Flying" "Keen Eye" "Ground" "Flyaway Forest" 1 3 2 2 1 1 "Mt. Thunder" "2-5" "Pidgey" "18" "N/A" )) (insert-records :into [pokemon] :values '(18 "Pidgeot" "Normal" "Flying" "Keen Eye" "Ground" "Flyaway Forest" 2 3 3 3 2 1 "N/A" "N/A" "Pidgeotto" "36" "N/A" )) (insert-records :into [pokemon] :values '(19 "Rattata" "Normal" "None" "Run Away/Guts" "Ground" "Wild Plains" 1 2 3 1 2 1 "Thunderwave Cave" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(20 "Raticate" "Normal" "None" "Run Away/Guts" "Ground" "Wild Plains" 3 3 4 3 3 1 "N/A" "N/A" "Rattata" "20" "N/A" )) (insert-records :into [pokemon] :values '(21 "Spearow" "Normal" "Flying" "Keen Eye" "Ground" "Ravaged Field" 2 2 3 2 3 1 "Mt. Steel" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(22 "Fearow" "Normal" "Flying" "Keen Eye" "Ground" "Ravaged Field" 1 1 2 1 2 1 "N/A" "N/A" "Spearow" "20" "N/A" )) (insert-records :into [pokemon] :values '(23 "Ekans" "Poison" "None" "Intimidate/Shed Skin" "Ground" "Wild Plains" 2 2 2 2 2 1 "Western Cave" "3-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(24 "Arbok" "Poison" "None" "Intimidate/Shed Skin" "Ground" "Wild Plains" 2 3 2 2 3 1 "N/A" "N/A" "Ekans" "22" "N/A" )) (insert-records :into [pokemon] :values '(25 "Pikachu" "Electric" "None" "Static" "Ground" "Energetic Forest" 3 4 4 4 4 1 "Lightning Field" "6-10" "Pichu" "N/A" "IQ 6 Stars" )) (insert-records :into [pokemon] :values '(26 "Raichu" "Electric" "None" "Static" "Ground" "Energetic Forest" 4 4 4 4 4 1 "N/A" "N/A" "Pikachu" "N/A" "Thunderstone" )) (insert-records :into [pokemon] :values '(27 "Sandshrew" "Ground" "None" "Sand Veil" "Ground" "Furnace Desert" 2 3 4 2 3 1 "Magma Cavern" "1-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(28 "Sandslash" "Ground" "None" "Sand Veil" "Ground" "Furnace Desert" 2 3 4 2 3 1 "N/A" "N/A" "Sandshrew" "22" "N/A" )) (insert-records :into [pokemon] :values '(29 "Nidoran Female" "Poison" "None" "Poison Point" "Ground" "Safari" 1 1 1 1 2 1 "Thunderwave Cave" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(30 "Nidorina" "Poison" "None" "Poison Point" "Ground" "Safari" 1 1 1 1 2 1 "Lapis Cave" "4-8" "Nidoran Female" "16" "N/A" )) (insert-records :into [pokemon] :values '(31 "Nidoqueen" "Poison" "Ground" "Poison Point" "Ground" "Safari" 1 2 2 2 2 1 "N/A" "N/A" "Nidorina" "N/A" "Moon Stone" )) (insert-records :into [pokemon] :values '(32 "Nidoran Male" "Poison" "None" "Poison Point" "Ground" "Safari" 1 1 1 1 1 1 "Mt. Thunder" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(33 "Nidorino" "Poison" "None" "Poison Point" "Ground" "Safari" 1 1 1 1 1 1 "Lapis Cave" "4-8" "Nidoran Male" "16" "N/A" )) (insert-records :into [pokemon] :values '(34 "Nidoking" "Poison" "Ground" "Poison Point" "Ground" "Safari" 1 2 2 2 2 1 "N/A" "N/A" "Nidorino" "N/A" "Moon Stone" )) (insert-records :into [pokemon] :values '(35 "Clefairy" "Normal" "None" "Cute Charm" "Ground" "Mt. Moonview" 1 1 2 1 2 1 "Joyous Tower" "9-14" "Cleffa" "N/A" "IQ 6 Stars" )) (insert-records :into [pokemon] :values '(36 "Clefable" "Normal" "None" "Cute Charm" "Ground" "Mt. Moonview" 1 2 2 2 2 1 "N/A" "N/A" "Clefairy" "N/A" "Moon Stone" )) (insert-records :into [pokemon] :values '(37 "Vulpix" "Fire" "None" "Flash Fire" "Magma" "Darkness Ridge" 3 3 2 3 2 1 "Fiery Field" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(38 "Ninetails" "Fire" "None" "Flash Fire" "Magma" "Darkness Ridge" 4 2 2 2 2 1 "N/A" "N/A" "Vulpix" "N/A" "Fire Stone" )) (insert-records :into [pokemon] :values '(39 "Jigglypuff" "Normal" "None" "Cute Charm" "Ground" "Sky Blue Plains" 3 3 1 2 1 1 "Wish Cave" "1-4" "Igglybuff" "N/A" "IQ 6 Stars" )) (insert-records :into [pokemon] :values '(40 "Wigglytuff" "Normal" "None" "Cute Charm" "Ground" "Sky Blue Plains" 3 2 1 3 1 1 "N/A" "N/A" "Jigglypuff" "N/A" "Moon Stone" )) (insert-records :into [pokemon] :values '(41 "Zubat" "Poison" "Flying" "Inner Focus" "Float" "Echo Cave" 1 1 1 1 1 1 "Lapis Cave" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(42 "Golbat" "Poison" "Flying" "Inner Focus" "Float" "Echo Cave" 1 1 1 1 1 1 "Lapis Cave" "11-14" "Zubat" "22" "N/A" )) (insert-records :into [pokemon] :values '(43 "Oddish" "Grass" "Poison" "Chlorophyll" "Ground" "Jungle" 2 1 2 1 2 1 "Sinister Woods" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(44 "Gloom" "Grass" "Poison" "Chlorophyll" "Ground" "Jungle" 2 1 1 1 1 1 "Silent Chasm" "1-9" "Oddish" "21" "N/A" )) (insert-records :into [pokemon] :values '(45 "Vileplume" "Grass" "Poison" "Chlorophyll" "Ground" "Jungle" 1 1 1 1 1 1 "N/A" "N/A" "Gloom" "N/A" "Leaf Stone" )) (insert-records :into [pokemon] :values '(46 "Paras" "Bug" "Grass" "Effect Spore" "Ground" "Mushroom Forest" 2 3 3 3 3 1 "Silent Chasm" "7-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(47 "Parasect" "Bug" "Grass" "Effect Spore" "Ground" "Mushroom Forest" 1 1 2 1 2 1 "N/A" "N/A" "Paras" "24" "N/A" )) (insert-records :into [pokemon] :values '(48 "Venonat" "Bug" "Poison" "Compoundeyes" "Ground" "Secretive Forest" 2 1 2 2 2 1 "Uproar Forest" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(49 "Venomoth" "Bug" "Poison" "Shield Dust" "Float" "Secretive Forest" 2 3 2 3 2 1 "N/A" "N/A" "Venonat" "31" "N/A" )) (insert-records :into [pokemon] :values '(50 "Diglett" "Ground" "None" "Sand Veil/Arena Trap" "Ground" "Boulder Cave" 2 1 2 1 2 1 "Southern Cave" "-1-7" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(51 "Dugtrio" "Ground" "None" "Sand Veil/Arena Trap" "Ground" "Boulder Cave" 3 2 2 1 2 1 "N/A" "N/A" "Diglett" "26" "N/A" )) (insert-records :into [pokemon] :values '(52 "Meowth" "Normal" "None" "Pickup" "Ground" "Energetic Forest" 3 3 3 3 4 1 "Western Cave" "3-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(53 "Persian" "Normal" "None" "Limber" "Ground" "Energetic Forest" 4 3 3 3 4 1 "N/A" "N/A" "Meowth" "28" "N/A" )) (insert-records :into [pokemon] :values '(54 "Psyduck" "Water" "None" "Damp/Cloud Nine" "Water" "Turtleshell Pond" 3 4 4 4 4 1 "Joyous Tower" "9-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(55 "Golduck" "Water" "None" "Damp/Cloud Nine" "Water" "Turtleshell Pond" 4 4 4 4 4 1 "N/A" "N/A" "Psyduck" "33" "N/A" )) (insert-records :into [pokemon] :values '(56 "Mankey" "Fighting" "None" "Vital Spirit" "Ground" "Energetic Forest" 1 1 1 1 1 1 "Uproar Forest" "8-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(57 "Primeape" "Fighting" "None" "Vital Spirit" "Ground" "Energetic Forest" 2 1 1 1 1 1 "N/A" "N/A" "Mankey" "28" "N/A" )) (insert-records :into [pokemon] :values '(58 "Growlithe" "Fire" "None" "Intimidate/Flash Fire" "Magma" "Scorched Plains" 3 1 2 1 2 1 "Mt. Thunder" "9-10" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(59 "Arcanine" "Fire" "None" "Intimidate/Flash Fire" "Magma" "Scorched Plains" 3 1 2 1 2 1 "N/A" "N/A" "Growlithe" "N/A" "Fire Stone" )) (insert-records :into [pokemon] :values '(60 "Poliwag" "Water" "None" "Water Absorb/Damp" "Water" "Tadpole Pond" 2 1 1 1 1 1 "Silent Chasm" "5-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(61 "Poliwhirl" "Water" "Nonw" "Water Absorb/Damp" "Water" "Tadpole Pond" 2 1 1 1 1 1 "Northwind Field" "10-16" "Poliwag" "25" "N/A" )) (insert-records :into [pokemon] :values '(62 "Poliwrath" "Water" "Fighting" "Water Absorb/Damp" "Water" "Tadpole Pond" 2 1 1 1 1 1 "N/A" "N/A" "Poliwhirl" "N/A" "Water Stone" )) (insert-records :into [pokemon] :values '(63 "Abra" "Psychic" "None" "Synchronize/Inner Focus" "Float" "Decrepit Lab" 1 1 3 1 3 1 "Buried Relic" "10 20 30" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(64 "Kadabra" "Psychic" "None" "Synchronize/Inner Focus" "Ground" "Decrepit Lab" 1 1 1 1 1 1 "Buried Relic" "40-49" "Abra" "16" "N/A" )) (insert-records :into [pokemon] :values '(65 "Alakazam" "Psychic" "None" "Synchronize/Inner Focus" "Ground" "Decrepit Lab" 1 1 1 1 1 1 "N/A" "N/A" "Kadabra" "N/A" "Link Cable" )) (insert-records :into [pokemon] :values '(66 "Machop" "Fighting" "None" "Guts" "Ground" "Mt. Discipline" 3 3 3 3 4 1 "Buried Relic" "4-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(67 "Machoke" "Fighting" "None" "Guts" "Ground" "Mt. Discipline" 3 3 3 3 4 1 "Buried Relic" "80-87" "Machop" "28" "N/A" )) (insert-records :into [pokemon] :values '(68 "Machamp" "Fighting" "None" "Guts" "Ground" "Mt. Discipline" 4 3 3 3 4 1 "N/A" "N/A" "Machoke" "N/A" "Link Cable" )) (insert-records :into [pokemon] :values '(69 "Bellsprout" "Grass" "Poison" "Clorophyll" "Ground" "Jungle" 1 1 1 1 1 1 "Wish Cave" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(70 "Weepinbell" "Grass" "Poison" "Clorophyll" "Ground" "Jungle" 1 1 1 1 1 1 "N/A" "N/A" "Bellsprout" "21" "N/A" )) (insert-records :into [pokemon] :values '(71 "Victreebel" "Grass" "Poison" "Clorophyll" "Ground" "Jungle" 1 1 1 1 1 1 "N/A" "N/A" "Weepinbell" "N/A" "Leaf Stone" )) (insert-records :into [pokemon] :values '(72 "Tentacool" "Water" "Poison" "Clear Body/Liquid Ooze" "Water" "Bountiful Sea" 2 2 2 2 2 1 "Stormy Sea" "1-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(73 "Tentacruel" "Water" "Poison" "Clear Body/Liquid Ooze" "Water" "Bountiful Sea" 2 2 1 1 1 1 "Stormy Sea" "31-39" "Tentacool" "30" "N/A" )) (insert-records :into [pokemon] :values '(74 "Geodude" "Rock" "Ground" "Rock Head/Sturdy" "Ground" "Mt. Deepgreen" 3 3 3 3 3 1 "Mt. Steel" "5-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(75 "Graveler" "Rock" "Ground" "Rock Head/Sturdy" "Ground" "Mt. Deepgreen" 2 3 2 3 2 1 "Magma Cavern" "5-10" "Geodude" "25" "N/A" )) (insert-records :into [pokemon] :values '(76 "Golem" "Rock" "Ground" "Rock Head/Sturdy" "Ground" "Mt. Deepgreen" 2 3 2 3 2 1 "Magma Cavern" "15-20" "Graveler" "N/A" "Link Cable" )) (insert-records :into [pokemon] :values '(77 "Ponyta" "Fire" "None" "Run Away/Flash Fire" "Magma" "Scorched Plains" 1 1 1 1 1 1 "Joyous Tower" "57-59" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(78 "Rapidash" "Fire" "None" "Run Away/Flash Fire" "Magma" "Scorched Plains" 2 3 2 3 2 1 "N/A" "N/A" "Ponyta" "40" "N/A" )) (insert-records :into [pokemon] :values '(79 "Slowpoke" "Water" "Psychic" "Oblivious/Own Tempo" "Water" "Bountiful Sea" 2 4 4 3 3 1 "Stormy Sea" "11-19" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(80 "Slowbro" "Water" "Psychic" "Oblivious/Own Tempo" "Water" "Bountiful Sea" 3 4 4 3 3 1 "N/A" "N/A" "Slowpoke" "37" "N/A" )) (insert-records :into [pokemon] :values '(81 "Magnemite" "Electric" "Steel" "Magnet Pull/Sturdy" "Float" "Power Plant" 4 3 3 2 3 1 "Lightning Field" "1-7" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(82 "Magneton" "Electric" "Steel" "Magnet Pull/Sturdy" "Float" "Power Plant" 3 2 2 2 2 1 "N/A" "N/A" "Magnemite" "30" "N/A" )) (insert-records :into [pokemon] :values '(83 "Farfetch'd" "Normal" "Flying" "Keen Eye/Inner Focus" "Ground" "Wild Plains" 2 2 2 1 3 1 "Silent Chasm" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(84 "Doduo" "Normal" "Flying" "Run Away/Early Bird" "Ground" "Safari" 3 2 2 1 3 1 "Great Canyon" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(85 "Dodrio" "Normal" "Flying" "Run Away/Early Bird" "Ground" "Safari" 2 3 1 2 2 1 "N/A" "N/A" "Doduo" "31" "N/A" )) (insert-records :into [pokemon] :values '(86 "Seel" "Water" "None" "Thick Fat" "Water" "Ice Floe Beach" 2 3 4 2 3 1 "Mt. Freeze" "3-7" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(87 "Dewgong" "Water" "Ice" "Thick Fat" "Water" "Ice Floe Beach" 3 4 3 3 2 1 "N/A" "N/A" "Seel" "34" "N/A" )) (insert-records :into [pokemon] :values '(88 "Grimer" "Poison" "None" "Stench/Sticky Hold" "Ground" "Poison Swamp" 2 1 2 1 2 1 "Magma Cavern" "15-21" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(89 "Muk" "Poison" "None" "Stench/Sticky Hold" "Ground" "Poison Swamp" 2 3 2 2 2 1 "N/A" "N/A" "Grimer" "38" "N/A" )) (insert-records :into [pokemon] :values '(90 "Shellder" "Water" "None" "Shell Armor" "Water" "Bountiful Sea" 3 3 2 2 2 1 "Stormy Sea" "1-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(91 "Cloyster" "Water" "Ice" "Shell Armor" "Water" "Bountiful Sea" 3 4 3 3 2 1 "N/A" "N/A" "Shellder" "N/A" "Water Stone" )) (insert-records :into [pokemon] :values '(92 "Gastly" "Ghost" "Poison" "Levitate" "Wall" "Darkness Ridge" 3 2 2 2 2 1 "Buried Relic" "9-14" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(93 "Haunter" "Ghost" "Poison" "Levitate" "Wall" "Darkness Ridge" 3 3 3 3 3 1 "Buried Relic" "82-93" "Gastly" "25" "N/A" )) (insert-records :into [pokemon] :values '(94 "Gengar" "Ghost" "Poison" "Levitate" "Wall" "Darkness Ridge" 3 2 3 2 3 1 "N/A" "N/A" "Haunter" "N/A" "Link Cable" )) (insert-records :into [pokemon] :values '(95 "Onix" "Rock" "Ground" "Rock Head/Sturdy" "Ground" "Boulder Cave" 2 3 1 2 1 4 "Magma Cavern" "21-23" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(96 "Drowzee" "Psychic" "None" "Insomnia" "Ground" "Wild Plains" 1 1 1 1 1 1 "Buried Relic" "9-14" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(97 "Hypno" "Psychic" "None" "Insomnia" "Ground" "Wild Plains" 1 3 1 2 1 1 "N/A" "N/A" "Drowzee" "26" "N/A" )) (insert-records :into [pokemon] :values '(98 "Krabby" "Water" "None" "Hyper Cutter/Shell Armor" "Water" "Shallow Beach" 3 4 3 3 3 1 "Silver Trench" "15-24" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(99 "Kingler" "Water" "None" "Hyper Cutter/Shell Armor" "Water" "Shallow Beach" 4 4 3 3 4 1 "N/A" "N/A" "Krabby" "28" "N/A" )) (insert-records :into [pokemon] :values '(100 "Voltorb" "Electric" "None" "Soundproof/Static" "Ground" "Power Plant" 2 2 3 3 3 1 "Thunderwave Cave" "3-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(101 "Electrode" "Electric`" "None" "Soundproof/Static" "Ground" "Power Plant" 3 3 3 3 2 1 "N/A" "N/A" "Voltorb" "30" "N/A" )) (insert-records :into [pokemon] :values '(102 "Exeggcute" "Grass" "Psychic" "Chlorophyll" "Ground" "Jungle" 2 2 3 2 3 1 "Howling Forest" "14" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(103 "Exeggutor" "Grass" "Psychic" "Chlorophyll" "Ground" "Jungle" 2 3 1 2 1 1 "N/A" "N/A" "Exeggcute" "N/A" "Leaf Stone" )) (insert-records :into [pokemon] :values '(104 "Cubone" "Ground" "None" "Rock Head/Lightningrod" "Ground" "Mt. Deepgreen" 3 3 3 3 4 1 "Southern Cavern" "5-10" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(105 "Marowak" "Ground" "None" "Rock Head/Lightningrod" "Ground" "Mt. Deepgreen" 3 3 3 3 4 1 "N/A" "N/A" "Cubone" "28" "N/A" )) (insert-records :into [pokemon] :values '(106 "Hitmonlee" "Fighting" "None" "Limber" "Ground" "Mt. Discipline" 1 1 1 1 1 1 "N/A" "N/A" "Tyrogue" "20" "ATK higher than DEF" )) (insert-records :into [pokemon] :values '(107 "Hitmonchan" "Fighting" "None" "Keen Eye" "Ground" "Mt. Discipline" 1 1 1 1 1 1 "N/A" "N/A" "Tyrogue" "20" "DEF higher that ATK" )) (insert-records :into [pokemon] :values '(108 "Lickitung" "Normal" "None" "Own Tempo" "Ground" "Sky Blue Plains" 3 1 1 1 1 1 "Western Cave" "37-44" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(109 "Koffing" "Poison" "None" "Levitate" "Float" "Poison Swamp" 1 1 1 1 1 1 "Sky Tower" "9-16" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(110 "Weezing" "Poison" "None" "Levitate" "Float" "Poison Swamp" 1 2 1 2 1 1 "N/A" "N/A" "Koffing" "35" "N/A" )) (insert-records :into [pokemon] :values '(111 "Rhyhorn" "Ground" "Rock" "Lightningrod/Rock Head" "Ground" "Safari" 2 1 3 1 2 1 "Frosty Grotto" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(112 "Rhydon" "Ground" "Rock" "Lightningrog/Rock Head" "Ground" "Safari" 3 3 3 3 2 1 "N/A" "N/A" "Rhyhorn" "42" "N/A" )) (insert-records :into [pokemon] :values '(113 "Chansey" "Normal" "None" "Natural Cure/Serene Grace" "Ground" "Sky Blue Plains" 1 1 1 1 1 1 "Joyous Tower" "50 60 77" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(114 "Tangela" "Grass" "None" "Chlorophyll" "Ground" "Jungle" 3 3 2 3 3 1 "Lapis Cave" "9-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(115 "Kangaskhan" "Normal" "None" "Early Bird" "Ground" "Safari" 3 2 3 3 3 1 "Western Cave" "13-19" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(116 "Horsea" "Water" "None" "Swift Swim" "Water" "Treasure Sea" 3 2 2 2 2 1 "Silver Trench" "10-20" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(117 "Seadra" "Water" "None" "Poison Point" "Water" "Treasure Sea" 3 3 2 3 3 1 "Stormy Sea" "30-39" "Horsea" "32" "N/A" )) (insert-records :into [pokemon] :values '(118 "Goldeen" "Water" "None" "Swift Swim/Water Veil" "Water" "Rub-a-Dub River" 1 3 4 2 3 1 "Waterfall Pond" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(119 "Seaking" "Water" "None" "Swift Swim/Water Veil" "Water" "Rub-a-Dub River" 1 4 4 3 3 1 "N/A" "N/A" "Goldeen" "33" "N/A" )) (insert-records :into [pokemon] :values '(120 "Staryu" "Water" "None" "Illuminate/Natural Cure" "Water" "Bountiful Sea" 3 3 2 2 2 1 "Silver Trench" "15-25" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(121 "Starmie" "Water" "None" "Illumnate/Natural Cure" "Water" "Bountiful Sea" 3 3 2 3 3 1 "N/A" "N/A" "Staryu" "N/A" "Water Stone" )) (insert-records :into [pokemon] :values '(122 "Mr. Mime" "Psychic" "None" "Soundproof" "Ground" "Decrepit Lab" 4 3 4 3 4 1 "Solar Cave" "7-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(123 "Scyther" "Bug" "Flying" "Swarm" "Ground" "Overgrown Forest" 2 2 3 2 3 1 "Sinister Woods" "8-11" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(124 "Jynx" "Ice" "Psychic" "Oblivious" "Ground" "Frigid Cavern" 2 2 1 1 1 1 "N/A" "N/A" "Smoochum" "30" "N/A" )) (insert-records :into [pokemon] :values '(125 "Electabuzz" "Electric" "None" "Static" "Ground" "Power Plant" 1 3 2 2 1 1 "N/A" "N/A" "Elekid" "30" "N/A" )) (insert-records :into [pokemon] :values '(126 "Magmar" "Fire" "None" "Flame Body" "Magma" "Crater" 3 3 3 4 3 1 "N/A" "N/A" "Magby" "30" "N/A" )) (insert-records :into [pokemon] :values '(127 "Pinsir" "Bug" "None" "Hyper Cutter" "Ground" "Overgrown Forest" 4 3 4 3 4 1 "Mt. Steel" "7-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(128 "Tauros" "Normal" "None" "Intimidate" "Ground" "Safari" 4 3 3 3 4 1 "Great Canyon" "10-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(129 "Magikarp" "Water" "None" "Swift Swim" "Water" "Waterfall Lake" 1 1 1 1 1 1 "Waterfall Pond" "7-11 Blue Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(130 "Gyarados" "Water" "Flying" "Intimidate" "Float" "Waterfall Lake" 4 2 3 2 3 4 "N/A" "N/A" "Magikarp" "20" "N/A" )) (insert-records :into [pokemon] :values '(131 "Lapras" "Water" "Ice" "Water Absorb/Shell Armor" "Water" "Mystic Lake" 3 3 4 3 4 4 "Farr-off Sea" "45-50 Blue Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(132 "Ditto" "Normal" "None" "Limber" "Ground" "Decrepit Lab" 2 1 2 1 2 1 "Frosty Forest" "4-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(133 "Eevee" "Normal" "None" "Run Away" "Ground" "Transform Forest" 3 4 4 4 4 1 "Joyous Tower" "12-17" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(134 "Vaporeon" "Water" "None" "Water Absorb" "Water" "Transform Forest" 3 4 4 4 4 1 "N/A" "N/A" "Eevee" "N/A" "Water Stone" )) (insert-records :into [pokemon] :values '(135 "Jolteon" "Electric" "None" "Volt Absorb" "Ground" "Transform Forest" 3 4 4 4 4 1 "N/A" "N/A" "Eevee" "N/A" "Thunderstone" )) (insert-records :into [pokemon] :values '(136 "Flareon" "Fire" "None" "Flash Fire" "Magma" "Transform Forest" 3 4 4 4 4 1 "N/A" "N/A" "Eevee" "N/A" "Fire Stone" )) (insert-records :into [pokemon] :values '(137 "Porygon" "Normal" "None" "Trace" "Water" "Decrepit Lab" 1 1 2 4 1 1 "Buried Relic" "5-10 Red Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(138 "Omanyte" "Rock" "Water" "Swift Swim/Shell Armor" "Water" "Deep-Sea Floor" 2 2 2 2 2 1 "Stormy Sea" "1-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(139 "Omastar" "Rock" "Water" "Swift Swim/Shell Armor" "Water" "Deep-Sea Floor" 3 3 2 2 2 1 "N/A" "N/A" "Omanyte" "40" "N/A" )) (insert-records :into [pokemon] :values '(140 "Kabuto" "Rock" "Water" "Swift Swim/Battle Armor" "Water" "Deep-Sea Floor" 3 4 4 3 3 1 "Silver Trench" "5-13" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(141 "Kabutops" "Rock" "Water" "Swift Swim/Battle Armor" "Water" "Deep-Sea Floor" 3 4 4 3 3 1 "N/A" "N/A" "Kabuto" "40" "N/A" )) (insert-records :into [pokemon] :values '(142 "Aerodactyl" "Rock" "Flying" "Rock Head/Pressure" "Float" "Ancient Relic" 4 3 4 3 4 1 "Sky Tower" "21-25" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(143 "Snorlax" "Normal" "None" "Immunity/Thick Fat" "Ground" "Energetic Forest" 3 4 4 4 4 1 "Howling Forest" "11-14" "Munchlax" "40" "N/A" )) (insert-records :into [pokemon] :values '(144 "Articuno" "Ice" "Flying" "Pressure" "Float" "Legendary Island" 3 2 2 2 2 4 "Frosty Grotto" "5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(145 "Zapdos" "Electric" "Flying" "Pressure" "Float" "Legendary Island" 3 2 2 2 2 4 "Mt. Thunder Peak" "3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(146 "Moltres" "Fire" "Flying" "Pressure" "Float" "Legendary Island" 3 2 2 2 2 4 "Mt. Blaze Peak" "3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(147 "Dratini" "Dragon" "None" "Shed Skin" "Water" "Mystic Lake" 3 2 2 1 2 1 "Silver Trench" "50-59" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(148 "Dragonair" "Dragon" "None" "Shed Skin" "Water" "Mystic Lake" 3 3 3 2 2 1 "Wyvern Hill" "12-20" "Dratini" "30" "N/A" )) (insert-records :into [pokemon] :values '(149 "Dragonite" "Dragon" "Flying" "Inner Focus" "Water" "Mystic Lake" 4 4 3 3 3 4 "N/A" "N/A" "Dragonair" "55" "N/A" )) (insert-records :into [pokemon] :values '(150 "Mewtwo" "Psychic" "None" "Pressure" "Ground" "Cryptic Cave" 4 3 2 3 4 1 "Western Cave" "99" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(151 "Mew" "Psychic" "None" "Synchronize" "Float" "Final Island" 4 2 3 2 3 1 "Buried Relic" "36-98" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(152 "Chikorita" "Grass" "None" "Overgrow" "Ground" "Beau Plains" 3 4 4 4 4 1 "Joyous Tower" "8-11" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(153 "Bayleef" "Grass" "None" "Overgrow" "Ground" "Beau Plains" 4 4 4 4 4 1 "Western Cave" "20-27" "Chikorita" "16" "N/A" )) (insert-records :into [pokemon] :values '(154 "Meganium" "Grass" "None" "Overgrow" "Ground" "Beau Plains" 4 4 4 4 4 1 "N/A" "N/A" "Bayleef" "32" "N/A" )) (insert-records :into [pokemon] :values '(155 "Cyndaquil" "Fire" "None" "Blaze" "Magma" "Scorched Plains" 3 3 4 3 4 1 "Joyous Tower" "13-17" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(156 "Quilava" "Fire" "None" "Blaze" "Magma" "Scorched Plains" 4 3 4 3 4 1 "Fiery Field" "15-24" "Cyndaquil" "14" "N/A" )) (insert-records :into [pokemon] :values '(157 "Typhlosion" "Fire" "None" "Blaze" "Magma" "Scorched Plains" 4 3 4 3 4 1 "N/A" "N/A" "Quilava" "36" "N/A" )) (insert-records :into [pokemon] :values '(158 "Totodile" "Water" "None" "Torrent" "Water" "Rub-a-Dub River" 3 3 3 3 4 1 "Waterfall Pond" "6-10" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(159 "Croconaw" "Water" "None" "Torrent" "Water" "Rub-a-Dub River" 4 3 3 3 4 1 "Northwind Field" "27-29" "Totodile" "18" "N/A" )) (insert-records :into [pokemon] :values '(160 "Feraligatr" "Water" "None" "Torrent" "Water" "Rub-a-Dub River" 4 3 3 3 4 1 "Western Cave" "49-58" "Croconaw" "30" "N/A" )) (insert-records :into [pokemon] :values '(161 "Sentret" "Normal" "None" "Run Away/Keen Eye" "Ground" "Thunder Meadow" 1 2 3 1 2 1 "Sinister Woods" "3-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(162 "Furret" "Normal" "None" "Run Away/Keen Eye" "Ground" "Thunder Meadow" 1 3 3 2 2 1 "N/A" "N/A" "Sentret" "15" "N/A" )) (insert-records :into [pokemon] :values '(163 "Hoothoot" "Normal" "Flying" "Insomnia/Keen Eye" "Ground" "Flyaway Forest" 2 2 3 2 3 1 "Sinister Woods" "10-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(164 "Noctowl" "Normal" "Flying" "Insomnia/Keen Eye" "Ground" "Flyaway Forest" 2 3 3 3 4 1 "N/A" "N/A" "Hoothoot" "20" "N/A" )) (insert-records :into [pokemon] :values '(165 "Ladyba" "Bug" "Flying" "Swarm/Early Bird" "Float" "Mist-Rise Forest" 2 3 3 3 3 1 "Sinister Woods" "7-10" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(166 "Ledian" "Bug" "Flying" "Swarm/Early Bird" "Float" "Mist-Rise Forest" 1 3 2 3 2 1 "N/A" "N/A" "Ladyba" "18" "N/A" )) (insert-records :into [pokemon] :values '(167 "Spinarak" "Bug" "Poison" "Swarm/Insomnia" "Ground" "Secretive Forest" 2 2 2 1 3 1 "Silent Chasm" "6-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(168 "Ariados" "Bug" "Poison" "Swarm/Insomnia" "Ground" "Secretive Forest" 2 3 3 3 3 1 "N/A" "N/A" "Spinarak" "22" "N/A" )) (insert-records :into [pokemon] :values '(169 "Crobat" "Poison" "Flying" "Inner Focus" "Float" "Echo Cave" 3 3 3 2 3 1 "N/A" "N/A" "Golbat" "N/A" "IQ 5 Stars" )) (insert-records :into [pokemon] :values '(170 "Chinchou" "Water" "Electric" "Volt Absorb/Illuminate" "Water" "Deep-Sea Floor" 3 3 2 2 3 1 "Silver Trench" "70-79" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(171 "Lanturn" "Water" "Electric" "Volt Absorb/Illuminate" "Water" "Deep-Sea Floor" 3 3 2 3 3 1 "N/A" "N/A" "Chinchou" "27" "N/A" )) (insert-records :into [pokemon] :values '(172 "Pichu" "Electric" "None" "Static" "Ground" "Energetic Forest" 1 4 4 4 4 1 "Joyous Tower" "3-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(173 "Cleffa" "Normal" "None" "Cute Charm" "Ground" "Mt. Moonview" 1 1 1 1 1 1 "Wish Cave" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(174 "Igglybuff" "Normal" "None" "Cute Charm" "Ground" "Sky Blue Plains" 2 2 2 2 3 1 "Western Cave" "10-13" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(175 "Togepi" "Normal" "None" "Hustle/Serene Grace" "Ground" "Flyaway Forest" 1 1 1 1 1 1 "Wish Cave" "5-10" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(176 "Togetic" "Normal" "Flying" "Hustle/Serene Grace" "Ground" "Flyaway Forest" 2 3 3 3 3 1 "N/A" "N/A" "Togepi" "N/A" "IQ 5 Stars" )) (insert-records :into [pokemon] :values '(177 "Natu" "Psychic" "Flying" "Synchronize/Early Bird" "Ground" "Flyaway Forest" 2 3 2 3 2 1 "Solar Cave" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(178 "Xatu" "Psychic" "Flying" "Syncronize/Early Bird" "Ground" "Flyaway Forest" 4 3 4 3 4 1 "N/A" "N/A" "Natu" "25" "N/A" )) (insert-records :into [pokemon] :values '(179 "Mareep" "Electric" "None" "Static" "Ground" "Thunder Meadow" 3 3 3 3 3 1 "Lightning Field" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(180 "Flaaffy" "Electric" "None" "Static" "Ground" "Thunder Meadow" 3 3 3 3 2 1 "Lightning Field" "7-13" "Mareep" "15" "N/A" )) (insert-records :into [pokemon] :values '(181 "Ampharos" "Electric" "None" "Static" "Ground" "Thunder Meadow" 3 3 3 4 3 1 "N/A" "N/A" "Flaffy" "30" "N/A" )) (insert-records :into [pokemon] :values '(182 "Bellossom" "Grass" "None" "Chlorophyll" "Ground" "Jungle" 3 3 3 3 3 1 "N/A" "N/A" "Gloom" "N/A" "Sun Stone" )) (insert-records :into [pokemon] :values '(183 "Marill" "Water" "None" "Thick Fat/Huge Power" "Water" "Turtleshell Pond" 1 1 1 1 1 1 "Wish Cave" "4-6" "Azurill" "N/A" "IQ 6 Stars" )) (insert-records :into [pokemon] :values '(184 "Azumarill" "Water" "None" "Thick Fat/Huge Power" "Water" "Turtleshell Pond" 3 3 3 3 3 1 "N/A" "N/A" "Marill" "18" "N/A" )) (insert-records :into [pokemon] :values '(185 "Sudowoodo" "Rock" "None" "Sturdy/Rock Head" "Ground" "Overgrown Forest" 3 2 3 2 4 1 "Sinister Woods" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(186 "Politoed" "Water" "None" "Water Absorb/Damp" "Water" "Tadpole Pond" 3 3 2 4 2 1 "N/A" "N/A" "Poliwhirl" "N/A" "King's Rock Link Cable" )) (insert-records :into [pokemon] :values '(187 "Hoppip" "Grass" "Flying" "Chlorophyll" "Ground" "Beau Plains" 2 3 3 2 3 1 "Pitfall Valley" "4-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(188 "Skiploom" "Grass" "Flying" "Chlorophyll" "Ground" "Beau Plains" 2 3 3 2 3 1 "Great Canyon" "1-3" "Hoppip" "18" "N/A" )) (insert-records :into [pokemon] :values '(189 "Jumpluff" "Grass" "Flying" "Chlorophyll" "Ground" "Beau Plains" 2 3 2 3 2 1 "N/A" "N/A" "Skiploom" "27" "N/A" )) (insert-records :into [pokemon] :values '(190 "Aipom" "Normal" "None" "Run Away/Pickup" "Ground" "Energetic Forest" 1 2 2 2 1 1 "Uproar Forest" "1-6 Blue Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(191 "Sunkern" "Grass" "None" "Chlorophyll" "Ground" "Jungle" 1 1 1 1 1 1 "Wish Cave" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(192 "Sunflora" "Grass" "None" "Chlorophyll" "Ground" "Jungle" 1 2 1 2 1 1 "N/A" "N/A" "Sunkern" "N/A" "Sun Stone" )) (insert-records :into [pokemon] :values '(193 "Yanma" "Bug" "Flying" "Speed Boost/Compundeyes" "Float" "Mist-Rise Forest" 4 3 4 3 4 1 "Silent Chasm" "1-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(194 "Wooper" "Water" "Ground" "Damp/Water Absorb" "Water" "Peanut Swamp" 1 2 2 1 2 1 "Sinister Woods" "8-10" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(195 "Quagsire" "Water" "Ground" "Damp/Water Absorb" "Water" "Peanut Swamp" 2 3 2 3 2 1 "N/A" "N/A" "Wooper" "20" "N/A" )) (insert-records :into [pokemon] :values '(196 "Espeon" "Psychic" "None" "Synchronize" "Ground" "Transform Forest" 3 4 4 4 4 1 "N/A" "N/A" "Eevee" "N/A" "Sun Ribbon IQ 4 Stars" )) (insert-records :into [pokemon] :values '(197 "Umbreon" "Dark" "None" "Synchronize" "Ground" "Transform Forest" 3 4 4 4 4 1 "N/A" "N/A" "Eevee" "N/A" "Lunar Ribbon IQ 4 Stars" )) (insert-records :into [pokemon] :values '(198 "Murkrow" "Dark" "Flying" "Insomnia" "Ground" "Flyaway Forest" 2 1 2 1 2 1 "Great Canyon" "5-7" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(199 "Slowking" "Water" "Psychic" "Oblivious/Own Tempo" "Water" "Bountiful Sea" 4 4 3 4 4 1 "N/A" "N/A" "Slowpoke" "N/A" "King's Rock Link Cable" )) (insert-records :into [pokemon] :values '(200 "Misdreavus" "Ghost" "None" "Levitate" "Wall" "Darkness Ridge" 3 3 3 3 3 1 "Murky Cave" "13-19" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(201 "Unown" "Psychic" "None" "Levitate" "Float" "Aged Chamber AN/O?" 4 4 3 4 3 1 "Unown Relic" "N/A" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(202 "Wobbuffet" "Psychic" "None" "Shadow Tag" "Ground" "Echo Cave" 2 4 2 3 2 1 "N/A" "N/A" "Wynaut" "15" "N/A" )) (insert-records :into [pokemon] :values '(203 "Girafarig" "Normal" "Psychic" "Focus/Early Bird" "Ground" "Sky Blue Plains" 3 3 3 3 4 1 "Solar Cave" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(204 "Pineco" "Bug" "None" "Sturdy" "Ground" "Secretive Forest" 1 2 2 1 1 1 "Mt. Freeze" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(205 "Forretress" "Bug" "Steel" "Sturdy" "Ground" "Cryptic Forest" 1 2 2 1 1 1 "N/A" "N/A" "Pineco" "31" "N/A" )) (insert-records :into [pokemon] :values '(206 "Dunsparce" "Normal" "None" "Serene Grace/Run Away" "Ground" "Echo Cave" 1 1 1 1 1 1 "Great Canyon" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(207 "Gligar" "Ground" "Flying" "Hyper Cutter/Sand Veil" "Float" "Mt. Deepgreen" 4 3 4 3 4 1 "Mt. Thunder" "7-10" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(208 "Steelix" "Steel" "Ground" "Rock Head/Sturdy" "Ground" "Boulder Cave" 4 3 3 2 2 4 "N/A" "N/A" "Onix" "N/A" "Metal Coat Link Cable" )) (insert-records :into [pokemon] :values '(209 "Snubbull" "Normal" "None" "Intimidate/Run Away" "Ground" "Sky Blue Plains" 2 2 2 2 2 1 "Western Cave" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(210 "Granbull" "Normal" "None" "Intimidate" "Ground" "Sky Blue Plains" 2 3 2 2 2 1 "N/A" "N/A" "Snubbull" "23" "N/A" )) (insert-records :into [pokemon] :values '(211 "Qwilfish" "Water" "Poison" "Poison Point/Swift Swim" "Water" "Serene Sea" 2 3 2 3 2 1 "Silver Trench" "1-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(212 "Scizor" "Bug" "Steel" "Swarm" "Ground" "Overgrown Forest" 2 3 1 2 1 1 "N/A" "N/A" "Scyther" "N/A" "Metal Coat Link Cable" )) (insert-records :into [pokemon] :values '(213 "Shuckle" "Bug" "Rock" "Sturdy" "Ground" "Mt. Deepgreen" 3 2 3 2 3 1 "Mt. Blaze" "5-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(214 "Heracross" "Bug" "Fighting" "Swarm/Guts" "Ground" "Overgrown Forest" 1 1 1 1 1 1 "Great Canyon" "7-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(215 "Sneasel" "Dark" "Ice" "Inner Focus/Keen Eye" "Ground" "Darkness Ridge" 2 4 4 4 4 1 "Buried Relic" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(216 "Teddiursa" "Normal" "None" "Pickup" "Ground" "Mt. Deepgreen" 1 1 1 1 1 1 "Silent Chasm" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(217 "Ursaring" "Normal" "None" "Guts" "Ground" "Mt. Deepgreen" 3 3 3 3 3 1 "N/A" "N/A" "Teddiursa" "30" "N/A" )) (insert-records :into [pokemon] :values '(218 "Slugma" "Fire" "None" "Magma Armor/Flame Body" "Magma" "Crater" 3 2 3 3 3 1 "Mt. Blaze" "1-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(219 "Magcargo" "Fire" "Rock" "Magma Armor/Flam Body" "Magma" "Crater" 3 3 2 3 2 1 "N/A" "N/A" "Slugma" "38" "N/A" )) (insert-records :into [pokemon] :values '(220 "Swinub" "Ice" "Ground" "Oblivious" "Ground" "Frigid Cavern" 1 1 1 1 1 1 "Sinister Woods" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(221 "Piloswine" "Ice" "Ground" "Oblivious" "Ground" "Frigid Cavern" 1 1 1 1 1 1 "N/A" "N/A" "Swinub" "33" "N/A" )) (insert-records :into [pokemon] :values '(222 "Corsola" "Water" "Rock" "Hustle/Natural Cure" "Water" "Shallow Beach" 3 3 2 2 2 1 "Silver Trench" "5-13" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(223 "Remoraid" "Water" "None" "Hustle" "Water" "Treasure Sea" 3 2 3 1 3 1 "Silver Trench" "50-59" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(224 "Octillery" "Water" "None" "Suction Cups" "Water" "Treasure Sea" 3 3 2 2 2 1 "Silver Trench" "60-69" "Remoraid" "25" "N/A" )) (insert-records :into [pokemon] :values '(225 "Delibird" "Ice" "Flying" "Vital Spirit/Hustle" "Ground" "Frigid Cavern" 4 3 4 3 4 1 "Northwind Field" "17-25" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(226 "Mantine" "Water" "Flying" "Swift Swim/Water Absorb" "Float" "Serene Sea" 4 4 4 4 4 2 "Grand Sea" "30 Red Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(227 "Skarmory" "Steel" "Flying" "Keen Eye/Sturdy" "Ground" "Ravaged Field" 3 1 2 2 2 1 "Western Cave" "40-49" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(228 "Houndour" "Dark" "Fire" "Early Bird/Flash Fire" "Magma" "Ravaged Field" 2 1 2 1 2 1 "Silent Chasm" "5-7" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(229 "Houndoom" "Dark" "Fire" "Early Bird/Flash Fire" "Magma" "Ravaged Field" 2 2 2 2 2 1 "N/A" "N/A" "Houndour" "24" "N/A" )) (insert-records :into [pokemon] :values '(230 "Kingdra" "Water" "Dragon" "Swift Swim" "Water" "Treasure Sea" 4 3 2 3 2 1 "N/A" "N/A" "Seadra" "N/A" "Dragon Scale Link Cable" )) (insert-records :into [pokemon] :values '(231 "Phanpy" "Ground" "None" "Pickup" "Ground" "Safari" 2 2 3 1 3 1 "Great Canyon" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(232 "Donphan" "Ground" "None" "Sturdy" "Ground" "Safari" 2 2 2 2 1 1 "N/A" "N/A" "Phanpy" "25" "N/A" )) (insert-records :into [pokemon] :values '(233 "Porygon2" "Normal" "None" "Trace" "Water" "Decrepit Lab" 2 3 1 3 1 1 "Wish Cave" "79-84" "Porygon" "N/A" "Upgrade Link Cable" )) (insert-records :into [pokemon] :values '(234 "Stantler" "Normal" "None" "Intimidate" "Ground" "Energetic Forest" 1 2 2 2 2 1 "Mt. Thunder" "5-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(235 "Smeargle" "Normal" "None" "Own Tempo" "Ground" "Sky Blue Plains" 2 3 2 2 2 1 "Rescue Howling Forest" "15" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(236 "Tyrogue" "Fighting" "None" "Guts" "Ground" "Mt. Discipline" 1 1 1 1 1 1 "Mt. Steel" "5-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(237 "Hitmontop" "Fighting" "None" "Intimidate" "Ground" "Mt. Discipline" 2 3 2 3 2 1 "N/A" "N/A" "Tyrogue" "20" "ATK and DEF equal" )) (insert-records :into [pokemon] :values '(238 "Smoochum" "Ice" "Psychic" "Oblivious" "Ground" "Frigid Cavern" 2 3 2 3 2 1 "Joyous Tower" "21-25" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(239 "Elekid" "Electric" "None" "Static" "Ground" "Power Plant" 3 2 3 3 3 1 "Thunderwave Cave" "4-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(240 "Magby" "Fire" "None" "Flame Body" "Magma" "Crater" 3 2 2 2 2 1 "Mt. Blaze" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(241 "Miltank" "Normal" "None" "Thick Fat" "Ground" "Safari" 4 3 3 3 3 1 "Western Cave" "10 20 30 40 50-53 60-98" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(242 "Blissy" "Normal" "None" "Natural Cure/Serene Grace" "Ground" "Sky Blue Plains" 2 3 2 1 1 1 "N/A" "N/A" "Chansey" "N/A" "IQ 5 Stars" )) (insert-records :into [pokemon] :values '(243 "Raikou" "Electric" "None" "Pressure" "Ground" "Sacred Field" 3 3 4 4 4 1 "Lightning Field" "30" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(244 "Entei" "Fire" "None" "Pressure" "Magma" "Sacred Field" 3 4 4 4 4 1 "Fiery Field" "30" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(245 "Suicune" "Water" "None" "Pressure" "Water" "Sacred Field" 4 3 4 3 4 1 "Northwind Field" "30" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(246 "Larvitar" "Rock" "Ground" "Guts" "Ground" "Mt. Cleft" 2 2 2 1 2 1 "Southern Cavern" "16-26" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(247 "Pupitar" "Rock" "Ground" "Shed Skin" "Ground" "Mt. Cleft" 2 2 3 1 2 1 "Mt. Freeze" "3-5" "Larvitar" "30" "N/A" )) (insert-records :into [pokemon] :values '(248 "Tyranitar" "Rock" "Dark" "Sand Stream" "Ground" "Mt. Cleft" 2 1 1 1 1 1 "N/A" "N/A" "Pupitar" "55" "N/A" )) (insert-records :into [pokemon] :values '(249 "Lugia" "Psychic" "Flying" "Pressure" "Water" "Deep-Sea Current" 4 3 4 3 4 4 "Silver Trench" "99" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(250 "Ho-Oh" "Fire" "Flying" "Pressure" "Float" "Rainbow Peak" 4 4 3 4 4 4 "Mt. Faraway" "40" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(251 "Celebi" "Psychic" "Grass" "Natural Cure" "Float" "Healing Forest" 3 2 2 2 2 1 "Purity Forest" "99" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(252 "Treeko" "Grass" "None" "Overgrow" "Ground" "Overgrown Forest" 2 4 4 4 4 1 "Joyous Tower" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(253 "Grovyle" "Grass" "None" "Overgrow" "Ground" "Overgrown Forest" 3 4 4 4 4 1 "Western Cave" "38-49" "Treeko" "16" "N/A" )) (insert-records :into [pokemon] :values '(254 "Sceptile" "Grass" "None" "Overgrow" "Ground" "Overgrown Forest" 4 4 4 4 4 1 "N/A" "N/A" "Grovyle" "36" "N/A" )) (insert-records :into [pokemon] :values '(255 "Torchic" "Fire" "None" "Blaze" "Magma" "Scorched Plains" 3 4 3 4 4 1 "Joyous Tower" "11-15" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(256 "Combusken" "Fire" "Fighting" "Blaze" "Magma" "Scorched Plains" 4 3 3 4 3 1 "Fiery Field" "22-29" "Torchic" "16" "N/A" )) (insert-records :into [pokemon] :values '(257 "Blaziken" "Fire" "Fighting" "Blaze" "Magma" "Scorched Plains" 4 3 3 4 3 1 "N/A" "N/A" "Combusken" "36" "N/A" )) (insert-records :into [pokemon] :values '(258 "Mudkip" "Water" "None" "Torrent" "Water" "Peanut Swamp" 3 3 4 4 4 1 "Waterfall Pond" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(259 "Marshtomp" "Water" "Ground" "Torrent" "Water" "Peanut Swamp" 3 3 3 3 3 1 "Mt. Faraway" "10-19" "Mudkip" "16" "N/A" )) (insert-records :into [pokemon] :values '(260 "Swampert" "Water" "Ground" "Torrent" "Water" "Peanut Swamp" 4 3 3 3 3 1 "West Cave" "79-88" "Marshtomp" "36" "N/A" )) (insert-records :into [pokemon] :values '(261 "Poochyena" "Dark" "None" "Run Away" "Ground" "Wild Plains" 1 1 3 2 3 1 "Thunderwave Cave" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(262 "Mightyena" "Dark" "None" "Intimidate" "Ground" "Wild Plains" 1 1 2 1 2 1 "N/A" "N/A" "Poochyena" "Level 18" "N/A" )) (insert-records :into [pokemon] :values '(263 "Zigzagoon" "Normal" "None" "Pickup" "Ground" "Wild Plains" 1 1 1 1 1 1 "Mt. Steel" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(264 "Linoone" "Normal" "None" "Pickup" "Ground" "Wild Plains" 1 1 1 1 1 1 "N/A" "N/A" "Zigzagoon" "20" "N/A" )) (insert-records :into [pokemon] :values '(265 "Wurmple" "Bug" "None" "Shield Dust" "Ground" "Mist-Rise Forest" 1 1 1 1 1 1 "Joyous Tower" "1-2" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(266 "Silcoon" "Bug" "None" "Shed Skin" "Ground" "Mist-Rise Forest" 1 1 1 1 1 1 "Sinister Woods" "4-6" "Wurmple" "7" "N/A" )) (insert-records :into [pokemon] :values '(267 "Beautifly" "Bug" "Flying" "Swarm" "Float" "Mist-Rise Forest" 1 1 2 1 2 1 "N/A" "N/A" "Silcoon" "10" "N/A" )) (insert-records :into [pokemon] :values '(268 "Cascoon" "Bug" "None" "Shed Skin" "Ground" "Mist-Rise Forest" 1 1 1 1 1 1 "Sinister Woods" "4-6" "Wurmple" "7" "N/A" )) (insert-records :into [pokemon] :values '(269 "Dustox" "Bug" "Poison" "Shield Dust" "Float" "Mist-Rise Forest" 1 1 1 1 1 1 "N/A" "N/A" "Cascoon" "10" "N/A" )) (insert-records :into [pokemon] :values '(270 "Lotad" "Water" "Grass" "Swift Swim/Rain Dish" "Water" "Tadpole Pond" 1 2 2 2 2 1 "Waterfall Pond" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(271 "Lombre" "Water" "Grass" "Swift Swim/Rain Dish" "Water" "Tadpole Pond" 2 3 3 3 4 1 "Waterfall Pond" "13-16" "Lotad" "14" "N/A" )) (insert-records :into [pokemon] :values '(272 "Ludicolo" "Water" "Grass" "Swift Swim/Rain Dish" "Water" "Tadpole Pond" 3 4 4 4 4 1 "N/A" "N/A" "Lombre" "N/A" "Water Stone" )) (insert-records :into [pokemon] :values '(273 "Seedot" "Grass" "None" "Chlorophyll/Early Bird" "Ground" "Mushroom Forest" 1 2 2 2 2 1 "Uproar Forest" "1-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(274 "Nuzleaf" "Grass" "Dark" "Chlorophyll/Early Bird" "Ground" "Mushroom Forest" 1 2 2 2 2 1 "Uproar Forest" "5-9" "Seedot" "14" "N/A" )) (insert-records :into [pokemon] :values '(275 "Shiftry" "Grass" "Dark" "Chlorophyll/Early Bird" "Ground" "Mushroom Forest" 3 3 3 3 3 1 "Western Cave" "15-20" "Nuzleaf" "N/A" "Leaf Stone" )) (insert-records :into [pokemon] :values '(276 "Taillow" "Normal" "Flying" "Guts" "Ground" "Beau Plains" 1 2 2 2 2 1 "Joyous Tower" "2-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(277 "Swellow" "Normal" "Flying" "Guts" "Ground" "Beau Plains" 2 3 3 3 2 1 "N/A" "N/A" "Taillow" "22" "N/A" )) (insert-records :into [pokemon] :values '(278 "Wingull" "Water" "Flying" "Keen Eye" "Float" "Shallow Beach" 2 3 3 3 3 1 "Stormy Sea" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(279 "Pelipper" "Water" "Flying" "Keen Eye" "Float" "Shallow Beach" 3 3 3 3 4 1 "N/A" "N/A" "Wingull" "25" "N/A" )) (insert-records :into [pokemon] :values '(280 "Ralts" "Psychic" "None" "Synchronize/Trace" "Ground" "Sky Blue Plains" 1 2 2 2 2 1 "Wish Cave" "11-13" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(281 "Kirlia" "Psychic" "None" "Synchronize/Trace" "Ground" "Sky Blue Plains" 1 3 3 3 3 1 "Solar Cave" "10-15" "Ralts" "20" "N/A" )) (insert-records :into [pokemon] :values '(282 "Gardevoir" "Psychic" "None" "Synchronize/Trace" "Ground" "Sky Blue Plains" 1 3 3 3 3 1 "N/A" "N/A" "Kirlia" "30" "N/A" )) (insert-records :into [pokemon] :values '(283 "Surskit" "Bug" "Water" "Swift Swim" "Water" "Tadpole Pond" 2 3 3 3 3 1 "Waterfall Pond" "4-7" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(284 "Masquerain" "Bug" "Flying" "Intimidate" "Float" "Tadpole Pond" 1 3 2 3 2 1 "N/A" "N/A" "Surskit" "22" "N/A" )) (insert-records :into [pokemon] :values '(285 "Shroomish" "Grass" "None" "Effect Spore" "Ground" "Mushroom Forest" 1 1 1 1 1 1 "Sinister Woods" "6-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(286 "Breloom" "Grass" "Fighting" "Effect Spore" "Ground" "Mushroom Forest" 1 1 1 1 1 1 "N/A" "N/A" "Shroomish" "23" "N/A" )) (insert-records :into [pokemon] :values '(287 "Slakoth" "Normal" "None" "Truant" "Ground" "Energetic Forest" 1 2 2 1 1 1 "Sinister Woods" "10-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(288 "Vigoroth" "Normal" "None" "Vital Spirit" "Ground" "Energetic Forest" 1 2 2 1 1 1 "Mt. Freeze" "7-11" "Slakoth" "18" "N/A" )) (insert-records :into [pokemon] :values '(289 "Slaking" "Normal" "None" "Truant" "Ground" "Energetic Forest" 2 3 1 2 1 1 "N/A" "N/A" "Vigoroth" "36" "N/A" )) (insert-records :into [pokemon] :values '(290 "Nincada" "Bug" "Ground" "Compundeyes" "Ground" "Secretive Forest" 1 1 1 1 1 1 "Lapis Cave" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(291 "Ninjask" "Bug" "Flying" "Speed Boost" "Float" "Secretive Forest" 2 3 2 3 2 1 "N/A" "N/A" "Nincada" "20" "N/A" )) (insert-records :into [pokemon] :values '(292 "Shedinja" "Bug" "Ghost" "Wonder Guard" "Wall" "Secretive Forest" 0 0 1 0 1 1 "N/A" "N/A" "Nincada" "20" "Crytic Forest friend area NOT full" )) (insert-records :into [pokemon] :values '(293 "Whismur" "Normal" "None" "Soundproof" "Ground" "Echo Cave" 2 2 3 1 3 1 "Howling Forest" "1-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(294 "Loudred" "Normal" "None" "Soundproof" "Ground" "Echo Cave" 2 2 2 2 2 1 "Howling Forest" "9-14" "Whismur" "20" "N/A" )) (insert-records :into [pokemon] :values '(295 "Exploud" "Normal" "None" "Soundproof" "Ground" "Echo Cave" 3 2 2 2 2 1 "N/A" "N/A" "Loudred" "40" "N/A" )) (insert-records :into [pokemon] :values '(296 "Makuhita" "Fighting" "None" "Thick Fat/Guts" "Ground" "Mt. Discipline" 2 4 4 2 3 1 "Buried Relic" "30-34" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(297 "Hariyama" "Fighting" "None" "Thick Fat/Guts" "Ground" "Mt. Discipline" 3 3 4 2 3 1 "N/A" "N/A" "Makuhita" "24" "N/A" )) (insert-records :into [pokemon] :values '(298 "Azurill" "Normal" "None" "Thick Fat/Huge Power" "Water" "Turtleshell Pond" 1 1 1 1 1 1 "Frosty Forest" "1-3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(299 "Nosepass" "Rock" "None" "Sturdy/Magnet Pull" "Ground" "Echo Cave" 2 3 3 3 4 1 "Frosty Forest" "3-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(300 "Skitty" "Normal" "None" "Cute Charm" "Ground" "Energetic Forest" 3 4 4 3 4 1 "Joyous Tower" "24-28" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(301 "Delcatty" "Normal" "None" "Cute Charm" "Ground" "Enegetic Forest" 3 4 4 3 4 1 "N/A" "N/A" "Skitty" "N/A" "Moon Stone" )) (insert-records :into [pokemon] :values '(302 "Sableye" "Dark" "Ghost" "Keen Eye" "Ground" "Darkness Ridge" 3 3 2 2 2 1 "Darknight Relic" "1-15" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(303 "Mawile" "Steel" "None" "Hyper Cutter/Intimidate" "Ground" "Echo Cave" 3 2 3 2 4 1 "Magma Cavern" "8-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(304 "Aron" "Steel" "Rock" "Sturdy/Rock Head" "Ground" "Mt. Cleft" 1 2 2 2 2 1 "Mt. Steel" "1-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(305 "Lairon" "Steel" "Rock" "Sturdy/Rock Head" "Ground" "Mt. Cleft" 1 2 2 2 2 1 "Frosy Forest" "7-9" "Aron" "32" "N/A" )) (insert-records :into [pokemon] :values '(306 "Aggron" "Steel" "Rock" "Sturdy/Rock Head" "Ground" "Mt. Cleft" 3 2 2 1 2 1 "N/A" "N/A" "Lairon" "42" "N/A" )) (insert-records :into [pokemon] :values '(307 "Meditite" "Fighting" "Psychic" "Pure Power" "Float" "Mt. Discipline" 2 3 2 2 2 1 "Mt. Steel" "5-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(308 "Medicham" "Fighting" "Psychic" "Pure Power" "Ground" "Mt. Discipline" 2 3 3 3 3 1 "N/A" "N/A" "Meditite" "37" "N/A" )) (insert-records :into [pokemon] :values '(309 "Electrike" "Electric" "None" "Static/Lightningrod" "Ground" "Thunder Meadow" 3 2 3 2 3 1 "Mt. Thunder" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(310 "Manectric" "Electric" "None" "Static/Lightningrod" "Ground" "Thunder Meadow" 3 3 3 3 3 1 "N/A" "N/A" "Electrike" "26" "N/A" )) (insert-records :into [pokemon] :values '(311 "Plusle" "Electric" "None" "Plus" "Ground" "Thunder Meadow" 4 3 3 3 3 1 "Thunderwave Cave" "4-5 Red Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(312 "Minun" "Electric" "None" "Minus" "Ground" "Thunder Meadow" 4 3 3 3 3 1 "Thunderwave Cave" "4-5 Blue Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(313 "Volbeat" "Bug" "None" "Illuminate/Swarm" "Ground" "Rub-a-Dub River" 3 2 3 1 3 1 "Northwind Field" "1-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(314 "Illumise" "Bug" "None" "Oblivious" "Ground" "Rub-a-Dub River" 1 1 1 1 1 1 "Lapis Cave" "5-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(315 "Roselia" "Grass" "Poison" "Natural Cure/Poison Point" "Ground" "Beau Plains" 1 1 1 1 1 1 "Uproar Forest" "4-7 Red Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(316 "Gulpin" "Poison" "None" "Liquid Ooze/Sticky Hold" "Ground" "Poison Swamp" 2 1 2 1 2 1 "Buried Relic" "14 16-19" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(317 "Swalot" "Poison" "None" "Liquid Ooze/Sticky Hold" "Ground" "Poison Swamp" 3 2 2 1 2 1 "N/A" "N/A" "Gulpin" "26" "N/A" )) (insert-records :into [pokemon] :values '(318 "Carvanha" "Water" "Dark" "Rough Skin" "Water" "Treasure Sea" 3 2 2 2 2 1 "Stormy Sea" "35-39" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(319 "Sharpedo" "Water" "Dark" "Rough Skin" "Water" "Treasure Sea" 3 2 3 2 2 1 "N/A" "N/A" "Carvanha" "30" "N/A" )) (insert-records :into [pokemon] :values '(320 "Wailmer" "Water" "None" "Water Veil/Oblivious" "Water" "Serene Sea" 3 3 2 2 2 1 "Silver Trench" "41-50" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(321 "Wailord" "Water" "None" "Water Veil/Oblivious" "Water" "Serene Sea" 3 3 2 2 2 4 "N/A" "N/A" "Wailmer" "40" "N/A" )) (insert-records :into [pokemon] :values '(322 "Numel" "Fire" "Ground" "Oblivious" "Magma" "Crater" 2 2 3 2 3 1 "Mt. Blaze" "1-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(323 "Camerupt" "Fire" "Ground" "Magma Armor" "Magma" "Crater" 3 2 2 2 2 1 "N/A" "N/A" "Numel" "33" "N/A" )) (insert-records :into [pokemon] :values '(324 "Torkoal" "Fire" "None" "White Smoke" "Magma" "Crater" 3 3 3 3 3 1 "Mt. Blaze" "7-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(325 "Spoink" "Psychic" "None" "Thick Fat/Own Tempo" "Ground" "Mt. Deepgreen" 2 3 3 2 3 1 "Howling Forest" "1-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(326 "Grumpig" "Psychic" "None" "Thick Fat/Own Tempo" "Ground" "Mt. Deepgreen" 3 2 2 2 2 1 "N/A" "N/A" "Spoink" "32" "N/A" )) (insert-records :into [pokemon] :values '(327 "Spinda" "Normal" "None" "Own Tempo" "Ground" "Mt. Deepgreen" 1 1 2 1 2 1 "Joyous Tower" "5-7" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(328 "Trapinch" "Ground" "None" "Hyper Cutter/Arena Trap" "Ground" "Furnace Desert" 2 1 2 1 2 1 "Silent Chasm" "6-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(329 "Vibrava" "Ground" "Dragon" "Levitate" "Float" "Furnace Desert" 2 2 2 2 2 1 "Wyvern Hill" "10-16" "Trapinch" "35" "N/A" )) (insert-records :into [pokemon] :values '(330 "Flygon" "Ground" "Dragon" "Levitate" "Float" "Furnace Desert" 2 1 2 1 2 1 "N/A" "N/A" "Vibrava" "45" "N/A" )) (insert-records :into [pokemon] :values '(331 "Cacnea" "Grass" "None" "Sand Veil" "Ground" "Furnace Desert" 1 1 1 1 1 1 "Mt. Thunder" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(332 "Cacturne" "Grass" "Dark" "Sand Veil" "Ground" "Furnace Desert" 2 1 2 1 2 1 "N/A" "N/A" "Cacnea" "32" "N/A" )) (insert-records :into [pokemon] :values '(333 "Swablu" "Normal" "Flying" "Natural Cure" "Float" "Flyaway Forest" 2 3 3 3 3 1 "Mt. Freeze" "1-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(334 "Altaria" "Dragon" "Flying" "Natural Cure" "Float" "Flyaway Forest" 3 3 2 3 2 1 "N/A" "N/A" "Swablu" "35" "N/A" )) (insert-records :into [pokemon] :values '(335 "Zangoose" "Normal" "None" "Immunity" "Ground" "Wild Plains" 3 3 3 3 4 1 "Mt. Freeze" "7-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(336 "Seviper" "Poison" "None" "Shed Skin" "Ground" "Wild Plains" 4 4 4 3 4 1 "Mt. Freeze" "13-15" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(337 "Lunatone" "Rock" "Psychic" "Levitate" "Float" "Mt. Moonview" 2 1 1 1 1 1 "Sky Tower" "1-11" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(338 "Solrock" "Rock" "Psychic" "Levitiate" "Float" "Mt. Moonview" 2 1 1 1 1 1 "Sky Tower" "12-20" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(339 "Barboach" "Water" "Ground" "Oblivious" "Water" "Peanut Swamp" 2 2 2 2 2 1 "Waterfall Pond" "1-5" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(340 "Wishcash" "Water" "Ground" "Oblivious" "Water" "Peanut Swamp" 3 2 2 2 2 1 "N/A" "N/A" "Barboach" "30" "N/A" )) (insert-records :into [pokemon] :values '(341 "Corphish" "Water" "None" "Hyper Cutter/Shell Armor" "Water" "Turtleshell Pond" 2 3 3 3 3 1 "Waterfall Pond" "6-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(342 "Crawdaunt" "Water" "Dark" "Hyper Cutter/Shell Armor" "Water" "Turtleshell Pond" 3 3 3 3 3 1 "N/A" "N/A" "Corphish" "30" "N/A" )) (insert-records :into [pokemon] :values '(343 "Baltoy" "Ground" "Psychic" "Levitate" "Float" "Ancient Relic" 2 2 2 2 2 1 "Mt. Steel" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(344 "Claydol" "Ground" "Psychic" "Levitate" "Float" "Ancient Relic" 2 2 2 2 2 1 "N/A" "N/A" "Baltoy" "36" "N/A" )) (insert-records :into [pokemon] :values '(345 "Lileep" "Rock" "Grass" "Suction Cups" "Ground" "Deep-Sea Floor" 2 1 1 1 1 1 "Silver Trench" "80-89" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(346 "Cradily" "Rock" "Grass" "Suction Cups" "Ground" "Deep-Sea Floor" 3 1 1 1 1 1 "Silver Trench" "90-98" "Lileep" "40" "N/A" )) (insert-records :into [pokemon] :values '(347 "Anorith" "Rock" "Bug" "Battle Armor" "Ground" "Treasure Sea" 3 3 2 2 2 1 "Stormy Sea" "9-17" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(348 "Armaldo" "Rock" "Bug" "Battle Armor" "Ground" "Treasure Sea" 3 3 3 3 3 1 "N/A" "N/A" "Anorith" "40" "N/A" )) (insert-records :into [pokemon] :values '(349 "Feebas" "Water" "None" "Swift Swim" "Water" "Waterfall Lake" 1 1 1 1 1 1 "Waterfall Pond" "16-19 Red Only" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(350 "Milotic" "Water" "None" "Marvel Scale" "Water" "Waterfall Lake" 4 2 2 2 2 4 "N/A" "N/A" "Feebas" "N/A" "Beauty Scarf" )) (insert-records :into [pokemon] :values '(351 "Castform" "Normal" "None" "Forecaste" "Ground" "Thunder Meadow" 2 2 3 1 3 1 "Mt. Faraway" "20-29" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(352 "Kecleon" "Normal" "None" "Color Change" "Ground" "Overgrown Forest" 3 3 4 2 4 1 "Kecleon Shop (Dungeon)" "N/A" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(353 "Shuppet" "Ghost" "None" "Insomnia" "Wall" "Darkness Ridge" 2 2 2 2 2 1 "Sky Tower" "1-6" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(354 "Banette" "Ghost" "None" "Insomnia" "Wall" "Darkness Ridge" 2 3 2 3 2 1 "N/A" "N/A" "Shuppet" "37" "N/A" )) (insert-records :into [pokemon] :values '(355 "Duskull" "Ghost" "None" "Levitate" "Wall" "Darkness Ridge" 3 1 2 1 2 1 "Sky Tower" "7-14" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(356 "Dusclops" "Ghost" "None" "Pressure" "Ground" "Darkness Ridge" 3 2 2 2 2 1 "N/A" "N/A" "Duskull" "37" "N/A" )) (insert-records :into [pokemon] :values '(357 "Tropius" "Grass" "Flying" "Chlorophyll" "Ground" "Jungle" 3 2 2 2 2 1 "Sky Tower" "22-25" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(358 "Chimecho" "Psychic" "None" "Levitate" "Float" "Thunder Meadow" 2 1 3 1 3 1 "Mt. Freeze" "7-12" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(359 "Absol" "Dark" "None" "Pressure" "Ground" "Darkness Ridge" 3 2 1 2 1 1 "Northwind Field" "28-29" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(360 "Wynaut" "Psychic" "None" "Shadow Tag" "Ground" "Echo Cave" 2 2 1 2 1 1 "Buried Relic" "1-4" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(361 "Snorunt" "Ice" "None" "Inner Focus" "Ground" "Frigid Cavern" 1 3 1 3 1 1 "Frosty Forest" "8-9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(362 "Glalie" "Ice" "None" "Inner Focus" "Ground" "Frigid Cavern" 3 2 2 2 2 1 "N/A" "N/A" "Snorunt" "42" "N/A" )) (insert-records :into [pokemon] :values '(363 "Spheal" "Ice" "Water" "Thick Fat" "Water" "Ice Floe Beach" 2 3 3 3 2 1 "Stormy Sea" "15-24" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(364 "Sealeo" "Ice" "Water" "Thick Fat" "Water" "Ice Floe Beach" 3 3 3 3 3 1 "Stormy Sea" "34-39" "Spheal" "32" "N/A" )) (insert-records :into [pokemon] :values '(365 "Walrein" "Ice" "Water" "Thick Fat" "Water" "Ice Floe Beach" 4 3 3 3 3 1 "N/A" "N/A" "Sealeo" "44" "N/A" )) (insert-records :into [pokemon] :values '(366 "Clamperl" "Water" "None" "Shell Armor" "Water" "Deep-Sea Floor" 3 2 2 1 2 1 "Silver Trench" "65-79" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(367 "Huntail" "Water" "None" "Swift Swim" "Water" "Deep-Sea Floor" 4 3 2 3 2 1 "N/A" "N/A" "Clamperl" "N/A" "Deepseatooth Link Cable" )) (insert-records :into [pokemon] :values '(368 "Gorebyss" "Water" "None" "Swift Swim" "Water" "Deep-Sea Floor" 3 2 2 2 2 1 "N/A" "N/A" "Calmperl" "N/A" "Deepseascale Link Cable" )) (insert-records :into [pokemon] :values '(369 "Relicanth" "Water" "Rock" "Swift Swim/Rock Head" "Water" "Deep-Sea Floor" 4 3 3 3 4 1 "Silver Trench" "80-89" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(370 "Luvdisc" "Water" "None" "Swift Swim" "Water" "Treasure Sea" 3 3 2 2 2 1 "Silver Trench" "45-54" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(371 "Bagon" "Dragon" "None" "Rock Head" "Ground" "Dragon Cave" 2 1 2 1 2 1 "Lapis Cave" "9-13" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(372 "Shelgon" "Dragon" "None" "Rock Head" "Ground" "Dragon Cave" 3 1 2 1 2 1 "Mt. Freeze" "1-6" "Bagon" "30" "N/A" )) (insert-records :into [pokemon] :values '(373 "Salamence" "Dragon" "Flying" "Intimidate" "Ground" "Dragon Cave" 4 2 3 2 3 2 "N/A" "N/A" "Shelgon" "50" "N/A" )) (insert-records :into [pokemon] :values '(374 "Beldum" "Steel" "Psychic" "Clear Body" "Float" "Magnetic Quarry" 2 1 3 1 2 1 "Mt. Steel" "6-8" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(375 "Metang" "Steel" "Psychic" "Clear Body" "Float" "Magnetic Quarry" 2 3 4 1 4 1 "Frosy Forest" "1-4" "Beldum" "20" "N/A" )) (insert-records :into [pokemon] :values '(376 "Metagross" "Steel" "Psychic" "Clear Body" "Ground" "Magnetic Quarry" 2 3 3 3 4 2 "N/A" "N/A" "Metang" "45" "N/A" )) (insert-records :into [pokemon] :values '(377 "Regirock" "Rock" "None" "Clear Body" "Ground" "Ancient Relic" 2 4 4 4 4 1 "Buried Relic" "15" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(378 "Regice" "Ice" "None" "Clear Body" "Ground" "Ancient Relic" 2 4 4 3 4 1 "Buried Relic" "25" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(379 "Registeel" "Steel" "None" "Clear Body" "Ground" "Ancient Relic" 3 3 4 3 4 1 "Buried Relic" "35" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(380 "Latias" "Dragon" "Psychic" "Levitate" "Float" "Southern Island" 3 3 3 3 4 1 "Pitfall Valley" "N/A" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(381 "Latios" "Dragon" "Psychic" "Levitate" "Float" "Southern Island" 3 3 3 3 4 2 "Northern Range" "N/A" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(382 "Kyogre" "Water" "None" "Drizzle" "Water" "Seafloor Cave" 3 3 4 3 4 4 "Stormy Sea" "40" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(383 "Groudon" "Ground" "None" "Drought" "Magma" "Volcanic Pit" 4 3 3 3 3 4 "Magma Cavern Pit" "3" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(384 "Rayquaza" "Dragon" "Flying" "Air Lock" "Float" "Stratos Lookout" 4 3 3 3 4 4 "Sky Tower Summit" "9" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(385 "Jirachi" "Steel" "Psychci" "Serene Grace" "Float" "Mt. Moonview" 3 2 3 2 4 1 "Wish Cave" "99" "N/A" "N/A" "N/A" )) (insert-records :into [pokemon] :values '(386 "Deoxys" "Psychic" "None" "Pressure" "Float" "Enclosed Island" 4 4 4 4 4 1 "Meteor Cave" "20" "N/A" "N/A" "N/A" ))