diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20171011015325_create_pokeviewer_abilities.rb | 12 | ||||
-rw-r--r-- | db/migrate/20171011015648_add_type_and_ability_to_species.rb | 19 | ||||
-rw-r--r-- | db/seeds.rb | 849 |
3 files changed, 494 insertions, 386 deletions
diff --git a/db/migrate/20171011015325_create_pokeviewer_abilities.rb b/db/migrate/20171011015325_create_pokeviewer_abilities.rb new file mode 100644 index 0000000..a7f6b5f --- /dev/null +++ b/db/migrate/20171011015325_create_pokeviewer_abilities.rb | |||
@@ -0,0 +1,12 @@ | |||
1 | class CreatePokeviewerAbilities < ActiveRecord::Migration[5.1] | ||
2 | def change | ||
3 | create_table :pokeviewer_abilities do |t| | ||
4 | t.string :name, null: false, limit: 191 | ||
5 | t.string :description, null: false | ||
6 | |||
7 | t.timestamps | ||
8 | end | ||
9 | |||
10 | add_index :pokeviewer_abilities, :name, unique: true | ||
11 | end | ||
12 | end | ||
diff --git a/db/migrate/20171011015648_add_type_and_ability_to_species.rb b/db/migrate/20171011015648_add_type_and_ability_to_species.rb new file mode 100644 index 0000000..d7d274e --- /dev/null +++ b/db/migrate/20171011015648_add_type_and_ability_to_species.rb | |||
@@ -0,0 +1,19 @@ | |||
1 | class AddTypeAndAbilityToSpecies < ActiveRecord::Migration[5.1] | ||
2 | def change | ||
3 | change_table :pokeviewer_species do |t| | ||
4 | t.string :type_1, null: false, default: "" | ||
5 | t.string :type_2 | ||
6 | t.integer :ability_1_id, null: false, default: 0 | ||
7 | t.integer :ability_2_id | ||
8 | end | ||
9 | |||
10 | change_column_default :pokeviewer_species, :type_1, nil | ||
11 | change_column_default :pokeviewer_species, :ability_1_id, nil | ||
12 | |||
13 | add_foreign_key :pokeviewer_species, :pokeviewer_abilities, | ||
14 | column: :ability_1_id | ||
15 | |||
16 | add_foreign_key :pokeviewer_species, :pokeviewer_abilities, | ||
17 | column: :ability_2_id | ||
18 | end | ||
19 | end | ||
diff --git a/db/seeds.rb b/db/seeds.rb index 5f9b54c..f010fdc 100644 --- a/db/seeds.rb +++ b/db/seeds.rb | |||
@@ -1,390 +1,467 @@ | |||
1 | module Pokeviewer | 1 | module Pokeviewer |
2 | Species.create(id: 386, name: "Deoxys") | 2 | Ability.create(id: 1, name: "Stench", description: "Helps repel wild POKéMON.") |
3 | Species.create(id: 385, name: "Jirachi") | 3 | Ability.create(id: 2, name: "Drizzle", description: "Summons rain in battle.") |
4 | Species.create(id: 384, name: "Rayquaza") | 4 | Ability.create(id: 3, name: "Speed Boost", description: "Gradually boosts SPEED.") |
5 | Species.create(id: 383, name: "Groudon") | 5 | Ability.create(id: 4, name: "Battle Armor", description: "Blocks critical hits.") |
6 | Species.create(id: 382, name: "Kyogre") | 6 | Ability.create(id: 5, name: "Sturdy", description: "Negates 1-hit KO attacks.") |
7 | Species.create(id: 381, name: "Latios") | 7 | Ability.create(id: 6, name: "Damp", description: "Prevents self-destruction.") |
8 | Species.create(id: 380, name: "Latias") | 8 | Ability.create(id: 7, name: "Limber", description: "Prevents paralysis.") |
9 | Species.create(id: 379, name: "Registeel") | 9 | Ability.create(id: 8, name: "Sand Veil", description: "Ups evasion in a sandstorm.") |
10 | Species.create(id: 378, name: "Regice") | 10 | Ability.create(id: 9, name: "Static", description: "Paralyzes on contact.") |
11 | Species.create(id: 377, name: "Regirock") | 11 | Ability.create(id: 10, name: "Volt Absorb", description: "Turns electricity into HP.") |
12 | Species.create(id: 376, name: "Metagross") | 12 | Ability.create(id: 11, name: "Water Absorb", description: "Changes water into HP.") |
13 | Species.create(id: 375, name: "Metang") | 13 | Ability.create(id: 12, name: "Oblivious", description: "Prevents attraction.") |
14 | Species.create(id: 374, name: "Beldum") | 14 | Ability.create(id: 13, name: "Cloud Nine", description: "Negates weather effects.") |
15 | Species.create(id: 373, name: "Salamence") | 15 | Ability.create(id: 14, name: "Compound Eyes", description: "Raises accuracy.") |
16 | Species.create(id: 372, name: "Shelgon") | 16 | Ability.create(id: 15, name: "Insomnia", description: "Prevents sleep.") |
17 | Species.create(id: 371, name: "Bagon") | 17 | Ability.create(id: 16, name: "Color Change", description: "Changes type to foe's move.") |
18 | Species.create(id: 370, name: "Luvdisc") | 18 | Ability.create(id: 17, name: "Immunity", description: "Prevents poisoning.") |
19 | Species.create(id: 369, name: "Relicanth") | 19 | Ability.create(id: 18, name: "Flash Fire", description: "Powers up if hit by fire.") |
20 | Species.create(id: 368, name: "Gorebyss") | 20 | Ability.create(id: 19, name: "Shield Dust", description: "Prevents added effects.") |
21 | Species.create(id: 367, name: "Huntail") | 21 | Ability.create(id: 20, name: "Own Tempo", description: "Prevents confusion.") |
22 | Species.create(id: 366, name: "Clamperl") | 22 | Ability.create(id: 21, name: "Suction Cups", description: "Firmly anchors the body.") |
23 | Species.create(id: 365, name: "Walrein") | 23 | Ability.create(id: 22, name: "Intimidate", description: "Lowers the foe's ATTACK.") |
24 | Species.create(id: 364, name: "Sealeo") | 24 | Ability.create(id: 23, name: "Shadow Tag", description: "Prevents the foe's escape.") |
25 | Species.create(id: 363, name: "Spheal") | 25 | Ability.create(id: 24, name: "Rough Skin", description: "Hurts to touch.") |
26 | Species.create(id: 362, name: "Glalie") | 26 | Ability.create(id: 25, name: "Wonder Guard", description: "\"Super effective\" hits.") |
27 | Species.create(id: 361, name: "Snorunt") | 27 | Ability.create(id: 26, name: "Levitate", description: "Not hit by GROUND attacks.") |
28 | Species.create(id: 360, name: "Wynaut") | 28 | Ability.create(id: 27, name: "Effect Spore", description: "Leaves spores on contact.") |
29 | Species.create(id: 359, name: "Absol") | 29 | Ability.create(id: 28, name: "Synchronize", description: "Passes on status problems.") |
30 | Species.create(id: 358, name: "Chimecho") | 30 | Ability.create(id: 29, name: "Clear Body", description: "Prevents ability reduction.") |
31 | Species.create(id: 357, name: "Tropius") | 31 | Ability.create(id: 30, name: "Natural Cure", description: "Heals upon switching out.") |
32 | Species.create(id: 356, name: "Dusclops") | 32 | Ability.create(id: 31, name: "Lightning Rod", description: "Draws electrical moves.") |
33 | Species.create(id: 355, name: "Duskull") | 33 | Ability.create(id: 32, name: "Serene Grace", description: "Promotes added effects.") |
34 | Species.create(id: 354, name: "Banette") | 34 | Ability.create(id: 33, name: "Swift Swim", description: "Raises SPEED in rain.") |
35 | Species.create(id: 353, name: "Shuppet") | 35 | Ability.create(id: 34, name: "Chlorophyll", description: "Raises SPEED in sunshine.") |
36 | Species.create(id: 352, name: "Kecleon") | 36 | Ability.create(id: 35, name: "Illuminate", description: "Encounter rate increases.") |
37 | Species.create(id: 351, name: "Castform") | 37 | Ability.create(id: 36, name: "Trace", description: "Copies special ability.") |
38 | Species.create(id: 350, name: "Milotic") | 38 | Ability.create(id: 37, name: "Huge Power", description: "Raises ATTACK.") |
39 | Species.create(id: 349, name: "Feebas") | 39 | Ability.create(id: 38, name: "Poison Point", description: "Poisons foe on contact.") |
40 | Species.create(id: 348, name: "Armaldo") | 40 | Ability.create(id: 39, name: "Inner Focus", description: "Prevents flinching.") |
41 | Species.create(id: 347, name: "Anorith") | 41 | Ability.create(id: 40, name: "Magma Armor", description: "Prevents freezing.") |
42 | Species.create(id: 346, name: "Cradily") | 42 | Ability.create(id: 41, name: "Water Veil", description: "Prevents burns.") |
43 | Species.create(id: 345, name: "Lileep") | 43 | Ability.create(id: 42, name: "Magnet Pull", description: "Traps STEEL-type POKéMON.") |
44 | Species.create(id: 344, name: "Claydol") | 44 | Ability.create(id: 43, name: "Soundproof", description: "Avoids sound-based moves.") |
45 | Species.create(id: 343, name: "Baltoy") | 45 | Ability.create(id: 44, name: "Rain Dish", description: "Slight HP recovery in rain.") |
46 | Species.create(id: 342, name: "Crawdaunt") | 46 | Ability.create(id: 45, name: "Sand Stream", description: "Summons a sandstorm.") |
47 | Species.create(id: 341, name: "Corphish") | 47 | Ability.create(id: 46, name: "Pressure", description: "Raises foe's PP usage.") |
48 | Species.create(id: 340, name: "Whiscash") | 48 | Ability.create(id: 47, name: "Thick Fat", description: "Heat-and-cold protection.") |
49 | Species.create(id: 339, name: "Barboach") | 49 | Ability.create(id: 48, name: "Early Bird", description: "Awakens quickly from sleep.") |
50 | Species.create(id: 338, name: "Solrock") | 50 | Ability.create(id: 49, name: "Flame Body", description: "Burns the foe on contact.") |
51 | Species.create(id: 337, name: "Lunatone") | 51 | Ability.create(id: 50, name: "Run Away", description: "Makes escaping easier.") |
52 | Species.create(id: 336, name: "Seviper") | 52 | Ability.create(id: 51, name: "Keen Eye", description: "Prevents loss of accuracy.") |
53 | Species.create(id: 335, name: "Zangoose") | 53 | Ability.create(id: 52, name: "Hyper Cutter", description: "Prevents ATTACK reduction.") |
54 | Species.create(id: 334, name: "Altaria") | 54 | Ability.create(id: 53, name: "Pickup", description: "May pick up items.") |
55 | Species.create(id: 333, name: "Swablu") | 55 | Ability.create(id: 54, name: "Truant", description: "Moves only every two turns.") |
56 | Species.create(id: 332, name: "Cacturne") | 56 | Ability.create(id: 55, name: "Hustle", description: "Trades accuracy for power.") |
57 | Species.create(id: 331, name: "Cacnea") | 57 | Ability.create(id: 56, name: "Cute Charm", description: "Infatuates on contact.") |
58 | Species.create(id: 330, name: "Flygon") | 58 | Ability.create(id: 57, name: "Plus", description: "Powers up with MINUS.") |
59 | Species.create(id: 329, name: "Vibrava") | 59 | Ability.create(id: 58, name: "Minus", description: "Powers up with PLUS.") |
60 | Species.create(id: 328, name: "Trapinch") | 60 | Ability.create(id: 59, name: "Forecast", description: "Changes with the weather.") |
61 | Species.create(id: 327, name: "Spinda") | 61 | Ability.create(id: 60, name: "Sticky Hold", description: "Prevents item theft.") |
62 | Species.create(id: 326, name: "Grumpig") | 62 | Ability.create(id: 61, name: "Shed Skin", description: "Heals the body by shedding.") |
63 | Species.create(id: 325, name: "Spoink") | 63 | Ability.create(id: 62, name: "Guts", description: "Ups ATTACK if suffering.") |
64 | Species.create(id: 324, name: "Torkoal") | 64 | Ability.create(id: 63, name: "Marvel Scale", description: "Ups DEFENSE if suffering.") |
65 | Species.create(id: 323, name: "Camerupt") | 65 | Ability.create(id: 64, name: "Liquid Ooze", description: "Draining causes injury.") |
66 | Species.create(id: 322, name: "Numel") | 66 | Ability.create(id: 65, name: "Overgrow", description: "Ups GRASS moves in a pinch.") |
67 | Species.create(id: 321, name: "Wailord") | 67 | Ability.create(id: 66, name: "Blaze", description: "Ups FIRE moves in a pinch.") |
68 | Species.create(id: 320, name: "Wailmer") | 68 | Ability.create(id: 67, name: "Torrent", description: "Ups WATER moves in a pinch.") |
69 | Species.create(id: 319, name: "Sharpedo") | 69 | Ability.create(id: 68, name: "Swarm", description: "Ups BUG moves in a pinch.") |
70 | Species.create(id: 318, name: "Carvanha") | 70 | Ability.create(id: 69, name: "Rock Head", description: "Prevents recoil damage.") |
71 | Species.create(id: 317, name: "Swalot") | 71 | Ability.create(id: 70, name: "Drought", description: "Summons sunlight in battle.") |
72 | Species.create(id: 316, name: "Gulpin") | 72 | Ability.create(id: 71, name: "Arena Trap", description: "Prevents fleeing.") |
73 | Species.create(id: 315, name: "Roselia") | 73 | Ability.create(id: 72, name: "Vital Spirit", description: "Prevents sleep.") |
74 | Species.create(id: 314, name: "Illumise") | 74 | Ability.create(id: 73, name: "White Smoke", description: "Prevents ability reduction.") |
75 | Species.create(id: 313, name: "Volbeat") | 75 | Ability.create(id: 74, name: "Pure Power", description: "Raises ATTACK.") |
76 | Species.create(id: 312, name: "Minun") | 76 | Ability.create(id: 75, name: "Shell Armor", description: "Blocks critical hits.") |
77 | Species.create(id: 311, name: "Plusle") | 77 | Ability.create(id: 76, name: "Air Lock", description: "Negates weather effects.") |
78 | Species.create(id: 310, name: "Manectric") | 78 | |
79 | Species.create(id: 309, name: "Electrike") | 79 | Species.create(id: 1, name: "Bulbasaur", type_1: :grass, type_2: :poison, ability_1_id: 65) |
80 | Species.create(id: 308, name: "Medicham") | 80 | Species.create(id: 2, name: "Ivysaur", type_1: :grass, type_2: :poison, ability_1_id: 65) |
81 | Species.create(id: 307, name: "Meditite") | 81 | Species.create(id: 3, name: "Venusaur", type_1: :grass, type_2: :poison, ability_1_id: 65) |
82 | Species.create(id: 306, name: "Aggron") | 82 | Species.create(id: 4, name: "Charmander", type_1: :fire, ability_1_id: 66) |
83 | Species.create(id: 305, name: "Lairon") | 83 | Species.create(id: 5, name: "Charmeleon", type_1: :fire, ability_1_id: 66) |
84 | Species.create(id: 304, name: "Aron") | 84 | Species.create(id: 6, name: "Charizard", type_1: :fire, type_2: :flying, ability_1_id: 66) |
85 | Species.create(id: 303, name: "Mawile") | 85 | Species.create(id: 7, name: "Squirtle", type_1: :water, ability_1_id: 67) |
86 | Species.create(id: 302, name: "Sableye") | 86 | Species.create(id: 8, name: "Wartortle", type_1: :water, ability_1_id: 67) |
87 | Species.create(id: 301, name: "Delcatty") | 87 | Species.create(id: 9, name: "Blastoise", type_1: :water, ability_1_id: 67) |
88 | Species.create(id: 300, name: "Skitty") | 88 | Species.create(id: 10, name: "Caterpie", type_1: :bug, ability_1_id: 19) |
89 | Species.create(id: 299, name: "Nosepass") | 89 | Species.create(id: 11, name: "Metapod", type_1: :bug, ability_1_id: 61) |
90 | Species.create(id: 298, name: "Azurill") | 90 | Species.create(id: 12, name: "Butterfree", type_1: :bug, type_2: :flying, ability_1_id: 14) |
91 | Species.create(id: 297, name: "Hariyama") | 91 | Species.create(id: 13, name: "Weedle", type_1: :bug, type_2: :poison, ability_1_id: 19) |
92 | Species.create(id: 296, name: "Makuhita") | 92 | Species.create(id: 14, name: "Kakuna", type_1: :bug, type_2: :poison, ability_1_id: 61) |
93 | Species.create(id: 295, name: "Exploud") | 93 | Species.create(id: 15, name: "Beedrill", type_1: :bug, type_2: :poison, ability_1_id: 68) |
94 | Species.create(id: 294, name: "Loudred") | 94 | Species.create(id: 16, name: "Pidgey", type_1: :normal, type_2: :flying, ability_1_id: 51, ability_2_id: 77) |
95 | Species.create(id: 293, name: "Whismur") | 95 | Species.create(id: 17, name: "Pidgeotto", type_1: :normal, type_2: :flying, ability_1_id: 51, ability_2_id: 77) |
96 | Species.create(id: 292, name: "Shedinja") | 96 | Species.create(id: 18, name: "Pidgeot", type_1: :normal, type_2: :flying, ability_1_id: 51, ability_2_id: 77) |
97 | Species.create(id: 291, name: "Ninjask") | 97 | Species.create(id: 19, name: "Rattata", type_1: :normal, ability_1_id: 50, ability_2_id: 62) |
98 | Species.create(id: 290, name: "Nincada") | 98 | Species.create(id: 20, name: "Raticate", type_1: :normal, ability_1_id: 50, ability_2_id: 62) |
99 | Species.create(id: 289, name: "Slaking") | 99 | Species.create(id: 21, name: "Spearow", type_1: :normal, type_2: :flying, ability_1_id: 51) |
100 | Species.create(id: 288, name: "Vigoroth") | 100 | Species.create(id: 22, name: "Fearow", type_1: :normal, type_2: :flying, ability_1_id: 51) |
101 | Species.create(id: 287, name: "Slakoth") | 101 | Species.create(id: 23, name: "Ekans", type_1: :poison, ability_1_id: 22, ability_2_id: 61) |
102 | Species.create(id: 286, name: "Breloom") | 102 | Species.create(id: 24, name: "Arbok", type_1: :poison, ability_1_id: 22, ability_2_id: 61) |
103 | Species.create(id: 285, name: "Shroomish") | 103 | Species.create(id: 25, name: "Pikachu", type_1: :electric, ability_1_id: 9) |
104 | Species.create(id: 284, name: "Masquerain") | 104 | Species.create(id: 26, name: "Raichu", type_1: :electric, ability_1_id: 9) |
105 | Species.create(id: 283, name: "Surskit") | 105 | Species.create(id: 27, name: "Sandshrew", type_1: :ground, ability_1_id: 8) |
106 | Species.create(id: 282, name: "Gardevoir") | 106 | Species.create(id: 28, name: "Sandslash", type_1: :ground, ability_1_id: 8) |
107 | Species.create(id: 281, name: "Kirlia") | 107 | Species.create(id: 29, name: "Nidoran♀", type_1: :poison, ability_1_id: 38, ability_2_id: 79) |
108 | Species.create(id: 280, name: "Ralts") | 108 | Species.create(id: 30, name: "Nidorina", type_1: :poison, ability_1_id: 38, ability_2_id: 79) |
109 | Species.create(id: 279, name: "Pelipper") | 109 | Species.create(id: 31, name: "Nidoqueen", type_1: :poison, type_2: :ground, ability_1_id: 38, ability_2_id: 79) |
110 | Species.create(id: 278, name: "Wingull") | 110 | Species.create(id: 32, name: "Nidoran♂", type_1: :poison, ability_1_id: 38, ability_2_id: 79) |
111 | Species.create(id: 277, name: "Swellow") | 111 | Species.create(id: 33, name: "Nidorino", type_1: :poison, ability_1_id: 38, ability_2_id: 79) |
112 | Species.create(id: 276, name: "Taillow") | 112 | Species.create(id: 34, name: "Nidoking", type_1: :poison, type_2: :ground, ability_1_id: 38, ability_2_id: 79) |
113 | Species.create(id: 275, name: "Shiftry") | 113 | Species.create(id: 35, name: "Clefairy", type_1: :normal, ability_1_id: 56, ability_2_id: 98) |
114 | Species.create(id: 274, name: "Nuzleaf") | 114 | Species.create(id: 36, name: "Clefable", type_1: :normal, ability_1_id: 56, ability_2_id: 98) |
115 | Species.create(id: 273, name: "Seedot") | 115 | Species.create(id: 37, name: "Vulpix", type_1: :fire, ability_1_id: 18) |
116 | Species.create(id: 272, name: "Ludicolo") | 116 | Species.create(id: 38, name: "Ninetales", type_1: :fire, ability_1_id: 18) |
117 | Species.create(id: 271, name: "Lombre") | 117 | Species.create(id: 39, name: "Jigglypuff", type_1: :normal, ability_1_id: 56, ability_2_id: 172) |
118 | Species.create(id: 270, name: "Lotad") | 118 | Species.create(id: 40, name: "Wigglytuff", type_1: :normal, ability_1_id: 56, ability_2_id: 172) |
119 | Species.create(id: 269, name: "Dustox") | 119 | Species.create(id: 41, name: "Zubat", type_1: :poison, type_2: :flying, ability_1_id: 39) |
120 | Species.create(id: 268, name: "Cascoon") | 120 | Species.create(id: 42, name: "Golbat", type_1: :poison, type_2: :flying, ability_1_id: 39) |
121 | Species.create(id: 267, name: "Beautifly") | 121 | Species.create(id: 43, name: "Oddish", type_1: :grass, type_2: :poison, ability_1_id: 34) |
122 | Species.create(id: 266, name: "Silcoon") | 122 | Species.create(id: 44, name: "Gloom", type_1: :grass, type_2: :poison, ability_1_id: 34) |
123 | Species.create(id: 265, name: "Wurmple") | 123 | Species.create(id: 45, name: "Vileplume", type_1: :grass, type_2: :poison, ability_1_id: 34) |
124 | Species.create(id: 264, name: "Linoone") | 124 | Species.create(id: 46, name: "Paras", type_1: :bug, type_2: :grass, ability_1_id: 27, ability_2_id: 87) |
125 | Species.create(id: 263, name: "Zigzagoon") | 125 | Species.create(id: 47, name: "Parasect", type_1: :bug, type_2: :grass, ability_1_id: 27, ability_2_id: 87) |
126 | Species.create(id: 262, name: "Mightyena") | 126 | Species.create(id: 48, name: "Venonat", type_1: :bug, type_2: :poison, ability_1_id: 14, ability_2_id: 110) |
127 | Species.create(id: 261, name: "Poochyena") | 127 | Species.create(id: 49, name: "Venomoth", type_1: :bug, type_2: :poison, ability_1_id: 19, ability_2_id: 110) |
128 | Species.create(id: 260, name: "Swampert") | 128 | Species.create(id: 50, name: "Diglett", type_1: :ground, ability_1_id: 8, ability_2_id: 71) |
129 | Species.create(id: 259, name: "Marshtomp") | 129 | Species.create(id: 51, name: "Dugtrio", type_1: :ground, ability_1_id: 8, ability_2_id: 71) |
130 | Species.create(id: 258, name: "Mudkip") | 130 | Species.create(id: 52, name: "Meowth", type_1: :normal, ability_1_id: 53, ability_2_id: 101) |
131 | Species.create(id: 257, name: "Blaziken") | 131 | Species.create(id: 53, name: "Persian", type_1: :normal, ability_1_id: 7, ability_2_id: 101) |
132 | Species.create(id: 256, name: "Combusken") | 132 | Species.create(id: 54, name: "Psyduck", type_1: :water, ability_1_id: 6, ability_2_id: 13) |
133 | Species.create(id: 255, name: "Torchic") | 133 | Species.create(id: 55, name: "Golduck", type_1: :water, ability_1_id: 6, ability_2_id: 13) |
134 | Species.create(id: 254, name: "Sceptile") | 134 | Species.create(id: 56, name: "Mankey", type_1: :fighting, ability_1_id: 72, ability_2_id: 83) |
135 | Species.create(id: 253, name: "Grovyle") | 135 | Species.create(id: 57, name: "Primeape", type_1: :fighting, ability_1_id: 72, ability_2_id: 83) |
136 | Species.create(id: 252, name: "Treecko") | 136 | Species.create(id: 58, name: "Growlithe", type_1: :fire, ability_1_id: 22, ability_2_id: 18) |
137 | Species.create(id: 251, name: "Celebi") | 137 | Species.create(id: 59, name: "Arcanine", type_1: :fire, ability_1_id: 22, ability_2_id: 18) |
138 | Species.create(id: 250, name: "Ho-Oh") | 138 | Species.create(id: 60, name: "Poliwag", type_1: :water, ability_1_id: 11, ability_2_id: 6) |
139 | Species.create(id: 249, name: "Lugia") | 139 | Species.create(id: 61, name: "Poliwhirl", type_1: :water, ability_1_id: 11, ability_2_id: 6) |
140 | Species.create(id: 248, name: "Tyranitar") | 140 | Species.create(id: 62, name: "Poliwrath", type_1: :water, type_2: :fighting, ability_1_id: 11, ability_2_id: 6) |
141 | Species.create(id: 247, name: "Pupitar") | 141 | Species.create(id: 63, name: "Abra", type_1: :psychic, ability_1_id: 28, ability_2_id: 39) |
142 | Species.create(id: 246, name: "Larvitar") | 142 | Species.create(id: 64, name: "Kadabra", type_1: :psychic, ability_1_id: 28, ability_2_id: 39) |
143 | Species.create(id: 245, name: "Suicune") | 143 | Species.create(id: 65, name: "Alakazam", type_1: :psychic, ability_1_id: 28, ability_2_id: 39) |
144 | Species.create(id: 244, name: "Entei") | 144 | Species.create(id: 66, name: "Machop", type_1: :fighting, ability_1_id: 62, ability_2_id: 99) |
145 | Species.create(id: 243, name: "Raikou") | 145 | Species.create(id: 67, name: "Machoke", type_1: :fighting, ability_1_id: 62, ability_2_id: 99) |
146 | Species.create(id: 242, name: "Blissey") | 146 | Species.create(id: 68, name: "Machamp", type_1: :fighting, ability_1_id: 62, ability_2_id: 99) |
147 | Species.create(id: 241, name: "Miltank") | 147 | Species.create(id: 69, name: "Bellsprout", type_1: :grass, type_2: :poison, ability_1_id: 34) |
148 | Species.create(id: 240, name: "Magby") | 148 | Species.create(id: 70, name: "Weepinbell", type_1: :grass, type_2: :poison, ability_1_id: 34) |
149 | Species.create(id: 239, name: "Elekid") | 149 | Species.create(id: 71, name: "Victreebel", type_1: :grass, type_2: :poison, ability_1_id: 34) |
150 | Species.create(id: 238, name: "Smoochum") | 150 | Species.create(id: 72, name: "Tentacool", type_1: :water, type_2: :poison, ability_1_id: 29, ability_2_id: 64) |
151 | Species.create(id: 237, name: "Hitmontop") | 151 | Species.create(id: 73, name: "Tentacruel", type_1: :water, type_2: :poison, ability_1_id: 29, ability_2_id: 64) |
152 | Species.create(id: 236, name: "Tyrogue") | 152 | Species.create(id: 74, name: "Geodude", type_1: :rock, type_2: :ground, ability_1_id: 69, ability_2_id: 5) |
153 | Species.create(id: 235, name: "Smeargle") | 153 | Species.create(id: 75, name: "Graveler", type_1: :rock, type_2: :ground, ability_1_id: 69, ability_2_id: 5) |
154 | Species.create(id: 234, name: "Stantler") | 154 | Species.create(id: 76, name: "Golem", type_1: :rock, type_2: :ground, ability_1_id: 69, ability_2_id: 5) |
155 | Species.create(id: 233, name: "Porygon2") | 155 | Species.create(id: 77, name: "Ponyta", type_1: :fire, ability_1_id: 50, ability_2_id: 18) |
156 | Species.create(id: 232, name: "Donphan") | 156 | Species.create(id: 78, name: "Rapidash", type_1: :fire, ability_1_id: 50, ability_2_id: 18) |
157 | Species.create(id: 231, name: "Phanpy") | 157 | Species.create(id: 79, name: "Slowpoke", type_1: :water, type_2: :psychic, ability_1_id: 12, ability_2_id: 20) |
158 | Species.create(id: 230, name: "Kingdra") | 158 | Species.create(id: 80, name: "Slowbro", type_1: :water, type_2: :psychic, ability_1_id: 12, ability_2_id: 20) |
159 | Species.create(id: 229, name: "Houndoom") | 159 | Species.create(id: 81, name: "Magnemite", type_1: :electric, type_2: :steel, ability_1_id: 42, ability_2_id: 5) |
160 | Species.create(id: 228, name: "Houndour") | 160 | Species.create(id: 82, name: "Magneton", type_1: :electric, type_2: :steel, ability_1_id: 42, ability_2_id: 5) |
161 | Species.create(id: 227, name: "Skarmory") | 161 | Species.create(id: 83, name: "Farfetch'd", type_1: :normal, type_2: :flying, ability_1_id: 51, ability_2_id: 39) |
162 | Species.create(id: 226, name: "Mantine") | 162 | Species.create(id: 84, name: "Doduo", type_1: :normal, type_2: :flying, ability_1_id: 50, ability_2_id: 48) |
163 | Species.create(id: 225, name: "Delibird") | 163 | Species.create(id: 85, name: "Dodrio", type_1: :normal, type_2: :flying, ability_1_id: 50, ability_2_id: 48) |
164 | Species.create(id: 224, name: "Octillery") | 164 | Species.create(id: 86, name: "Seel", type_1: :water, ability_1_id: 47, ability_2_id: 93) |
165 | Species.create(id: 223, name: "Remoraid") | 165 | Species.create(id: 87, name: "Dewgong", type_1: :water, type_2: :ice, ability_1_id: 47, ability_2_id: 93) |
166 | Species.create(id: 222, name: "Corsola") | 166 | Species.create(id: 88, name: "Grimer", type_1: :poison, ability_1_id: 1, ability_2_id: 60) |
167 | Species.create(id: 221, name: "Piloswine") | 167 | Species.create(id: 89, name: "Muk", type_1: :poison, ability_1_id: 1, ability_2_id: 60) |
168 | Species.create(id: 220, name: "Swinub") | 168 | Species.create(id: 90, name: "Shellder", type_1: :water, ability_1_id: 75, ability_2_id: 92) |
169 | Species.create(id: 219, name: "Magcargo") | 169 | Species.create(id: 91, name: "Cloyster", type_1: :water, type_2: :ice, ability_1_id: 75, ability_2_id: 92) |
170 | Species.create(id: 218, name: "Slugma") | 170 | Species.create(id: 92, name: "Gastly", type_1: :ghost, type_2: :poison, ability_1_id: 26) |
171 | Species.create(id: 217, name: "Ursaring") | 171 | Species.create(id: 93, name: "Haunter", type_1: :ghost, type_2: :poison, ability_1_id: 26) |
172 | Species.create(id: 216, name: "Teddiursa") | 172 | Species.create(id: 94, name: "Gengar", type_1: :ghost, type_2: :poison, ability_1_id: 130) |
173 | Species.create(id: 215, name: "Sneasel") | 173 | Species.create(id: 95, name: "Onix", type_1: :rock, type_2: :ground, ability_1_id: 69, ability_2_id: 5) |
174 | Species.create(id: 214, name: "Heracross") | 174 | Species.create(id: 96, name: "Drowzee", type_1: :psychic, ability_1_id: 15, ability_2_id: 108) |
175 | Species.create(id: 213, name: "Shuckle") | 175 | Species.create(id: 97, name: "Hypno", type_1: :psychic, ability_1_id: 15, ability_2_id: 108) |
176 | Species.create(id: 212, name: "Scizor") | 176 | Species.create(id: 98, name: "Krabby", type_1: :water, ability_1_id: 52, ability_2_id: 75) |
177 | Species.create(id: 211, name: "Qwilfish") | 177 | Species.create(id: 99, name: "Kingler", type_1: :water, ability_1_id: 52, ability_2_id: 75) |
178 | Species.create(id: 210, name: "Granbull") | 178 | Species.create(id: 100, name: "Voltorb", type_1: :electric, ability_1_id: 43, ability_2_id: 9) |
179 | Species.create(id: 209, name: "Snubbull") | 179 | Species.create(id: 101, name: "Electrode", type_1: :electric, ability_1_id: 43, ability_2_id: 9) |
180 | Species.create(id: 208, name: "Steelix") | 180 | Species.create(id: 102, name: "Exeggcute", type_1: :grass, type_2: :psychic, ability_1_id: 34) |
181 | Species.create(id: 207, name: "Gligar") | 181 | Species.create(id: 103, name: "Exeggutor", type_1: :grass, type_2: :psychic, ability_1_id: 34) |
182 | Species.create(id: 206, name: "Dunsparce") | 182 | Species.create(id: 104, name: "Cubone", type_1: :ground, ability_1_id: 69, ability_2_id: 31) |
183 | Species.create(id: 205, name: "Forretress") | 183 | Species.create(id: 105, name: "Marowak", type_1: :ground, ability_1_id: 69, ability_2_id: 31) |
184 | Species.create(id: 204, name: "Pineco") | 184 | Species.create(id: 106, name: "Hitmonlee", type_1: :fighting, ability_1_id: 7, ability_2_id: 120) |
185 | Species.create(id: 203, name: "Girafarig") | 185 | Species.create(id: 107, name: "Hitmonchan", type_1: :fighting, ability_1_id: 51, ability_2_id: 89) |
186 | Species.create(id: 202, name: "Wobbuffet") | 186 | Species.create(id: 108, name: "Lickitung", type_1: :normal, ability_1_id: 20, ability_2_id: 12) |
187 | Species.create(id: 201, name: "Unown") | 187 | Species.create(id: 109, name: "Koffing", type_1: :poison, ability_1_id: 26) |
188 | Species.create(id: 200, name: "Misdreavus") | 188 | Species.create(id: 110, name: "Weezing", type_1: :poison, ability_1_id: 26) |
189 | Species.create(id: 199, name: "Slowking") | 189 | Species.create(id: 111, name: "Rhyhorn", type_1: :ground, type_2: :rock, ability_1_id: 31, ability_2_id: 69) |
190 | Species.create(id: 198, name: "Murkrow") | 190 | Species.create(id: 112, name: "Rhydon", type_1: :ground, type_2: :rock, ability_1_id: 31, ability_2_id: 69) |
191 | Species.create(id: 197, name: "Umbreon") | 191 | Species.create(id: 113, name: "Chansey", type_1: :normal, ability_1_id: 30, ability_2_id: 32) |
192 | Species.create(id: 196, name: "Espeon") | 192 | Species.create(id: 114, name: "Tangela", type_1: :grass, ability_1_id: 34, ability_2_id: 102) |
193 | Species.create(id: 195, name: "Quagsire") | 193 | Species.create(id: 115, name: "Kangaskhan", type_1: :normal, ability_1_id: 48, ability_2_id: 113) |
194 | Species.create(id: 194, name: "Wooper") | 194 | Species.create(id: 116, name: "Horsea", type_1: :water, ability_1_id: 33, ability_2_id: 97) |
195 | Species.create(id: 193, name: "Yanma") | 195 | Species.create(id: 117, name: "Seadra", type_1: :water, ability_1_id: 38, ability_2_id: 97) |
196 | Species.create(id: 192, name: "Sunflora") | 196 | Species.create(id: 118, name: "Goldeen", type_1: :water, ability_1_id: 33, ability_2_id: 41) |
197 | Species.create(id: 191, name: "Sunkern") | 197 | Species.create(id: 119, name: "Seaking", type_1: :water, ability_1_id: 33, ability_2_id: 41) |
198 | Species.create(id: 190, name: "Aipom") | 198 | Species.create(id: 120, name: "Staryu", type_1: :water, ability_1_id: 35, ability_2_id: 30) |
199 | Species.create(id: 189, name: "Jumpluff") | 199 | Species.create(id: 121, name: "Starmie", type_1: :water, type_2: :psychic, ability_1_id: 35, ability_2_id: 30) |
200 | Species.create(id: 188, name: "Skiploom") | 200 | Species.create(id: 122, name: "Mr. Mime", type_1: :psychic, ability_1_id: 43, ability_2_id: 111) |
201 | Species.create(id: 187, name: "Hoppip") | 201 | Species.create(id: 123, name: "Scyther", type_1: :bug, type_2: :flying, ability_1_id: 68, ability_2_id: 101) |
202 | Species.create(id: 186, name: "Politoed") | 202 | Species.create(id: 124, name: "Jynx", type_1: :ice, type_2: :psychic, ability_1_id: 12, ability_2_id: 108) |
203 | Species.create(id: 185, name: "Sudowoodo") | 203 | Species.create(id: 125, name: "Electabuzz", type_1: :electric, ability_1_id: 9) |
204 | Species.create(id: 184, name: "Azumarill") | 204 | Species.create(id: 126, name: "Magmar", type_1: :fire, ability_1_id: 49) |
205 | Species.create(id: 183, name: "Marill") | 205 | Species.create(id: 127, name: "Pinsir", type_1: :bug, ability_1_id: 52, ability_2_id: 104) |
206 | Species.create(id: 182, name: "Bellossom") | 206 | Species.create(id: 128, name: "Tauros", type_1: :normal, ability_1_id: 22, ability_2_id: 83) |
207 | Species.create(id: 181, name: "Ampharos") | 207 | Species.create(id: 129, name: "Magikarp", type_1: :water, ability_1_id: 33) |
208 | Species.create(id: 180, name: "Flaaffy") | 208 | Species.create(id: 130, name: "Gyarados", type_1: :water, type_2: :flying, ability_1_id: 22) |
209 | Species.create(id: 179, name: "Mareep") | 209 | Species.create(id: 131, name: "Lapras", type_1: :water, type_2: :ice, ability_1_id: 11, ability_2_id: 75) |
210 | Species.create(id: 178, name: "Xatu") | 210 | Species.create(id: 132, name: "Ditto", type_1: :normal, ability_1_id: 7) |
211 | Species.create(id: 177, name: "Natu") | 211 | Species.create(id: 133, name: "Eevee", type_1: :normal, ability_1_id: 50, ability_2_id: 91) |
212 | Species.create(id: 176, name: "Togetic") | 212 | Species.create(id: 134, name: "Vaporeon", type_1: :water, ability_1_id: 11) |
213 | Species.create(id: 175, name: "Togepi") | 213 | Species.create(id: 135, name: "Jolteon", type_1: :electric, ability_1_id: 10) |
214 | Species.create(id: 174, name: "Igglybuff") | 214 | Species.create(id: 136, name: "Flareon", type_1: :fire, ability_1_id: 18) |
215 | Species.create(id: 173, name: "Cleffa") | 215 | Species.create(id: 137, name: "Porygon", type_1: :normal, ability_1_id: 36, ability_2_id: 88) |
216 | Species.create(id: 172, name: "Pichu") | 216 | Species.create(id: 138, name: "Omanyte", type_1: :rock, type_2: :water, ability_1_id: 33, ability_2_id: 75) |
217 | Species.create(id: 171, name: "Lanturn") | 217 | Species.create(id: 139, name: "Omastar", type_1: :rock, type_2: :water, ability_1_id: 33, ability_2_id: 75) |
218 | Species.create(id: 170, name: "Chinchou") | 218 | Species.create(id: 140, name: "Kabuto", type_1: :rock, type_2: :water, ability_1_id: 33, ability_2_id: 4) |
219 | Species.create(id: 169, name: "Crobat") | 219 | Species.create(id: 141, name: "Kabutops", type_1: :rock, type_2: :water, ability_1_id: 33, ability_2_id: 4) |
220 | Species.create(id: 168, name: "Ariados") | 220 | Species.create(id: 142, name: "Aerodactyl", type_1: :rock, type_2: :flying, ability_1_id: 69, ability_2_id: 46) |
221 | Species.create(id: 167, name: "Spinarak") | 221 | Species.create(id: 143, name: "Snorlax", type_1: :normal, ability_1_id: 17, ability_2_id: 47) |
222 | Species.create(id: 166, name: "Ledian") | 222 | Species.create(id: 144, name: "Articuno", type_1: :ice, type_2: :flying, ability_1_id: 46) |
223 | Species.create(id: 165, name: "Ledyba") | 223 | Species.create(id: 145, name: "Zapdos", type_1: :electric, type_2: :flying, ability_1_id: 46) |
224 | Species.create(id: 164, name: "Noctowl") | 224 | Species.create(id: 146, name: "Moltres", type_1: :fire, type_2: :flying, ability_1_id: 46) |
225 | Species.create(id: 163, name: "Hoothoot") | 225 | Species.create(id: 147, name: "Dratini", type_1: :dragon, ability_1_id: 61) |
226 | Species.create(id: 162, name: "Furret") | 226 | Species.create(id: 148, name: "Dragonair", type_1: :dragon, ability_1_id: 61) |
227 | Species.create(id: 161, name: "Sentret") | 227 | Species.create(id: 149, name: "Dragonite", type_1: :dragon, type_2: :flying, ability_1_id: 39) |
228 | Species.create(id: 160, name: "Feraligatr") | 228 | Species.create(id: 150, name: "Mewtwo", type_1: :psychic, ability_1_id: 46) |
229 | Species.create(id: 159, name: "Croconaw") | 229 | Species.create(id: 151, name: "Mew", type_1: :psychic, ability_1_id: 28) |
230 | Species.create(id: 158, name: "Totodile") | 230 | Species.create(id: 152, name: "Chikorita", type_1: :grass, ability_1_id: 65) |
231 | Species.create(id: 157, name: "Typhlosion") | 231 | Species.create(id: 153, name: "Bayleef", type_1: :grass, ability_1_id: 65) |
232 | Species.create(id: 156, name: "Quilava") | 232 | Species.create(id: 154, name: "Meganium", type_1: :grass, ability_1_id: 65) |
233 | Species.create(id: 155, name: "Cyndaquil") | 233 | Species.create(id: 155, name: "Cyndaquil", type_1: :fire, ability_1_id: 66) |
234 | Species.create(id: 154, name: "Meganium") | 234 | Species.create(id: 156, name: "Quilava", type_1: :fire, ability_1_id: 66) |
235 | Species.create(id: 153, name: "Bayleef") | 235 | Species.create(id: 157, name: "Typhlosion", type_1: :fire, ability_1_id: 66) |
236 | Species.create(id: 152, name: "Chikorita") | 236 | Species.create(id: 158, name: "Totodile", type_1: :water, ability_1_id: 67) |
237 | Species.create(id: 151, name: "Mew") | 237 | Species.create(id: 159, name: "Croconaw", type_1: :water, ability_1_id: 67) |
238 | Species.create(id: 150, name: "Mewtwo") | 238 | Species.create(id: 160, name: "Feraligatr", type_1: :water, ability_1_id: 67) |
239 | Species.create(id: 149, name: "Dragonite") | 239 | Species.create(id: 161, name: "Sentret", type_1: :normal, ability_1_id: 50, ability_2_id: 51) |
240 | Species.create(id: 148, name: "Dragonair") | 240 | Species.create(id: 162, name: "Furret", type_1: :normal, ability_1_id: 50, ability_2_id: 51) |
241 | Species.create(id: 147, name: "Dratini") | 241 | Species.create(id: 163, name: "Hoothoot", type_1: :normal, type_2: :flying, ability_1_id: 15, ability_2_id: 51) |
242 | Species.create(id: 146, name: "Moltres") | 242 | Species.create(id: 164, name: "Noctowl", type_1: :normal, type_2: :flying, ability_1_id: 15, ability_2_id: 51) |
243 | Species.create(id: 145, name: "Zapdos") | 243 | Species.create(id: 165, name: "Ledyba", type_1: :bug, type_2: :flying, ability_1_id: 68, ability_2_id: 48) |
244 | Species.create(id: 144, name: "Articuno") | 244 | Species.create(id: 166, name: "Ledian", type_1: :bug, type_2: :flying, ability_1_id: 68, ability_2_id: 48) |
245 | Species.create(id: 143, name: "Snorlax") | 245 | Species.create(id: 167, name: "Spinarak", type_1: :bug, type_2: :poison, ability_1_id: 68, ability_2_id: 15) |
246 | Species.create(id: 142, name: "Aerodactyl") | 246 | Species.create(id: 168, name: "Ariados", type_1: :bug, type_2: :poison, ability_1_id: 68, ability_2_id: 15) |
247 | Species.create(id: 141, name: "Kabutops") | 247 | Species.create(id: 169, name: "Crobat", type_1: :poison, type_2: :flying, ability_1_id: 39) |
248 | Species.create(id: 140, name: "Kabuto") | 248 | Species.create(id: 170, name: "Chinchou", type_1: :water, type_2: :electric, ability_1_id: 10, ability_2_id: 35) |
249 | Species.create(id: 139, name: "Omastar") | 249 | Species.create(id: 171, name: "Lanturn", type_1: :water, type_2: :electric, ability_1_id: 10, ability_2_id: 35) |
250 | Species.create(id: 138, name: "Omanyte") | 250 | Species.create(id: 172, name: "Pichu", type_1: :electric, ability_1_id: 9) |
251 | Species.create(id: 137, name: "Porygon") | 251 | Species.create(id: 173, name: "Cleffa", type_1: :normal, ability_1_id: 56, ability_2_id: 98) |
252 | Species.create(id: 136, name: "Flareon") | 252 | Species.create(id: 174, name: "Igglybuff", type_1: :normal, ability_1_id: 56, ability_2_id: 172) |
253 | Species.create(id: 135, name: "Jolteon") | 253 | Species.create(id: 175, name: "Togepi", type_1: :normal, ability_1_id: 55, ability_2_id: 32) |
254 | Species.create(id: 134, name: "Vaporeon") | 254 | Species.create(id: 176, name: "Togetic", type_1: :normal, type_2: :flying, ability_1_id: 55, ability_2_id: 32) |
255 | Species.create(id: 133, name: "Eevee") | 255 | Species.create(id: 177, name: "Natu", type_1: :psychic, type_2: :flying, ability_1_id: 28, ability_2_id: 48) |
256 | Species.create(id: 132, name: "Ditto") | 256 | Species.create(id: 178, name: "Xatu", type_1: :psychic, type_2: :flying, ability_1_id: 28, ability_2_id: 48) |
257 | Species.create(id: 131, name: "Lapras") | 257 | Species.create(id: 179, name: "Mareep", type_1: :electric, ability_1_id: 9) |
258 | Species.create(id: 130, name: "Gyarados") | 258 | Species.create(id: 180, name: "Flaaffy", type_1: :electric, ability_1_id: 9) |
259 | Species.create(id: 129, name: "Magikarp") | 259 | Species.create(id: 181, name: "Ampharos", type_1: :electric, ability_1_id: 9) |
260 | Species.create(id: 128, name: "Tauros") | 260 | Species.create(id: 182, name: "Bellossom", type_1: :grass, ability_1_id: 34) |
261 | Species.create(id: 127, name: "Pinsir") | 261 | Species.create(id: 183, name: "Marill", type_1: :water, ability_1_id: 47, ability_2_id: 37) |
262 | Species.create(id: 126, name: "Magmar") | 262 | Species.create(id: 184, name: "Azumarill", type_1: :water, ability_1_id: 47, ability_2_id: 37) |
263 | Species.create(id: 125, name: "Electabuzz") | 263 | Species.create(id: 185, name: "Sudowoodo", type_1: :rock, ability_1_id: 5, ability_2_id: 69) |
264 | Species.create(id: 124, name: "Jynx") | 264 | Species.create(id: 186, name: "Politoed", type_1: :water, ability_1_id: 11, ability_2_id: 6) |
265 | Species.create(id: 123, name: "Scyther") | 265 | Species.create(id: 187, name: "Hoppip", type_1: :grass, type_2: :flying, ability_1_id: 34, ability_2_id: 102) |
266 | Species.create(id: 122, name: "Mr. Mime") | 266 | Species.create(id: 188, name: "Skiploom", type_1: :grass, type_2: :flying, ability_1_id: 34, ability_2_id: 102) |
267 | Species.create(id: 121, name: "Starmie") | 267 | Species.create(id: 189, name: "Jumpluff", type_1: :grass, type_2: :flying, ability_1_id: 34, ability_2_id: 102) |
268 | Species.create(id: 120, name: "Staryu") | 268 | Species.create(id: 190, name: "Aipom", type_1: :normal, ability_1_id: 50, ability_2_id: 53) |
269 | Species.create(id: 119, name: "Seaking") | 269 | Species.create(id: 191, name: "Sunkern", type_1: :grass, ability_1_id: 34, ability_2_id: 94) |
270 | Species.create(id: 118, name: "Goldeen") | 270 | Species.create(id: 192, name: "Sunflora", type_1: :grass, ability_1_id: 34, ability_2_id: 94) |
271 | Species.create(id: 117, name: "Seadra") | 271 | Species.create(id: 193, name: "Yanma", type_1: :bug, type_2: :flying, ability_1_id: 3, ability_2_id: 14) |
272 | Species.create(id: 116, name: "Horsea") | 272 | Species.create(id: 194, name: "Wooper", type_1: :water, type_2: :ground, ability_1_id: 6, ability_2_id: 11) |
273 | Species.create(id: 115, name: "Kangaskhan") | 273 | Species.create(id: 195, name: "Quagsire", type_1: :water, type_2: :ground, ability_1_id: 6, ability_2_id: 11) |
274 | Species.create(id: 114, name: "Tangela") | 274 | Species.create(id: 196, name: "Espeon", type_1: :psychic, ability_1_id: 28) |
275 | Species.create(id: 113, name: "Chansey") | 275 | Species.create(id: 197, name: "Umbreon", type_1: :dark, ability_1_id: 28) |
276 | Species.create(id: 112, name: "Rhydon") | 276 | Species.create(id: 198, name: "Murkrow", type_1: :dark, type_2: :flying, ability_1_id: 15, ability_2_id: 105) |
277 | Species.create(id: 111, name: "Rhyhorn") | 277 | Species.create(id: 199, name: "Slowking", type_1: :water, type_2: :psychic, ability_1_id: 12, ability_2_id: 20) |
278 | Species.create(id: 110, name: "Weezing") | 278 | Species.create(id: 200, name: "Misdreavus", type_1: :ghost, ability_1_id: 26) |
279 | Species.create(id: 109, name: "Koffing") | 279 | Species.create(id: 201, name: "Unown", type_1: :psychic, ability_1_id: 26) |
280 | Species.create(id: 108, name: "Lickitung") | 280 | Species.create(id: 202, name: "Wobbuffet", type_1: :psychic, ability_1_id: 23) |
281 | Species.create(id: 107, name: "Hitmonchan") | 281 | Species.create(id: 203, name: "Girafarig", type_1: :normal, type_2: :psychic, ability_1_id: 39, ability_2_id: 48) |
282 | Species.create(id: 106, name: "Hitmonlee") | 282 | Species.create(id: 204, name: "Pineco", type_1: :bug, ability_1_id: 5) |
283 | Species.create(id: 105, name: "Marowak") | 283 | Species.create(id: 205, name: "Forretress", type_1: :bug, type_2: :steel, ability_1_id: 5) |
284 | Species.create(id: 104, name: "Cubone") | 284 | Species.create(id: 206, name: "Dunsparce", type_1: :normal, ability_1_id: 32, ability_2_id: 50) |
285 | Species.create(id: 103, name: "Exeggutor") | 285 | Species.create(id: 207, name: "Gligar", type_1: :ground, type_2: :flying, ability_1_id: 52, ability_2_id: 8) |
286 | Species.create(id: 102, name: "Exeggcute") | 286 | Species.create(id: 208, name: "Steelix", type_1: :steel, type_2: :ground, ability_1_id: 69, ability_2_id: 5) |
287 | Species.create(id: 101, name: "Electrode") | 287 | Species.create(id: 209, name: "Snubbull", type_1: :normal, ability_1_id: 22, ability_2_id: 50) |
288 | Species.create(id: 100, name: "Voltorb") | 288 | Species.create(id: 210, name: "Granbull", type_1: :normal, ability_1_id: 22, ability_2_id: 95) |
289 | Species.create(id: 99, name: "Kingler") | 289 | Species.create(id: 211, name: "Qwilfish", type_1: :water, type_2: :poison, ability_1_id: 38, ability_2_id: 33) |
290 | Species.create(id: 98, name: "Krabby") | 290 | Species.create(id: 212, name: "Scizor", type_1: :bug, type_2: :steel, ability_1_id: 68, ability_2_id: 101) |
291 | Species.create(id: 97, name: "Hypno") | 291 | Species.create(id: 213, name: "Shuckle", type_1: :bug, type_2: :rock, ability_1_id: 5, ability_2_id: 82) |
292 | Species.create(id: 96, name: "Drowzee") | 292 | Species.create(id: 214, name: "Heracross", type_1: :bug, type_2: :fighting, ability_1_id: 68, ability_2_id: 62) |
293 | Species.create(id: 95, name: "Onix") | 293 | Species.create(id: 215, name: "Sneasel", type_1: :dark, type_2: :ice, ability_1_id: 39, ability_2_id: 51) |
294 | Species.create(id: 94, name: "Gengar") | 294 | Species.create(id: 216, name: "Teddiursa", type_1: :normal, ability_1_id: 53, ability_2_id: 95) |
295 | Species.create(id: 93, name: "Haunter") | 295 | Species.create(id: 217, name: "Ursaring", type_1: :normal, ability_1_id: 62, ability_2_id: 95) |
296 | Species.create(id: 92, name: "Gastly") | 296 | Species.create(id: 218, name: "Slugma", type_1: :fire, ability_1_id: 40, ability_2_id: 49) |
297 | Species.create(id: 91, name: "Cloyster") | 297 | Species.create(id: 219, name: "Magcargo", type_1: :fire, type_2: :rock, ability_1_id: 40, ability_2_id: 49) |
298 | Species.create(id: 90, name: "Shellder") | 298 | Species.create(id: 220, name: "Swinub", type_1: :ice, type_2: :ground, ability_1_id: 12, ability_2_id: 81) |
299 | Species.create(id: 89, name: "Muk") | 299 | Species.create(id: 221, name: "Piloswine", type_1: :ice, type_2: :ground, ability_1_id: 12, ability_2_id: 81) |
300 | Species.create(id: 88, name: "Grimer") | 300 | Species.create(id: 222, name: "Corsola", type_1: :water, type_2: :rock, ability_1_id: 55, ability_2_id: 30) |
301 | Species.create(id: 87, name: "Dewgong") | 301 | Species.create(id: 223, name: "Remoraid", type_1: :water, ability_1_id: 55, ability_2_id: 97) |
302 | Species.create(id: 86, name: "Seel") | 302 | Species.create(id: 224, name: "Octillery", type_1: :water, ability_1_id: 21, ability_2_id: 97) |
303 | Species.create(id: 85, name: "Dodrio") | 303 | Species.create(id: 225, name: "Delibird", type_1: :ice, type_2: :flying, ability_1_id: 72, ability_2_id: 55) |
304 | Species.create(id: 84, name: "Doduo") | 304 | Species.create(id: 226, name: "Mantine", type_1: :water, type_2: :flying, ability_1_id: 33, ability_2_id: 11) |
305 | Species.create(id: 83, name: "Farfetch'd") | 305 | Species.create(id: 227, name: "Skarmory", type_1: :steel, type_2: :flying, ability_1_id: 51, ability_2_id: 5) |
306 | Species.create(id: 82, name: "Magneton") | 306 | Species.create(id: 228, name: "Houndour", type_1: :dark, type_2: :fire, ability_1_id: 48, ability_2_id: 18) |
307 | Species.create(id: 81, name: "Magnemite") | 307 | Species.create(id: 229, name: "Houndoom", type_1: :dark, type_2: :fire, ability_1_id: 48, ability_2_id: 18) |
308 | Species.create(id: 80, name: "Slowbro") | 308 | Species.create(id: 230, name: "Kingdra", type_1: :water, type_2: :dragon, ability_1_id: 33, ability_2_id: 97) |
309 | Species.create(id: 79, name: "Slowpoke") | 309 | Species.create(id: 231, name: "Phanpy", type_1: :ground, ability_1_id: 53) |
310 | Species.create(id: 78, name: "Rapidash") | 310 | Species.create(id: 232, name: "Donphan", type_1: :ground, ability_1_id: 5) |
311 | Species.create(id: 77, name: "Ponyta") | 311 | Species.create(id: 233, name: "Porygon2", type_1: :normal, ability_1_id: 36, ability_2_id: 88) |
312 | Species.create(id: 76, name: "Golem") | 312 | Species.create(id: 234, name: "Stantler", type_1: :normal, ability_1_id: 22, ability_2_id: 119) |
313 | Species.create(id: 75, name: "Graveler") | 313 | Species.create(id: 235, name: "Smeargle", type_1: :normal, ability_1_id: 20, ability_2_id: 101) |
314 | Species.create(id: 74, name: "Geodude") | 314 | Species.create(id: 236, name: "Tyrogue", type_1: :fighting, ability_1_id: 62, ability_2_id: 80) |
315 | Species.create(id: 73, name: "Tentacruel") | 315 | Species.create(id: 237, name: "Hitmontop", type_1: :fighting, ability_1_id: 22, ability_2_id: 101) |
316 | Species.create(id: 72, name: "Tentacool") | 316 | Species.create(id: 238, name: "Smoochum", type_1: :ice, type_2: :psychic, ability_1_id: 12, ability_2_id: 108) |
317 | Species.create(id: 71, name: "Victreebel") | 317 | Species.create(id: 239, name: "Elekid", type_1: :electric, ability_1_id: 9) |
318 | Species.create(id: 70, name: "Weepinbell") | 318 | Species.create(id: 240, name: "Magby", type_1: :fire, ability_1_id: 49) |
319 | Species.create(id: 69, name: "Bellsprout") | 319 | Species.create(id: 241, name: "Miltank", type_1: :normal, ability_1_id: 47, ability_2_id: 113) |
320 | Species.create(id: 68, name: "Machamp") | 320 | Species.create(id: 242, name: "Blissey", type_1: :normal, ability_1_id: 30, ability_2_id: 32) |
321 | Species.create(id: 67, name: "Machoke") | 321 | Species.create(id: 243, name: "Raikou", type_1: :electric, ability_1_id: 46) |
322 | Species.create(id: 66, name: "Machop") | 322 | Species.create(id: 244, name: "Entei", type_1: :fire, ability_1_id: 46) |
323 | Species.create(id: 65, name: "Alakazam") | 323 | Species.create(id: 245, name: "Suicune", type_1: :water, ability_1_id: 46) |
324 | Species.create(id: 64, name: "Kadabra") | 324 | Species.create(id: 246, name: "Larvitar", type_1: :rock, type_2: :ground, ability_1_id: 62) |
325 | Species.create(id: 63, name: "Abra") | 325 | Species.create(id: 247, name: "Pupitar", type_1: :rock, type_2: :ground, ability_1_id: 61) |
326 | Species.create(id: 62, name: "Poliwrath") | 326 | Species.create(id: 248, name: "Tyranitar", type_1: :rock, type_2: :dark, ability_1_id: 45) |
327 | Species.create(id: 61, name: "Poliwhirl") | 327 | Species.create(id: 249, name: "Lugia", type_1: :psychic, type_2: :flying, ability_1_id: 46) |
328 | Species.create(id: 60, name: "Poliwag") | 328 | Species.create(id: 250, name: "Ho-Oh", type_1: :fire, type_2: :flying, ability_1_id: 46) |
329 | Species.create(id: 59, name: "Arcanine") | 329 | Species.create(id: 251, name: "Celebi", type_1: :psychic, type_2: :grass, ability_1_id: 30) |
330 | Species.create(id: 58, name: "Growlithe") | 330 | Species.create(id: 252, name: "Treecko", type_1: :grass, ability_1_id: 65) |
331 | Species.create(id: 57, name: "Primeape") | 331 | Species.create(id: 253, name: "Grovyle", type_1: :grass, ability_1_id: 65) |
332 | Species.create(id: 56, name: "Mankey") | 332 | Species.create(id: 254, name: "Sceptile", type_1: :grass, ability_1_id: 65) |
333 | Species.create(id: 55, name: "Golduck") | 333 | Species.create(id: 255, name: "Torchic", type_1: :fire, ability_1_id: 66) |
334 | Species.create(id: 54, name: "Psyduck") | 334 | Species.create(id: 256, name: "Combusken", type_1: :fire, type_2: :fighting, ability_1_id: 66) |
335 | Species.create(id: 53, name: "Persian") | 335 | Species.create(id: 257, name: "Blaziken", type_1: :fire, type_2: :fighting, ability_1_id: 66) |
336 | Species.create(id: 52, name: "Meowth") | 336 | Species.create(id: 258, name: "Mudkip", type_1: :water, ability_1_id: 67) |
337 | Species.create(id: 51, name: "Dugtrio") | 337 | Species.create(id: 259, name: "Marshtomp", type_1: :water, type_2: :ground, ability_1_id: 67) |
338 | Species.create(id: 50, name: "Diglett") | 338 | Species.create(id: 260, name: "Swampert", type_1: :water, type_2: :ground, ability_1_id: 67) |
339 | Species.create(id: 49, name: "Venomoth") | 339 | Species.create(id: 261, name: "Poochyena", type_1: :dark, ability_1_id: 50, ability_2_id: 95) |
340 | Species.create(id: 48, name: "Venonat") | 340 | Species.create(id: 262, name: "Mightyena", type_1: :dark, ability_1_id: 22, ability_2_id: 95) |
341 | Species.create(id: 47, name: "Parasect") | 341 | Species.create(id: 263, name: "Zigzagoon", type_1: :normal, ability_1_id: 53, ability_2_id: 82) |
342 | Species.create(id: 46, name: "Paras") | 342 | Species.create(id: 264, name: "Linoone", type_1: :normal, ability_1_id: 53, ability_2_id: 82) |
343 | Species.create(id: 45, name: "Vileplume") | 343 | Species.create(id: 265, name: "Wurmple", type_1: :bug, ability_1_id: 19) |
344 | Species.create(id: 44, name: "Gloom") | 344 | Species.create(id: 266, name: "Silcoon", type_1: :bug, ability_1_id: 61) |
345 | Species.create(id: 43, name: "Oddish") | 345 | Species.create(id: 267, name: "Beautifly", type_1: :bug, type_2: :flying, ability_1_id: 68) |
346 | Species.create(id: 42, name: "Golbat") | 346 | Species.create(id: 268, name: "Cascoon", type_1: :bug, ability_1_id: 61) |
347 | Species.create(id: 41, name: "Zubat") | 347 | Species.create(id: 269, name: "Dustox", type_1: :bug, type_2: :poison, ability_1_id: 19) |
348 | Species.create(id: 40, name: "Wigglytuff") | 348 | Species.create(id: 270, name: "Lotad", type_1: :water, type_2: :grass, ability_1_id: 33, ability_2_id: 44) |
349 | Species.create(id: 39, name: "Jigglypuff") | 349 | Species.create(id: 271, name: "Lombre", type_1: :water, type_2: :grass, ability_1_id: 33, ability_2_id: 44) |
350 | Species.create(id: 38, name: "Ninetales") | 350 | Species.create(id: 272, name: "Ludicolo", type_1: :water, type_2: :grass, ability_1_id: 33, ability_2_id: 44) |
351 | Species.create(id: 37, name: "Vulpix") | 351 | Species.create(id: 273, name: "Seedot", type_1: :grass, ability_1_id: 34, ability_2_id: 48) |
352 | Species.create(id: 36, name: "Clefable") | 352 | Species.create(id: 274, name: "Nuzleaf", type_1: :grass, type_2: :dark, ability_1_id: 34, ability_2_id: 48) |
353 | Species.create(id: 35, name: "Clefairy") | 353 | Species.create(id: 275, name: "Shiftry", type_1: :grass, type_2: :dark, ability_1_id: 34, ability_2_id: 48) |
354 | Species.create(id: 34, name: "Nidoking") | 354 | Species.create(id: 276, name: "Taillow", type_1: :normal, type_2: :flying, ability_1_id: 62) |
355 | Species.create(id: 33, name: "Nidorino") | 355 | Species.create(id: 277, name: "Swellow", type_1: :normal, type_2: :flying, ability_1_id: 62) |
356 | Species.create(id: 32, name: "Nidoran♂") | 356 | Species.create(id: 278, name: "Wingull", type_1: :water, type_2: :flying, ability_1_id: 51, ability_2_id: 93) |
357 | Species.create(id: 31, name: "Nidoqueen") | 357 | Species.create(id: 279, name: "Pelipper", type_1: :water, type_2: :flying, ability_1_id: 51, ability_2_id: 2) |
358 | Species.create(id: 30, name: "Nidorina") | 358 | Species.create(id: 280, name: "Ralts", type_1: :psychic, ability_1_id: 28, ability_2_id: 36) |
359 | Species.create(id: 29, name: "Nidoran♀") | 359 | Species.create(id: 281, name: "Kirlia", type_1: :psychic, ability_1_id: 28, ability_2_id: 36) |
360 | Species.create(id: 28, name: "Sandslash") | 360 | Species.create(id: 282, name: "Gardevoir", type_1: :psychic, ability_1_id: 28, ability_2_id: 36) |
361 | Species.create(id: 27, name: "Sandshrew") | 361 | Species.create(id: 283, name: "Surskit", type_1: :bug, type_2: :water, ability_1_id: 33) |
362 | Species.create(id: 26, name: "Raichu") | 362 | Species.create(id: 284, name: "Masquerain", type_1: :bug, type_2: :flying, ability_1_id: 22) |
363 | Species.create(id: 25, name: "Pikachu") | 363 | Species.create(id: 285, name: "Shroomish", type_1: :grass, ability_1_id: 27, ability_2_id: 90) |
364 | Species.create(id: 24, name: "Arbok") | 364 | Species.create(id: 286, name: "Breloom", type_1: :grass, type_2: :fighting, ability_1_id: 27, ability_2_id: 90) |
365 | Species.create(id: 23, name: "Ekans") | 365 | Species.create(id: 287, name: "Slakoth", type_1: :normal, ability_1_id: 54) |
366 | Species.create(id: 22, name: "Fearow") | 366 | Species.create(id: 288, name: "Vigoroth", type_1: :normal, ability_1_id: 72) |
367 | Species.create(id: 21, name: "Spearow") | 367 | Species.create(id: 289, name: "Slaking", type_1: :normal, ability_1_id: 54) |
368 | Species.create(id: 20, name: "Raticate") | 368 | Species.create(id: 290, name: "Nincada", type_1: :bug, type_2: :ground, ability_1_id: 14) |
369 | Species.create(id: 19, name: "Rattata") | 369 | Species.create(id: 291, name: "Ninjask", type_1: :bug, type_2: :flying, ability_1_id: 3) |
370 | Species.create(id: 18, name: "Pidgeot") | 370 | Species.create(id: 292, name: "Shedinja", type_1: :bug, type_2: :ghost, ability_1_id: 25) |
371 | Species.create(id: 17, name: "Pidgeotto") | 371 | Species.create(id: 293, name: "Whismur", type_1: :normal, ability_1_id: 43) |
372 | Species.create(id: 16, name: "Pidgey") | 372 | Species.create(id: 294, name: "Loudred", type_1: :normal, ability_1_id: 43) |
373 | Species.create(id: 15, name: "Beedrill") | 373 | Species.create(id: 295, name: "Exploud", type_1: :normal, ability_1_id: 43) |
374 | Species.create(id: 14, name: "Kakuna") | 374 | Species.create(id: 296, name: "Makuhita", type_1: :fighting, ability_1_id: 47, ability_2_id: 62) |
375 | Species.create(id: 13, name: "Weedle") | 375 | Species.create(id: 297, name: "Hariyama", type_1: :fighting, ability_1_id: 47, ability_2_id: 62) |
376 | Species.create(id: 12, name: "Butterfree") | 376 | Species.create(id: 298, name: "Azurill", type_1: :normal, ability_1_id: 47, ability_2_id: 37) |
377 | Species.create(id: 11, name: "Metapod") | 377 | Species.create(id: 299, name: "Nosepass", type_1: :rock, ability_1_id: 5, ability_2_id: 42) |
378 | Species.create(id: 10, name: "Caterpie") | 378 | Species.create(id: 300, name: "Skitty", type_1: :normal, ability_1_id: 56, ability_2_id: 96) |
379 | Species.create(id: 9, name: "Blastoise") | 379 | Species.create(id: 301, name: "Delcatty", type_1: :normal, ability_1_id: 56, ability_2_id: 96) |
380 | Species.create(id: 8, name: "Wartortle") | 380 | Species.create(id: 302, name: "Sableye", type_1: :dark, type_2: :ghost, ability_1_id: 51, ability_2_id: 100) |
381 | Species.create(id: 7, name: "Squirtle") | 381 | Species.create(id: 303, name: "Mawile", type_1: :steel, ability_1_id: 52, ability_2_id: 22) |
382 | Species.create(id: 6, name: "Charizard") | 382 | Species.create(id: 304, name: "Aron", type_1: :steel, type_2: :rock, ability_1_id: 5, ability_2_id: 69) |
383 | Species.create(id: 5, name: "Charmeleon") | 383 | Species.create(id: 305, name: "Lairon", type_1: :steel, type_2: :rock, ability_1_id: 5, ability_2_id: 69) |
384 | Species.create(id: 4, name: "Charmander") | 384 | Species.create(id: 306, name: "Aggron", type_1: :steel, type_2: :rock, ability_1_id: 5, ability_2_id: 69) |
385 | Species.create(id: 3, name: "Venusaur") | 385 | Species.create(id: 307, name: "Meditite", type_1: :fighting, type_2: :psychic, ability_1_id: 74) |
386 | Species.create(id: 2, name: "Ivysaur") | 386 | Species.create(id: 308, name: "Medicham", type_1: :fighting, type_2: :psychic, ability_1_id: 74) |
387 | Species.create(id: 1, name: "Bulbasaur") | 387 | Species.create(id: 309, name: "Electrike", type_1: :electric, ability_1_id: 9, ability_2_id: 31) |
388 | Species.create(id: 310, name: "Manectric", type_1: :electric, ability_1_id: 9, ability_2_id: 31) | ||
389 | Species.create(id: 311, name: "Plusle", type_1: :electric, ability_1_id: 57) | ||
390 | Species.create(id: 312, name: "Minun", type_1: :electric, ability_1_id: 58) | ||
391 | Species.create(id: 313, name: "Volbeat", type_1: :bug, ability_1_id: 35, ability_2_id: 68) | ||
392 | Species.create(id: 314, name: "Illumise", type_1: :bug, ability_1_id: 12, ability_2_id: 110) | ||
393 | Species.create(id: 315, name: "Roselia", type_1: :grass, type_2: :poison, ability_1_id: 30, ability_2_id: 38) | ||
394 | Species.create(id: 316, name: "Gulpin", type_1: :poison, ability_1_id: 64, ability_2_id: 60) | ||
395 | Species.create(id: 317, name: "Swalot", type_1: :poison, ability_1_id: 64, ability_2_id: 60) | ||
396 | Species.create(id: 318, name: "Carvanha", type_1: :water, type_2: :dark, ability_1_id: 24) | ||
397 | Species.create(id: 319, name: "Sharpedo", type_1: :water, type_2: :dark, ability_1_id: 24) | ||
398 | Species.create(id: 320, name: "Wailmer", type_1: :water, ability_1_id: 41, ability_2_id: 12) | ||
399 | Species.create(id: 321, name: "Wailord", type_1: :water, ability_1_id: 41, ability_2_id: 12) | ||
400 | Species.create(id: 322, name: "Numel", type_1: :fire, type_2: :ground, ability_1_id: 12, ability_2_id: 86) | ||
401 | Species.create(id: 323, name: "Camerupt", type_1: :fire, type_2: :ground, ability_1_id: 40, ability_2_id: 116) | ||
402 | Species.create(id: 324, name: "Torkoal", type_1: :fire, ability_1_id: 73, ability_2_id: 70) | ||
403 | Species.create(id: 325, name: "Spoink", type_1: :psychic, ability_1_id: 47, ability_2_id: 20) | ||
404 | Species.create(id: 326, name: "Grumpig", type_1: :psychic, ability_1_id: 47, ability_2_id: 20) | ||
405 | Species.create(id: 327, name: "Spinda", type_1: :normal, ability_1_id: 20, ability_2_id: 77) | ||
406 | Species.create(id: 328, name: "Trapinch", type_1: :ground, ability_1_id: 52, ability_2_id: 71) | ||
407 | Species.create(id: 329, name: "Vibrava", type_1: :ground, type_2: :dragon, ability_1_id: 26) | ||
408 | Species.create(id: 330, name: "Flygon", type_1: :ground, type_2: :dragon, ability_1_id: 26) | ||
409 | Species.create(id: 331, name: "Cacnea", type_1: :grass, ability_1_id: 8) | ||
410 | Species.create(id: 332, name: "Cacturne", type_1: :grass, type_2: :dark, ability_1_id: 8) | ||
411 | Species.create(id: 333, name: "Swablu", type_1: :normal, type_2: :flying, ability_1_id: 30) | ||
412 | Species.create(id: 334, name: "Altaria", type_1: :dragon, type_2: :flying, ability_1_id: 30) | ||
413 | Species.create(id: 335, name: "Zangoose", type_1: :normal, ability_1_id: 17) | ||
414 | Species.create(id: 336, name: "Seviper", type_1: :poison, ability_1_id: 61) | ||
415 | Species.create(id: 337, name: "Lunatone", type_1: :rock, type_2: :psychic, ability_1_id: 26) | ||
416 | Species.create(id: 338, name: "Solrock", type_1: :rock, type_2: :psychic, ability_1_id: 26) | ||
417 | Species.create(id: 339, name: "Barboach", type_1: :water, type_2: :ground, ability_1_id: 12, ability_2_id: 107) | ||
418 | Species.create(id: 340, name: "Whiscash", type_1: :water, type_2: :ground, ability_1_id: 12, ability_2_id: 107) | ||
419 | Species.create(id: 341, name: "Corphish", type_1: :water, ability_1_id: 52, ability_2_id: 75) | ||
420 | Species.create(id: 342, name: "Crawdaunt", type_1: :water, type_2: :dark, ability_1_id: 52, ability_2_id: 75) | ||
421 | Species.create(id: 343, name: "Baltoy", type_1: :ground, type_2: :psychic, ability_1_id: 26) | ||
422 | Species.create(id: 344, name: "Claydol", type_1: :ground, type_2: :psychic, ability_1_id: 26) | ||
423 | Species.create(id: 345, name: "Lileep", type_1: :rock, type_2: :grass, ability_1_id: 21) | ||
424 | Species.create(id: 346, name: "Cradily", type_1: :rock, type_2: :grass, ability_1_id: 21) | ||
425 | Species.create(id: 347, name: "Anorith", type_1: :rock, type_2: :bug, ability_1_id: 4) | ||
426 | Species.create(id: 348, name: "Armaldo", type_1: :rock, type_2: :bug, ability_1_id: 4) | ||
427 | Species.create(id: 349, name: "Feebas", type_1: :water, ability_1_id: 33, ability_2_id: 12) | ||
428 | Species.create(id: 350, name: "Milotic", type_1: :water, ability_1_id: 63, ability_2_id: 172) | ||
429 | Species.create(id: 351, name: "Castform", type_1: :normal, ability_1_id: 59) | ||
430 | Species.create(id: 352, name: "Kecleon", type_1: :normal, ability_1_id: 16) | ||
431 | Species.create(id: 353, name: "Shuppet", type_1: :ghost, ability_1_id: 15, ability_2_id: 119) | ||
432 | Species.create(id: 354, name: "Banette", type_1: :ghost, ability_1_id: 15, ability_2_id: 119) | ||
433 | Species.create(id: 355, name: "Duskull", type_1: :ghost, ability_1_id: 26) | ||
434 | Species.create(id: 356, name: "Dusclops", type_1: :ghost, ability_1_id: 46) | ||
435 | Species.create(id: 357, name: "Tropius", type_1: :grass, type_2: :flying, ability_1_id: 34, ability_2_id: 94) | ||
436 | Species.create(id: 358, name: "Chimecho", type_1: :psychic, ability_1_id: 26) | ||
437 | Species.create(id: 359, name: "Absol", type_1: :dark, ability_1_id: 46, ability_2_id: 105) | ||
438 | Species.create(id: 360, name: "Wynaut", type_1: :psychic, ability_1_id: 23) | ||
439 | Species.create(id: 361, name: "Snorunt", type_1: :ice, ability_1_id: 39, ability_2_id: 115) | ||
440 | Species.create(id: 362, name: "Glalie", type_1: :ice, ability_1_id: 39, ability_2_id: 115) | ||
441 | Species.create(id: 363, name: "Spheal", type_1: :ice, type_2: :water, ability_1_id: 47, ability_2_id: 115) | ||
442 | Species.create(id: 364, name: "Sealeo", type_1: :ice, type_2: :water, ability_1_id: 47, ability_2_id: 115) | ||
443 | Species.create(id: 365, name: "Walrein", type_1: :ice, type_2: :water, ability_1_id: 47, ability_2_id: 115) | ||
444 | Species.create(id: 366, name: "Clamperl", type_1: :water, ability_1_id: 75) | ||
445 | Species.create(id: 367, name: "Huntail", type_1: :water, ability_1_id: 33) | ||
446 | Species.create(id: 368, name: "Gorebyss", type_1: :water, ability_1_id: 33) | ||
447 | Species.create(id: 369, name: "Relicanth", type_1: :water, type_2: :rock, ability_1_id: 33, ability_2_id: 69) | ||
448 | Species.create(id: 370, name: "Luvdisc", type_1: :water, ability_1_id: 33) | ||
449 | Species.create(id: 371, name: "Bagon", type_1: :dragon, ability_1_id: 69) | ||
450 | Species.create(id: 372, name: "Shelgon", type_1: :dragon, ability_1_id: 69) | ||
451 | Species.create(id: 373, name: "Salamence", type_1: :dragon, type_2: :flying, ability_1_id: 22) | ||
452 | Species.create(id: 374, name: "Beldum", type_1: :steel, type_2: :psychic, ability_1_id: 29) | ||
453 | Species.create(id: 375, name: "Metang", type_1: :steel, type_2: :psychic, ability_1_id: 29) | ||
454 | Species.create(id: 376, name: "Metagross", type_1: :steel, type_2: :psychic, ability_1_id: 29) | ||
455 | Species.create(id: 377, name: "Regirock", type_1: :rock, ability_1_id: 29) | ||
456 | Species.create(id: 378, name: "Regice", type_1: :ice, ability_1_id: 29) | ||
457 | Species.create(id: 379, name: "Registeel", type_1: :steel, ability_1_id: 29) | ||
458 | Species.create(id: 380, name: "Latias", type_1: :dragon, type_2: :psychic, ability_1_id: 26) | ||
459 | Species.create(id: 381, name: "Latios", type_1: :dragon, type_2: :psychic, ability_1_id: 26) | ||
460 | Species.create(id: 382, name: "Kyogre", type_1: :water, ability_1_id: 2) | ||
461 | Species.create(id: 383, name: "Groudon", type_1: :ground, ability_1_id: 70) | ||
462 | Species.create(id: 384, name: "Rayquaza", type_1: :dragon, type_2: :flying, ability_1_id: 76) | ||
463 | Species.create(id: 385, name: "Jirachi", type_1: :steel, type_2: :psychic, ability_1_id: 32) | ||
464 | Species.create(id: 386, name: "Deoxys", type_1: :psychic, ability_1_id: 46) | ||
388 | 465 | ||
389 | Move.create(id: 354, name: "Psycho Boost", pp: 5, move_type: :psychic, | 466 | Move.create(id: 354, name: "Psycho Boost", pp: 5, move_type: :psychic, |
390 | rs_description: "Allows a full-power attack, but sharply lowers SP. ATK.", | 467 | rs_description: "Allows a full-power attack, but sharply lowers SP. ATK.", |