-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.sql
1614 lines (1482 loc) · 89.8 KB
/
data.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 12.6 (Ubuntu 12.6-0ubuntu0.20.04.1)
-- Dumped by pg_dump version 12.6 (Ubuntu 12.6-0ubuntu0.20.04.1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: abilities; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.abilities (
id integer NOT NULL,
ability text,
ability_description text
);
--
-- Name: abilities_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.abilities_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: abilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.abilities_id_seq OWNED BY public.abilities.id;
--
-- Name: egg_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.egg_groups (
id integer NOT NULL,
egg_group text
);
--
-- Name: egg_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.egg_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: egg_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.egg_groups_id_seq OWNED BY public.egg_groups.id;
--
-- Name: games; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.games (
id integer NOT NULL,
game text
);
--
-- Name: games_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.games_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: games_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.games_id_seq OWNED BY public.games.id;
--
-- Name: legendaries; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.legendaries (
id integer NOT NULL,
legendary_status text
);
--
-- Name: legendaries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.legendaries_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: legendaries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.legendaries_id_seq OWNED BY public.legendaries.id;
--
-- Name: pokemon; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.pokemon (
id integer NOT NULL,
pokedex_number integer,
pokemon_name text,
is_legendary integer,
type1_id integer,
type2_id integer,
ability1_id integer,
ability2_id integer,
hidden_ability integer,
health integer,
attack integer,
defense integer,
special_attack integer,
special_defense integer,
speed integer,
region_id integer,
catch_rate numeric,
male_percent numeric,
game_id integer,
egg_group1_id integer,
egg_group2_id integer
);
--
-- Name: pokemon_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.pokemon_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: pokemon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.pokemon_id_seq OWNED BY public.pokemon.id;
--
-- Name: regions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.regions (
id integer NOT NULL,
region text
);
--
-- Name: regions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.regions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: regions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.regions_id_seq OWNED BY public.regions.id;
--
-- Name: types; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.types (
id integer NOT NULL,
pokemon_type text
);
--
-- Name: types_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.types_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.types_id_seq OWNED BY public.types.id;
--
-- Name: abilities id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.abilities ALTER COLUMN id SET DEFAULT nextval('public.abilities_id_seq'::regclass);
--
-- Name: egg_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.egg_groups ALTER COLUMN id SET DEFAULT nextval('public.egg_groups_id_seq'::regclass);
--
-- Name: games id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.games ALTER COLUMN id SET DEFAULT nextval('public.games_id_seq'::regclass);
--
-- Name: legendaries id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.legendaries ALTER COLUMN id SET DEFAULT nextval('public.legendaries_id_seq'::regclass);
--
-- Name: pokemon id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.pokemon ALTER COLUMN id SET DEFAULT nextval('public.pokemon_id_seq'::regclass);
--
-- Name: regions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.regions ALTER COLUMN id SET DEFAULT nextval('public.regions_id_seq'::regclass);
--
-- Name: types id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.types ALTER COLUMN id SET DEFAULT nextval('public.types_id_seq'::regclass);
--
-- Data for Name: abilities; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.abilities (id, ability, ability_description) FROM stdin;
0 overgrow powers_up_grass-type_moves_when_the_pokémon's_hp_is_low.
1 blaze powers_up_fire-type_moves_when_the_pokémon's_hp_is_low._
2 torrent powers_up_water-type_moves_when_the_pokémon's_hp_is_low._
3 rattled dark-_ghost-_and_bug-type_moves_scare_the_pokémon_and_boost_its_speed_stat.
4 punk_rock boosts_the_power_of_sound-based_moves._the_pokémon_also_takes_half_the_damage_from_these_kinds_of_moves.
5 poison_point contact_with_the_pokémon_may_poison_the_attacker.
6 rivalry becomes_competitive_and_deals_more_damage_to_pokémon_of_the_same_gender_but_deals_less_to_pokémon_of_the_opposite_gender.
7 shed_skin the_pokémon_may_heal_its_own_status_conditions_by_shedding_its_skin.
8 compound_eyes the_pokémon's_compound_eyes_boost_its_accuracy.
9 no_guard the_pokémon_employs_no-guard_tactics_to_ensure_incoming_and_outgoing_attacks_always_land.
10 swarm powers_up_bug-type_moves_when_the_pokémon's_hp_is_low.
11 limber its_limber_body_protects_the_pokémon_from_paralysis.
12 shield_dust this_pokémon's_dust_blocks_the_additional_effects_of_attacks_taken.
13 hydration heals_status_conditions_if_it's_raining.
14 inner_focus the_pokémon's_intensely_focused_and_that_protects_the_pokémon_from_flinching.
15 unseen_fist the_pokémon_can_deal_damage_with_moves_that_make_physical_contact_even_if_the_target_is_protected.
16 unnerve unnerves_opposing_pokémon_and_makes_them_unable_to_eat_berries.
17 synchronize the_attacker_will_receive_the_same_status_condition_if_it_inflicts_a_burn_poison_or_paralysis_to_the_pokémon.
18 pressure by_putting_pressure_on_the_opposing_pokémon_it_raises_their_pp_usage.
19 magnet_pull prevents_steel-type_pokémon_from_escaping_using_its_magnetic_force.
20 soundproof soundproofing_gives_the_pokémon_full_immunity_to_all_sound-based_moves.
21 cute_charm contact_with_the_pokémon_may_cause_infatuation.
22 flash_fire powers_up_the_pokémon's_fire-type_moves_if_it's_hit_by_one.
23 chlorophyll boosts_the_pokémon's_speed_stat_in_harsh_sunlight._
24 effect_spore contact_with_the_pokémon_may_inflict_poison_sleep_or_paralysis_on_its_attacker.
25 sand_veil boosts_the_pokémon's_evasiveness_in_a_sandstorm.
26 keen_eye keen_eyes_prevent_other_pokémon_from_lowering_this_pokémon's_accuracy.
27 run_away enables_a_sure_getaway_from_wild_pokémon.
28 intimidate the_pokémon_intimidates_opposing_pokémon_upon_entering_battle_lowering_their_attack_stat.
29 static the_pokémon_is_charged_with_static_electricity_so_contact_with_it_may_cause_paralysis.
30 pickup the_pokémon_may_pick_up_the_item_an_opposing_pokémon_used_during_a_battle._it_may_pick_up_items_outside_of_battle_too.
31 battle_armor hard_armor_protects_the_pokémon_from_critical_hits.
32 damp prevents_the_use_of_explosive_moves_such_as_self-destruct_by_dampening_its_surroundings.
33 rock_head protects_the_pokémon_from_recoil_damage.
34 own_tempo this_pokémon_has_its_own_tempo_and_that_prevents_it_from_becoming_confused.
35 levitate by_floating_in_the_air_the_pokémon_receives_full_immunity_to_all_ground-type_moves.
36 lightning_rod the_pokémon_draws_in_all_electric-type_moves._instead_of_being_hit_by_electric-type_moves_it_boosts_its_sp._atk.
37 natural_cure all_status_conditions_heal_when_the_pokémon_switches_out.
38 early_bird the_pokémon_awakens_from_sleep_twice_as_fast_as_other_pokémon.
39 swift_swim boosts_the_pokémon's_speed_stat_in_rain.
40 illuminate raises_the_likelihood_of_meeting_wild_pokémon_by_illuminating_the_surroundings.
41 oblivious the_pokémon_is_oblivious_and_that_keeps_it_from_being_infatuated_or_falling_for_taunts.
42 flame_body contact_with_the_pokémon_may_burn_the_attacker.
43 hyper_cutter the_pokémon's_proud_of_its_powerful_pincers._they_prevent_other_pokémon_from_lowering_its_attack_stat.
44 water_absorb restores_hp_if_hit_by_a_water-type_move_instead_of_taking_damage.
45 volt_absorb restores_hp_if_hit_by_an_electric-type_move_instead_of_taking_damage.
46 trace when_it_enters_a_battle_the_pokémon_copies_an_opposing_pokémon's_ability.
47 immunity the_immune_system_of_the_pokémon_prevents_it_from_getting_poisoned.
48 insomnia the_pokémon_is_suffering_from_insomnia_and_cannot_fall_asleep.
49 hustle boosts_the_attack_stat_but_lowers_accuracy.
50 thick_fat the_pokémon_is_protected_by_a_layer_of_thick_fat_which_halves_the_damage_taken_from_fire-_and_ice-type_moves._
51 sturdy it_cannot_be_knocked_out_with_one_hit._one-hit_ko_moves_cannot_knock_it_out_either.
52 speed_boost its_speed_stat_is_boosted_every_turn.
53 shadow_tag this_pokémon_steps_on_the_opposing_pokémon's_shadow_to_prevent_it_from_escaping.
54 serene_grace boosts_the_likelihood_of_additional_effects_occurring_when_attacking.
55 guts it's_so_gutsy_that_having_a_status_condition_boosts_the_pokémon's_attack_stat.
56 magma_armor the_pokémon_is_covered_with_hot_magma_which_prevents_the_pokémon_from_becoming_frozen.
57 suction_cups this_pokémon_uses_suction_cups_to_stay_in_one_spot_to_negate_all_moves_and_items_that_force_switching_out.
58 vital_spirit the_pokémon_is_full_of_vitality_and_that_prevents_it_from_falling_asleep.
59 sand_stream the_pokémon_summons_a_sandstorm_when_it_enters_a_battle.
60 truant the_pokémon_can't_use_a_move_if_it_had_used_a_move_on_the_previous_turn.
61 wonder_guard its_mysterious_power_only_lets_supereffective_moves_hit_the_pokémon.
62 pure_power using_its_pure_power_the_pokémon_doubles_its_attack_stat.
63 plus boosts_the_sp._atk_stat_of_the_pokémon_if_an_ally_with_the_plus_or_minus_ability_is_also_in_battle.
64 minus boosts_the_sp._atk_stat_of_the_pokémon_if_an_ally_with_the_plus_or_minus_ability_is_also_in_battle.
65 liquid_ooze the_oozed_liquid_has_a_strong_stench_which_damages_attackers_using_any_draining_move.
66 rough_skin this_pokémon_inflicts_damage_with_its_rough_skin_to_the_attacker_on_contact.
67 water_veil the_pokémon_is_covered_with_a_water_veil_which_prevents_the_pokémon_from_getting_a_burn.
68 white_smoke the_pokémon_is_protected_by_its_white_smoke_which_prevents_other_pokémon_from_lowering_its_stats.
69 marvel_scale the_pokémon's_marvelous_scales_boost_the_defense_stat_if_it_has_a_status_condition.
70 forecast the_pokémon_transforms_with_the_weather_to_change_its_type_to_water_fire_or_ice.
71 color_change the_pokémon's_type_becomes_the_type_of_the_move_used_on_it.
72 shell_armor a_hard_shell_protects_the_pokémon_from_critical_hits.
73 clear_body prevents_other_pokémon's_moves_or_abilities_from_lowering_the_pokémon's_stats.
74 drizzle the_pokémon_makes_it_rain_when_it_enters_a_battle.
75 drought turns_the_sunlight_harsh_when_the_pokémon_enters_a_battle.
76 air_lock eliminates_the_effects_of_weather.
77 simple the_stat_changes_the_pokémon_receives_are_doubled.
78 mold_breaker moves_can_be_used_on_the_target_regardless_of_its_abilities.
79 anticipation the_pokémon_can_sense_an_opposing_pokémon's_dangerous_moves.
80 honey_gather the_pokémon_may_gather_honey_after_a_battle.
81 flower_gift boosts_the_attack_and_sp._def_stats_of_itself_and_allies_in_harsh_sunlight.
82 sticky_hold items_held_by_the_pokémon_are_stuck_fast_and_cannot_be_removed_by_other_pokémon.
83 technician powers_up_the_pokémon's_weaker_moves.
84 aftermath damages_the_attacker_if_it_contacts_the_pokémon_with_a_finishing_hit.
85 stench by_releasing_stench_when_attacking_this_pokémon_may_cause_the_target_to_flinch.
86 steadfast the_pokémon's_determination_boosts_the_speed_stat_each_time_the_pokémon_flinches.
87 snow_warning the_pokémon_summons_a_hailstorm_when_it_enters_a_battle.
88 motor_drive boosts_its_speed_stat_if_hit_by_an_electric-type_move_instead_of_taking_damage.
89 leaf_guard prevents_status_conditions_in_harsh_sunlight.
90 snow_cloak boosts_evasiveness_in_a_hailstorm.
91 adaptability powers_up_moves_of_the_same_type_as_the_pokémon.
92 slow_start for_five_turns_the_pokémon's_attack_and_speed_stats_are_halved.
93 bad_dreams reduces_the_hp_of_sleeping_opposing_pokémon.
94 multitype changes_the_pokémon's_type_to_match_the_plate_or_z-crystal_it_holds.
95 victory_star boosts_the_accuracy_of_its_allies_and_itself.
96 gluttony makes_the_pokémon_eat_a_held_berry_when_its_hp_drops_to_half_or_less_which_is_sooner_than_usual.
97 forewarn when_it_enters_a_battle_the_pokémon_can_tell_one_of_the_moves_an_opposing_pokémon_has.
98 big_pecks protects_the_pokémon_from_defense-lowering_effects.
99 unaware when_attacking_the_pokémon_ignores_the_target_pokémon's_stat_changes.
100 sand_rush boosts_the_pokémon's_speed_stat_in_a_sandstorm.
101 healer sometimes_heals_an_ally's_status_condition.
102 prankster gives_priority_to_a_status_move.
103 reckless powers_up_moves_that_have_recoil_damage.
104 sheer_force removes_additional_effects_to_increase_the_power_of_moves_when_attacking.
105 wonder_skin makes_status_moves_more_likely_to_miss.
106 mummy contact_with_the_pokémon_changes_the_attacker's_ability_to_mummy.
107 solid_rock reduces_the_power_of_supereffective_attacks_taken.
108 defeatist halves_the_pokémon's_attack_and_sp._atk_stats_when_its_hp_becomes_half_or_less.
109 illusion comes_out_disguised_as_the_pokémon_in_the_party's_last_spot.
110 frisk when_it_enters_a_battle_the_pokémon_can_check_an_opposing_pokémon's_held_item.
111 overcoat protects_the_pokémon_from_things_like_sand_hail_and_powder.
112 ice_body the_pokémon_gradually_regains_hp_in_a_hailstorm.
113 iron_barbs inflicts_damage_on_the_attacker_upon_contact_with_iron_barbs.
114 telepathy anticipates_an_ally's_attack_and_dodges_it.
115 iron_fist powers_up_punching_moves.
116 defiant boosts_the_pokémon's_attack_stat_sharply_when_its_stats_are_lowered.
117 justified being_hit_by_a_dark-type_move_boosts_the_attack_stat_of_the_pokémon_for_justice.
118 turboblaze moves_can_be_used_on_the_target_regardless_of_its_abilities.
119 teravolt moves_can_be_used_on_the_target_regardless_of_its_abilities.
120 sand_force boosts_the_power_of_rock-_ground-_and_steel-type_moves_in_a_sandstorm.
121 download compares_an_opposing_pokémon's_defense_and_sp._def_stats_before_raising_its_own_attack_or_sp._atk_stat—whichever_will_be_more_effective.
122 flower_veil ally_grass-type_pokémon_are_protected_from_status_conditions_and_the_lowering_of_their_stats.
123 sap_sipper boosts_the_attack_stat_if_hit_by_a_grass-type_move_instead_of_taking_damage.
124 fur_coat halves_the_damage_from_physical_moves.
125 stance_change the_pokémon_changes_its_form_to_blade_forme_when_it_uses_an_attack_move_and_changes_to_shield_forme_when_it_uses_king's_shield.
126 sweet_veil prevents_itself_and_ally_pokémon_from_falling_asleep.
127 tough_claws powers_up_moves_that_make_direct_contact._
128 mega_launcher powers_up_aura_and_pulse_moves._
129 dry_skin restores_hp_in_rain_or_when_hit_by_water-type_moves._reduces_hp_in_harsh_sunlight_and_increases_the_damage_received_from_fire-type_moves.
130 strong_jaw the_pokémon's_strong_jaw_boosts_the_power_of_its_biting_moves.
131 refrigerate normal-type_moves_become_ice-type_moves._the_power_of_those_moves_is_boosted_a_little.
132 cheek_pouch restores_hp_as_well_when_the_pokémon_eats_a_berry.
133 fairy_aura powers_up_each_pokémon's_fairy-type_moves.
134 dark_aura powers_up_each_pokémon's_dark-type_moves.
135 aura_break the_effects_of_aura_abilities_are_reversed_to_lower_the_power_of_affected_moves.
136 magician the_pokémon_steals_the_held_item_of_a_pokémon_it_hits_with_a_move.
137 stakeout doubles_the_damage_dealt_to_the_target's_replacement_if_the_target_switches_out.
138 battery powers_up_ally_pokémon's_special_moves.
139 dancer when_another_pokémon_uses_a_dance_move_it_can_use_a_dance_move_following_it_regardless_of_its_speed.
140 schooling when_it_has_a_lot_of_hp_the_pokémon_forms_a_powerful_school._it_stops_schooling_when_its_hp_is_low.__doesn't_work_until_level_20.
141 merciless the_pokémon's_attacks_become_critical_hits_if_the_target_is_poisoned.
142 water_bubble lowers_the_power_of_fire-type_moves_done_to_the_pokémon_and_prevents_the_pokémon_from_getting_a_burn.
143 corrosion the_pokémon_can_poison_the_target_even_if_it's_a_steel_or_poison_type.
144 fluffy halves_the_damage_taken_from_moves_that_make_direct_contact_but_doubles_that_of_fire-type_moves.
145 receiver the_pokémon_copies_the_ability_of_a_defeated_ally.
146 wimp_out the_pokémon_cowardly_switches_out_when_its_hp_becomes_half_or_less.
147 emergency_exit the_pokémon_sensing_danger_switches_out_when_its_hp_becomes_half_or_less.
148 water_compaction boosts_the_pokémon's_defense_stat_sharply_when_hit_by_a_water-type_move.
149 innards_out damages_the_attacker_landing_the_finishing_hit_by_the_amount_equal_to_its_last_hp.
150 rks_system changes_the_pokémon's_type_to_match_the_memory_disc_it_holds.
151 shields_down when_its_hp_becomes_half_or_less_the_pokémon's_shell_breaks_and_it_becomes_aggressive.
152 comatose it's_always_drowsing_and_will_never_wake_up._it_can_attack_without_waking_up.
153 disguise once_per_battle_the_shroud_that_covers_the_pokémon_can_protect_it_from_an_attack.
154 dazzling surprises_the_opposing_pokémon_making_it_unable_to_attack_using_priority_moves.
155 berserk boosts_the_pokémon's_sp._atk_stat_when_it_takes_a_hit_that_causes_its_hp_to_become_half_or_less.
156 steelworker powers_up_steel-type_moves.
157 bulletproof protects_the_pokémon_from_some_ball_and_bomb_moves.
158 electric_surge turns_the_ground_into_electric_terrain_when_the_pokémon_enters_a_battle.
159 psychic_surge turns_the_ground_into_psychic_terrain_when_the_pokémon_enters_a_battle.
160 grassy_surge turns_the_ground_into_grassy_terrain_when_the_pokémon_enters_a_battle.
161 misty_surge turns_the_ground_into_misty_terrain_when_the_pokémon_enters_a_battle.
162 full_metal_body prevents_other_pokémon's_moves_or_abilities_from_lowering_the_pokémon's_stats.
163 shadow_shield reduces_the_amount_of_damage_the_pokémon_takes_while_its_hp_is_full.
164 beast_boost the_pokémon_boosts_its_most_proficient_stat_each_time_it_knocks_out_a_pokémon.
165 prism_armor reduces_the_power_of_supereffective_attacks_taken.
166 soul-heart boosts_its_sp._atk_stat_every_time_a_pokémon_faints.
167 tangled_feet raises_evasiveness_if_the_pokémon_is_confused.
168 weak_armor physical_attacks_to_the_pokémon_lower_its_defense_stat_but_sharply_raise_its_speed_stat.
169 power_spot just_being_next_to_the_pokémon_powers_up_moves.
170 light_metal halves_the_pokémon's_weight.
171 hunger_switch the_pokémon_changes_its_form_alternating_between_its_full_belly_mode_and_hangry_mode_after_the_end_of_each_turn.
172 intrepid_sword boosts_the_pokémon's_attack_stat_when_the_pokémon_enters_a_battle.
173 dauntless_shield boosts_the_pokémon's_defense_stat_when_the_pokémon_enters_a_battle.
174 wandering_spirit the_pokémon_exchanges_abilities_with_a_pokémon_that_hits_it_with_a_move_that_makes_direct_contact.
175 ice_face the_pokémon's_ice_head_can_take_a_physical_attack_as_a_substitute_but_the_attack_also_changes_the_pokémon's_appearance._the_ice_will_be_restored_when_it_hails.
176 cotton_down when_the_pokémon_is_hit_by_an_attack_it_scatters_cotton_fluff_around_and_lowers_the_speed_stat_of_all_pokémon_except_itself.
177 ball_fetch if_the_pokémon_is_not_holding_an_item_it_will_fetch_the_poke_ball_from_the_first_failed_throw_of_the_battle.
178 steam_engine boosts_the_pokémon's_speed_stat_drastically_if_hit_by_a_fire-_or_water-type_move.
179 ripen ripens_berries_and_doubles_their_effect.
180 sand_spit the_pokémon_creates_a_sandstorm_when_it's_hit_by_an_attack.
181 gulp_missile when_the_pokémon_uses_surf_or_dive_it_will_come_back_with_prey._when_it_takes_damage_it_will_spit_out_the_prey_to_attack.
182 transistor powers_up_electric-type_moves.
183 dragon's_maw powers_up_dragon-type_moves.
184 chilling_neigh when_the_pokémon_knocks_out_a_target_it_utters_a_chilling_neigh_which_boosts_its_attack_stat.
185 grim_neigh when_the_pokémon_knocks_out_a_target_it_utters_a_terrifying_neigh_which_boosts_its_special_attack_stat.
186 NULL NULL
187 magic_bounce reflects_status_moves_instead_of_getting_hit_by_them.
188 magic_guard the_pokémon_only_takes_damage_from_attacks.
189 competitive boosts_the_sp._atk_stat_sharply_when_a_stat_is_lowered.
190 tinted_lens the_pokémon_can_use_not_very_effective_moves_to_deal_regular_damage.
191 arena_trap prevents_opposing_pokémon_from_fleeing.
192 cloud_nine eliminates_the_effects_of_weather.
193 scrappy the_pokémon_can_hit_ghost-type_pokémon_with_normal-_and_fighting-type_moves.
194 sniper powers_up_moves_if_they_become_critical_hits_when_attacking.
195 filter reduces_the_power_of_supereffective_attacks_taken.
196 anger_point the_pokémon_is_angered_when_it_takes_a_critical_hit_and_that_maxes_its_attack_stat.
197 huge_power doubles_the_pokémon's_attack_stat.
198 solar_power boosts_the_sp._atk_stat_in_harsh_sunlight_but_hp_decreases_every_turn.
199 super_luck the_pokémon_is_so_lucky_that_the_critical-hit_ratios_of_its_moves_are_boosted.
200 quick_feet boosts_the_speed_stat_if_the_pokémon_has_a_status_condition.
201 rain_dish the_pokémon_gradually_regains_hp_in_rain._
202 poison_heal restores_hp_if_the_pokémon_is_poisoned_instead_of_losing_hp.
203 normalize all_the_pokémon's_moves_become_normal_type._the_power_of_those_moves_is_boosted_a_little.
204 stall the_pokémon_moves_after_all_other_pokémon_do.
205 storm_drain draws_in_all_water-type_moves._instead_of_being_hit_by_water-type_moves_it_boosts_its_sp._atk.
206 unburden boosts_the_speed_stat_if_the_pokémon's_held_item_is_used_or_lost.
207 klutz the_pokémon_can't_use_any_held_items.
208 heatproof the_heatproof_body_of_the_pokémon_halves_the_damage_from_fire-type_moves_that_hit_it.
209 regenerator restores_a_little_hp_when_withdrawn_from_battle.
210 poison_touch may_poison_a_target_when_the_pokémon_makes_contact.
211 infiltrator passes_through_the_opposing_pokémon's_barrier_substitute_and_the_like_and_strikes.
212 moxie the_pokémon_shows_moxie_and_that_boosts_the_attack_stat_after_knocking_out_any_pokémon.
213 cursed_body may_disable_a_move_used_on_the_pokémon.
214 slush_rush boosts_the_pokémon's_speed_stat_in_a_hailstorm.
215 contrary makes_stat_changes_have_an_opposite_effect.
216 power_construct other_cells_gather_to_aid_when_its_hp_becomes_half_or_less._then_the_pokémon_changes_its_form_to_complete_forme.
217 skill_link maximizes_the_number_of_times_multistrike_moves_hit.
218 stamina boosts_the_defense_stat_when_hit_by_an_attack.
219 queenly_majesty its_majesty_pressures_the_opposing_pokémon_making_it_unable_to_attack_using_priority_moves.
220 triage gives_priority_to_a_healing_move.
221 screen_cleaner when_the_pokémon_enters_a_battle_the_effects_of_light_screen_reflect_and_aurora_veil_are_nullified_for_both_opposing_and_ally_pokémon.
222 heavy_metal doubles_the_pokémon's_weight.
223 imposter the_pokémon_transforms_itself_into_the_pokémon_it's_facing.
224 analytic boosts_move_power_when_the_pokémon_moves_last.
225 friend_guard reduces_damage_done_to_allies.
226 steely_spirit powers_up_ally_pokémon's_steel-type_moves.
227 harvest may_create_another_berry_after_one_is_used.
228 multiscale reduces_the_amount_of_damage_the_pokémon_takes_while_its_hp_is_full.
229 pickpocket steals_an_item_from_an_attacker_that_made_direct_contact.
230 moody raises_one_stat_sharply_and_lowers_another_every_turn.
231 toxic_boost powers_up_physical_attacks_when_the_pokémon_is_poisoned.
232 protean changes_the_pokémon's_type_to_the_type_of_the_move_it's_about_to_use.
233 flare_boost powers_up_special_attacks_when_the_pokémon_is_burned.
234 symbiosis the_pokémon_passes_its_item_to_an_ally_that_has_used_up_an_item.
235 zen_mode changes_the_pokémon's_shape_when_hp_is_half_or_less.
236 gale_wings gives_priority_to_flying-type_moves_when_the_pokémon's_hp_is_full.
237 grass_pelt boosts_the_pokémon's_defense_stat_on_grassy_terrain.
238 aroma_veil protects_itself_and_its_allies_from_attacks_that_limit_their_move_choices.
239 pixilate normal-type_moves_become_fairy-type_moves._the_power_of_those_moves_is_boosted_a_little.
240 gooey contact_with_the_pokémon_lowers_the_attacker's_speed_stat.
241 long_reach the_pokémon_uses_its_moves_without_making_contact_with_the_target.
242 liquid_voice all_sound-based_moves_become_water-type_moves.
243 perish_body when_hit_by_a_move_that_makes_direct_contact_the_pokémon_and_the_attacker_will_faint_after_three_turns_unless_they_switch_out_of_battle.
244 stalwart ignores_the_effects_of_opposing_pokémon's_abilities_and_moves_that_draw_in_moves.
245 libero changes_the_pokémon's_type_to_the_type_of_the_move_it's_about_to_use.
246 mirror_armor bounces_back_only_the_stat-lowering_effects_that_the_pokémon_receives.
247 ice_scales the_pokémon_is_protected_by_ice_scales_which_halve_the_damage_taken_from_special_moves.
248 propeller_tail ignores_the_effects_of_opposing_pokémon's_abilities_and_moves_that_draw_in_moves.
\.
--
-- Data for Name: egg_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.egg_groups (id, egg_group) FROM stdin;
0 amorphous
1 bug
2 ditto
3 dragon
4 fairy
5 field
6 flying
7 grass
8 human-like
9 mineral
10 monster
11 undiscovered
12 water_1
13 water_2
14 water_3
15 NULL
\.
--
-- Data for Name: games; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.games (id, game) FROM stdin;
0 black_/_white
1 diamond_/_pearl
2 gold_/_silver_/_crystal
3 let's_go_pikachu_/_let's_go_eevee
4 red_/_blue_/_yellow
5 ruby_/_sapphire
6 sun_/_moon
7 sword_/_shield
8 ultra_sun_/_ultra_moon
9 x_/_y
\.
--
-- Data for Name: legendaries; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.legendaries (id, legendary_status) FROM stdin;
0 NULL
1 legendary
2 mythical
3 sub-legendary
\.
--
-- Data for Name: pokemon; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.pokemon (id, pokedex_number, pokemon_name, is_legendary, type1_id, type2_id, ability1_id, ability2_id, hidden_ability, health, attack, defense, special_attack, special_defense, speed, region_id, catch_rate, male_percent, game_id, egg_group1_id, egg_group2_id) FROM stdin;
0 1 bulbasaur 0 10 14 0 186 23 45 49 49 65 0 45 5 45 87.5 4 10 7
1 2 ivysaur 0 10 14 0 186 23 60 62 63 80 0 60 5 45 87.5 4 10 7
2 3 venusaur 0 10 14 0 186 23 80 82 83 100 0 80 5 45 87.5 4 10 7
3 4 charmander 0 7 0 1 186 198 39 52 43 50 0 65 5 45 87.5 4 10 3
4 5 charmeleon 0 7 0 1 186 198 58 64 58 65 0 80 5 45 87.5 4 10 3
5 6 charizard 0 7 8 1 186 198 78 84 78 85 0 100 5 45 87.5 4 10 3
6 7 squirtle 0 18 0 2 186 201 44 48 65 50 0 43 5 45 87.5 4 10 12
7 8 wartortle 0 18 0 2 186 201 59 63 80 65 0 58 5 45 87.5 4 10 12
8 9 blastoise 0 18 0 2 186 201 79 83 100 85 0 78 5 45 87.5 4 10 12
9 848 toxel 0 4 14 3 29 207 40 38 35 54 35 40 1 75 50.0 7 11 15
10 849 toxtricity 0 4 14 4 63 83 75 98 70 114 70 75 1 45 50.0 7 8 15
11 30 nidorina 0 14 0 5 6 49 70 62 67 55 0 56 5 120 0.0 4 11 15
12 31 nidoqueen 0 14 11 5 6 104 90 92 87 75 85 76 5 45 0.0 4 11 15
13 392 infernape 0 7 6 1 186 115 76 104 71 104 71 108 6 45 87.5 1 5 8
14 403 shinx 0 4 0 6 28 55 45 65 34 40 34 45 6 235 50.0 1 5 15
15 404 luxio 0 4 0 6 28 55 60 85 49 60 49 60 6 120 50.0 1 5 15
16 405 luxray 0 4 0 6 28 55 80 120 79 95 79 70 6 45 50.0 1 5 15
17 11 metapod 0 1 0 7 186 186 50 20 55 25 0 30 5 120 50.0 4 1 15
18 12 butterfree 0 1 8 8 186 190 60 45 50 90 80 70 5 45 50.0 4 1 15
19 679 honedge 0 17 9 9 186 186 45 80 100 35 37 28 4 180 50.0 9 9 15
20 680 doublade 0 17 9 9 186 186 59 110 150 45 49 35 4 90 50.0 9 9 15
21 15 beedrill 0 1 14 10 186 194 65 90 40 45 80 75 5 45 50.0 4 1 15
22 132 ditto 0 13 0 11 186 223 48 48 48 48 0 48 5 35 0.0 4 2 15
23 14 kakuna 0 1 14 7 186 186 45 25 50 25 0 35 5 120 50.0 4 1 15
24 13 weedle 0 1 14 12 186 27 40 35 30 20 0 50 5 255 50.0 4 1 15
25 10 caterpie 0 1 0 12 186 27 45 30 35 20 0 45 5 255 50.0 4 1 15
26 29 nidoran_f 0 14 0 5 6 49 55 47 52 40 0 41 5 235 0.0 4 10 5
27 390 chimchar 0 7 0 1 186 115 44 58 44 58 44 61 6 45 87.5 1 5 8
28 391 monferno 0 7 6 1 186 115 64 78 52 78 52 81 6 45 87.5 1 5 8
29 489 phione 2 18 0 13 186 186 80 80 80 80 80 80 6 30 0.0 1 12 4
30 490 manaphy 2 18 0 13 186 186 100 100 100 100 100 100 6 3 0.0 1 12 4
31 891 kubfu 3 6 0 14 186 186 60 90 60 53 50 72 1 3 87.5 7 11 15
32 892 urshifu 3 6 2 15 186 186 100 130 100 63 60 97 1 3 87.5 7 11 15
33 898 calyrex 1 15 10 16 186 186 100 80 80 80 80 80 1 3 0.0 7 11 15
34 151 mew 2 15 0 17 186 186 100 100 100 100 0 100 5 45 0.0 4 11 15
35 150 mewtwo 1 15 0 18 186 16 106 110 90 154 0 130 5 3 0.0 4 11 15
36 81 magnemite 0 4 17 19 51 224 25 35 70 95 0 45 5 190 0.0 4 9 15
37 100 voltorb 0 4 0 20 29 84 40 30 50 55 0 100 5 190 0.0 4 9 15
38 32 nidoran_m 0 14 0 5 6 49 46 57 40 40 0 50 5 235 100.0 4 10 5
39 33 nidorino 0 14 0 5 6 49 61 72 57 55 0 65 5 120 100.0 4 10 5
40 34 nidoking 0 14 11 5 6 104 81 102 77 85 75 85 5 45 100.0 4 10 5
41 173 cleffa 0 5 0 21 187 225 50 25 28 45 55 15 3 150 25.0 2 11 15
42 35 clefairy 0 5 0 21 188 225 70 45 48 60 0 35 5 150 25.0 4 4 15
43 36 clefable 0 5 0 21 188 99 95 70 73 95 90 60 5 25 25.0 4 4 15
44 37 vulpix 0 7 0 22 186 75 38 41 40 65 0 65 5 190 25.0 4 5 15
45 38 ninetales 0 7 0 22 186 75 73 76 75 100 0 100 5 75 25.0 4 5 15
46 174 igglybuff 0 13 5 21 189 225 90 30 15 40 20 15 3 170 25.0 2 11 15
47 39 jigglypuff 0 13 5 21 189 225 115 45 20 25 0 20 5 170 25.0 4 4 15
48 40 wigglytuff 0 13 5 21 189 110 140 70 45 85 50 45 5 50 25.0 4 4 15
49 41 zubat 0 14 8 14 186 211 40 45 35 40 0 55 5 255 50.0 4 6 15
50 42 golbat 0 14 8 14 186 211 75 80 70 75 0 95 5 90 50.0 4 6 15
51 169 crobat 0 14 8 14 186 211 85 90 80 70 80 130 3 90 50.0 2 6 15
52 43 oddish 0 10 14 23 186 27 45 50 55 75 0 30 5 255 50.0 4 7 15
53 44 gloom 0 10 14 23 186 85 60 65 70 85 0 40 5 120 50.0 4 7 15
54 45 vileplume 0 10 14 23 186 24 75 80 85 110 90 50 5 45 50.0 4 7 15
55 182 bellossom 0 10 0 23 186 101 75 80 95 90 100 50 3 45 50.0 2 7 15
56 46 paras 0 1 10 24 129 32 35 70 55 55 0 25 5 190 50.0 4 1 7
57 47 parasect 0 1 10 24 129 32 60 95 80 80 0 30 5 75 50.0 4 1 7
58 48 venonat 0 1 14 8 190 27 60 55 50 40 0 45 5 190 50.0 4 1 15
59 49 venomoth 0 1 14 12 190 105 70 65 60 90 0 90 5 75 50.0 4 1 15
60 50 diglett 0 11 0 25 191 120 10 55 25 45 0 95 5 255 50.0 4 5 15
61 51 dugtrio 0 11 0 25 191 120 35 100 50 50 70 120 5 50 50.0 4 5 15
62 16 pidgey 0 13 8 26 167 98 40 45 40 35 0 56 5 255 50.0 4 6 15
63 17 pidgeotto 0 13 8 26 167 98 63 60 55 50 0 71 5 120 50.0 4 6 15
64 18 pidgeot 0 13 8 26 167 98 83 80 75 70 70 101 5 45 50.0 4 6 15
65 19 rattata 0 13 0 27 55 49 30 56 35 25 0 72 5 255 50.0 4 5 15
66 20 raticate 0 13 0 27 55 49 55 81 60 50 0 97 5 127 50.0 4 5 15
67 21 spearow 0 13 8 26 186 194 40 60 30 31 0 70 5 255 50.0 4 6 15
68 22 fearow 0 13 8 26 186 194 65 90 65 61 0 100 5 90 50.0 4 6 15
69 23 ekans 0 14 0 28 7 16 35 60 44 40 0 55 5 255 50.0 4 5 3
70 24 arbok 0 14 0 28 7 16 60 95 69 65 79 80 5 90 50.0 4 5 3
71 172 pichu 0 4 0 29 186 36 20 40 15 35 35 60 3 190 50.0 2 11 15
72 25 pikachu 0 4 0 29 186 36 35 55 40 50 0 90 5 190 50.0 4 5 4
73 26 raichu 0 4 0 29 186 36 60 90 55 90 80 110 5 75 50.0 4 5 4
74 27 sandshrew 0 11 0 25 186 100 50 75 85 30 0 40 5 255 50.0 4 5 15
75 28 sandslash 0 11 0 25 186 100 75 100 110 55 0 65 5 90 50.0 4 5 15
76 52 meowth 0 13 0 30 83 16 40 45 35 40 0 90 5 255 50.0 4 5 15
77 863 perrserker 0 17 0 31 127 226 70 110 100 50 60 50 1 90 50.0 7 5 15
78 53 persian 0 13 0 11 83 16 65 70 60 65 0 115 5 90 50.0 4 5 15
79 54 psyduck 0 18 0 32 192 39 50 52 48 50 0 55 5 190 50.0 4 12 5
80 101 electrode 0 4 0 20 29 84 60 50 70 80 80 150 5 60 0.0 4 9 15
81 102 exeggcute 0 10 15 23 186 227 60 40 80 60 0 40 5 90 50.0 4 7 15
82 103 exeggutor 0 10 15 23 186 227 95 95 85 125 75 55 5 45 50.0 4 7 15
83 104 cubone 0 11 0 33 36 31 50 50 95 40 0 35 5 190 50.0 4 10 15
84 105 marowak 0 11 0 33 36 31 60 80 110 50 0 45 5 75 50.0 4 10 15
85 106 hitmonlee 0 6 0 11 103 206 50 120 53 35 0 87 5 45 100.0 4 8 15
86 107 hitmonchan 0 6 0 26 115 14 50 105 79 35 0 76 5 45 100.0 4 8 15
87 108 lickitung 0 13 0 34 41 192 90 55 75 60 0 30 5 45 50.0 4 10 15
88 109 koffing 0 14 0 35 186 186 40 65 95 60 0 35 5 190 50.0 4 0 15
89 110 weezing 0 14 0 35 186 186 65 90 120 85 0 60 5 60 50.0 4 0 15
90 111 rhyhorn 0 11 16 36 33 103 80 85 95 30 0 25 5 120 50.0 4 10 5
91 112 rhydon 0 11 16 36 33 103 105 130 120 45 0 40 5 60 50.0 4 10 5
92 113 chansey 0 13 0 37 54 101 250 5 5 105 0 50 5 30 0.0 4 4 15
93 114 tangela 0 10 0 23 89 209 65 55 115 100 0 60 5 45 50.0 4 7 15
94 115 kangaskhan 0 13 0 38 193 14 105 95 80 40 0 90 5 45 0.0 4 10 15
95 116 horsea 0 18 0 39 194 32 30 40 70 70 0 60 5 225 50.0 4 12 3
96 117 seadra 0 18 0 5 194 32 55 65 95 95 0 85 5 75 50.0 4 12 3
97 118 goldeen 0 18 0 39 67 36 45 67 60 50 0 63 5 225 50.0 4 13 15
98 119 seaking 0 18 0 39 67 36 80 92 65 80 0 68 5 60 50.0 4 13 15
99 120 staryu 0 18 0 40 37 224 30 45 55 70 0 85 5 225 0.0 4 14 15
100 121 starmie 0 18 15 40 37 224 60 75 85 100 0 115 5 60 0.0 4 14 15
101 122 mr._mime 0 15 5 20 195 83 40 45 65 100 0 90 5 45 50.0 4 8 15
102 123 scyther 0 1 8 10 83 86 70 110 80 55 0 105 5 45 50.0 4 1 15
103 124 jynx 0 12 15 41 97 129 65 50 35 95 0 95 5 45 0.0 4 8 15
104 125 electabuzz 0 4 0 29 186 58 65 83 57 85 0 105 5 45 75.0 4 8 15
105 126 magmar 0 7 0 42 186 58 65 95 57 85 0 93 5 45 75.0 4 8 15
106 127 pinsir 0 1 0 43 78 212 65 125 100 55 0 85 5 45 50.0 4 1 15
107 128 tauros 0 13 0 28 196 104 75 100 95 70 0 110 5 45 100.0 4 5 15
108 129 magikarp 0 18 0 39 186 3 20 10 55 20 0 80 5 255 50.0 4 13 3
109 130 gyarados 0 18 8 28 186 212 95 125 79 100 0 81 5 45 50.0 4 13 3
110 131 lapras 0 18 12 44 72 13 130 85 80 95 0 60 5 45 50.0 4 10 12
111 133 eevee 0 13 0 27 91 79 55 55 50 65 0 55 5 45 87.5 4 5 15
112 134 vaporeon 0 18 0 44 186 13 130 65 60 110 0 65 5 45 87.5 4 5 15
113 135 jolteon 0 4 0 45 186 200 65 65 60 110 0 130 5 45 87.5 4 5 15
114 136 flareon 0 7 0 22 186 55 65 130 60 110 0 65 5 45 87.5 4 5 15
115 137 porygon 0 13 0 46 121 224 65 60 70 75 0 40 5 45 0.0 4 9 15
116 138 omanyte 0 16 18 39 72 168 35 40 100 90 0 35 5 45 87.5 4 12 14
117 139 omastar 0 16 18 39 72 168 70 60 125 115 0 55 5 45 87.5 4 12 14
118 140 kabuto 0 16 18 39 31 168 30 80 90 45 0 55 5 45 87.5 4 12 14
119 141 kabutops 0 16 18 39 31 168 60 115 105 70 0 80 5 45 87.5 4 12 14
120 142 aerodactyl 0 16 8 33 18 16 80 105 65 60 0 130 5 45 87.5 4 6 15
121 143 snorlax 0 13 0 47 50 96 160 110 65 65 0 30 5 25 87.5 4 10 15
122 144 articuno 3 12 8 18 186 90 90 85 100 125 0 85 5 3 0.0 4 11 15
123 145 zapdos 3 4 8 18 186 29 90 90 85 125 0 100 5 3 0.0 4 11 15
124 146 moltres 3 7 8 18 186 42 90 100 90 125 0 90 5 3 0.0 4 11 15
125 147 dratini 0 3 0 7 186 69 41 64 45 50 0 50 5 45 50.0 4 12 3
126 148 dragonair 0 3 0 7 186 69 61 84 65 70 0 70 5 45 50.0 4 12 3
127 149 dragonite 0 3 8 14 186 228 91 134 95 100 0 80 5 45 50.0 4 12 3
128 152 chikorita 0 10 0 0 186 89 45 49 65 49 65 45 3 45 87.5 2 10 7
129 153 bayleef 0 10 0 0 186 89 60 62 80 63 80 60 3 45 87.5 2 10 7
130 154 meganium 0 10 0 0 186 89 80 82 100 83 100 80 3 45 87.5 2 10 7
131 155 cyndaquil 0 7 0 1 186 22 39 52 43 60 50 65 3 45 87.5 2 5 15
132 156 quilava 0 7 0 1 186 22 58 64 58 80 65 80 3 45 87.5 2 5 15
133 157 typhlosion 0 7 0 1 186 22 78 84 78 109 85 100 3 45 87.5 2 5 15
134 158 totodile 0 18 0 2 186 104 50 65 64 44 48 43 3 45 87.5 2 10 12
135 159 croconaw 0 18 0 2 186 104 65 80 80 59 63 58 3 45 87.5 2 10 12
136 160 feraligatr 0 18 0 2 186 104 85 105 100 79 83 78 3 45 87.5 2 10 12
137 161 sentret 0 13 0 27 26 110 35 46 34 35 45 20 3 255 50.0 2 5 15
138 162 furret 0 13 0 27 26 110 85 76 64 45 55 90 3 90 50.0 2 5 15
139 163 hoothoot 0 13 8 48 26 190 60 30 30 36 56 50 3 255 50.0 2 6 15
140 164 noctowl 0 13 8 48 26 190 100 50 50 86 96 70 3 90 50.0 2 6 15
141 165 ledyba 0 1 8 10 38 3 40 20 30 40 80 55 3 255 50.0 2 1 15
142 166 ledian 0 1 8 10 38 115 55 35 50 55 110 85 3 90 50.0 2 1 15
143 167 spinarak 0 1 14 10 48 194 40 60 40 40 40 30 3 255 50.0 2 1 15
144 168 ariados 0 1 14 10 48 194 70 90 70 60 70 40 3 90 50.0 2 1 15
145 170 chinchou 0 18 4 45 40 44 75 38 38 56 56 67 3 190 50.0 2 13 15
146 171 lanturn 0 18 4 45 40 44 125 58 58 76 76 67 3 75 50.0 2 13 15
147 175 togepi 0 5 0 49 54 199 35 20 65 40 65 20 3 190 87.5 2 11 15
148 176 togetic 0 5 8 49 54 199 55 40 85 80 105 40 3 75 87.5 2 6 4
149 177 natu 0 15 8 17 38 187 40 50 45 70 45 70 3 190 50.0 2 6 15
150 178 xatu 0 15 8 17 38 187 65 75 70 95 70 95 3 75 50.0 2 6 15
151 179 mareep 0 4 0 29 186 63 55 40 40 65 45 35 3 235 50.0 2 10 5
152 180 flaaffy 0 4 0 29 186 63 70 55 55 80 60 45 3 120 50.0 2 10 5
153 181 ampharos 0 4 0 29 186 63 90 75 85 115 90 55 3 45 50.0 2 10 5
154 183 marill 0 18 5 50 197 123 70 20 50 20 50 40 3 190 50.0 2 12 4
155 184 azumarill 0 18 5 50 197 123 100 50 80 60 80 50 3 75 50.0 2 12 4
156 185 sudowoodo 0 16 0 51 33 3 70 110 115 30 65 30 3 65 50.0 2 9 15
157 186 politoed 0 18 0 44 32 74 90 75 75 90 100 70 3 45 50.0 2 12 15
158 187 hoppip 0 10 8 23 89 211 35 35 40 35 55 50 3 255 50.0 2 4 7
159 188 skiploom 0 10 8 23 89 211 55 45 50 45 65 80 3 120 50.0 2 4 7
160 189 jumpluff 0 10 8 23 89 211 75 55 70 55 95 110 3 45 50.0 2 4 7
161 190 aipom 0 13 0 27 30 217 55 70 55 40 55 85 3 45 50.0 2 5 15
162 191 sunkern 0 10 0 23 198 38 30 30 30 30 30 30 3 235 50.0 2 7 15
163 192 sunflora 0 10 0 23 198 38 75 75 55 105 85 30 3 120 50.0 2 7 15
164 193 yanma 0 1 8 52 8 110 65 65 45 75 45 95 3 75 50.0 2 1 15
165 194 wooper 0 18 11 32 44 99 55 45 45 25 25 15 3 255 50.0 2 12 5
166 195 quagsire 0 18 11 32 44 99 95 85 85 65 65 35 3 90 50.0 2 12 5
167 196 espeon 0 15 0 17 186 187 65 65 60 130 95 110 3 45 87.5 2 5 15
168 197 umbreon 0 2 0 17 186 14 95 65 110 60 130 65 3 45 87.5 2 5 15
169 198 murkrow 0 2 8 48 199 102 60 85 42 85 42 91 3 30 50.0 2 6 15
170 199 slowking 0 18 15 41 34 209 95 75 80 100 110 30 3 70 50.0 2 10 12
171 200 misdreavus 0 9 0 35 186 186 60 60 60 85 85 85 3 45 50.0 2 0 15
172 201 unown 0 15 0 35 186 186 48 72 48 72 48 48 3 225 0.0 2 11 15
173 202 wobbuffet 0 15 0 53 186 114 190 33 58 33 58 33 3 45 50.0 2 0 15
174 203 girafarig 0 13 15 14 38 123 70 80 65 90 65 85 3 60 50.0 2 5 15
175 204 pineco 0 1 0 51 186 111 50 65 90 35 35 15 3 190 50.0 2 1 15
176 205 forretress 0 1 17 51 186 111 75 90 140 60 60 40 3 75 50.0 2 1 15
177 206 dunsparce 0 13 0 54 27 3 100 70 70 65 65 45 3 190 50.0 2 5 15
178 207 gligar 0 11 8 43 25 47 65 75 105 35 65 85 3 60 50.0 2 1 15
179 208 steelix 0 17 11 33 51 104 75 85 200 55 65 30 3 25 50.0 2 9 15
180 209 snubbull 0 5 0 28 27 3 60 80 50 40 40 30 3 190 25.0 2 5 4
181 210 granbull 0 5 0 28 200 3 90 120 75 60 60 45 3 75 25.0 2 5 4
182 211 qwilfish 0 18 14 5 39 28 65 95 85 55 55 85 3 45 50.0 2 13 15
183 212 scizor 0 1 17 10 83 170 70 130 100 55 80 65 3 25 50.0 2 1 15
184 213 shuckle 0 1 16 51 96 215 20 10 230 10 230 5 3 190 50.0 2 1 15
185 214 heracross 0 1 6 10 55 212 80 125 75 40 95 85 3 45 50.0 2 1 15
186 215 sneasel 0 2 12 14 26 229 55 95 55 35 75 115 3 60 50.0 2 5 15
187 216 teddiursa 0 13 0 30 200 80 60 80 50 50 50 40 3 120 50.0 2 5 15
188 217 ursaring 0 13 0 55 200 16 90 130 75 75 75 55 3 60 50.0 2 5 15
189 218 slugma 0 7 0 56 42 168 40 40 40 70 40 20 3 190 50.0 2 0 15
190 219 magcargo 0 7 16 56 42 168 60 50 120 90 80 30 3 75 50.0 2 0 15
191 220 swinub 0 12 11 41 90 50 50 50 40 30 30 50 3 225 50.0 2 5 15
192 221 piloswine 0 12 11 41 90 50 100 100 80 60 60 50 3 75 50.0 2 5 15
193 222 corsola 0 18 16 49 37 209 65 55 95 65 95 35 3 60 25.0 2 12 14
194 223 remoraid 0 18 0 49 194 230 35 65 35 65 35 65 3 190 50.0 2 12 13
195 224 octillery 0 18 0 57 194 230 75 105 75 105 75 45 3 75 50.0 2 12 13
196 225 delibird 0 12 8 58 186 48 45 55 45 65 45 75 3 45 50.0 2 12 5
197 226 mantine 0 18 8 39 44 67 85 40 70 80 140 70 3 25 50.0 2 12 15
198 227 skarmory 0 17 8 26 51 168 65 80 140 40 70 70 3 25 50.0 2 6 15
199 228 houndour 0 2 7 38 22 16 45 60 30 80 50 65 3 120 50.0 2 5 15
200 229 houndoom 0 2 7 38 22 16 75 90 50 110 80 95 3 45 50.0 2 5 15
201 230 kingdra 0 18 3 39 194 32 75 95 95 95 95 85 3 45 50.0 2 12 3
202 231 phanpy 0 11 0 30 186 25 90 60 60 40 40 40 3 120 50.0 2 5 15
203 232 donphan 0 11 0 51 186 25 90 120 120 60 60 50 3 60 50.0 2 5 15
204 233 porygon2 0 13 0 46 121 224 85 80 90 105 95 60 3 45 0.0 2 9 15
205 234 stantler 0 13 0 28 110 123 73 95 62 85 65 85 3 45 50.0 2 5 15
206 235 smeargle 0 13 0 34 83 230 55 20 35 20 45 75 3 45 50.0 2 5 15
207 236 tyrogue 0 6 0 55 86 58 35 35 35 35 35 35 3 75 100.0 2 11 15
208 237 hitmontop 0 6 0 28 83 86 50 95 95 35 110 70 3 45 100.0 2 8 15
209 238 smoochum 0 12 15 41 97 13 45 30 15 85 65 65 3 45 0.0 2 11 15
210 239 elekid 0 4 0 29 186 58 45 63 37 65 55 95 3 45 75.0 2 11 15
211 240 magby 0 7 0 42 186 58 45 75 37 70 55 83 3 45 75.0 2 11 15
212 241 miltank 0 13 0 50 193 123 95 80 105 40 70 100 3 45 0.0 2 5 15
213 242 blissey 0 13 0 37 54 101 255 10 10 75 135 55 3 30 0.0 2 4 15
214 243 raikou 3 4 0 18 186 186 90 85 75 115 100 115 3 3 0.0 2 11 15
215 244 entei 3 7 0 18 186 14 115 115 85 90 75 100 3 3 0.0 2 11 15
216 245 suicune 3 18 0 18 186 14 100 75 115 90 115 85 3 3 0.0 2 11 15
217 246 larvitar 0 16 11 55 186 25 50 64 50 45 50 41 3 45 50.0 2 10 15
218 247 pupitar 0 16 11 7 186 186 70 84 70 65 70 51 3 45 50.0 2 10 15
219 248 tyranitar 0 16 2 59 186 16 100 134 110 95 100 61 3 45 50.0 2 10 15
220 249 lugia 1 15 8 18 186 228 106 90 130 90 154 110 3 3 0.0 2 11 15
221 250 ho-oh 1 7 8 18 186 209 106 130 90 110 154 90 3 3 0.0 2 11 15
222 251 celebi 2 15 10 37 186 186 100 100 100 100 100 100 3 45 0.0 2 11 15
223 252 treecko 0 10 0 0 186 206 40 45 35 65 55 70 2 45 87.5 5 10 3
224 253 grovyle 0 10 0 0 186 206 50 65 45 85 65 95 2 45 87.5 5 10 3
225 254 sceptile 0 10 0 0 186 206 70 85 65 105 85 120 2 45 87.5 5 10 3
226 255 torchic 0 7 0 1 186 52 45 60 40 70 50 45 2 45 87.5 5 5 15
227 256 combusken 0 7 6 1 186 52 60 85 60 85 60 55 2 45 87.5 5 5 15
228 257 blaziken 0 7 6 1 186 52 80 120 70 110 70 80 2 45 87.5 5 5 15
229 258 mudkip 0 18 0 2 186 32 50 70 50 50 50 40 2 45 87.5 5 10 12
230 259 marshtomp 0 18 11 2 186 32 70 85 70 60 70 50 2 45 87.5 5 10 12
231 260 swampert 0 18 11 2 186 32 100 110 90 85 90 60 2 45 87.5 5 10 12
232 261 poochyena 0 2 0 27 200 3 35 55 35 30 30 35 2 255 50.0 5 5 15
233 262 mightyena 0 2 0 28 200 212 70 90 70 60 60 70 2 127 50.0 5 5 15
234 263 zigzagoon 0 13 0 30 96 200 38 30 41 30 41 60 2 255 50.0 5 5 15
235 264 linoone 0 13 0 30 96 200 78 70 61 50 61 100 2 90 50.0 5 5 15
236 265 wurmple 0 1 0 12 186 27 45 45 35 20 30 20 2 255 50.0 5 1 15
237 266 silcoon 0 1 0 7 186 186 50 35 55 25 25 15 2 120 50.0 5 1 15
238 267 beautifly 0 1 8 10 186 6 60 70 50 100 50 65 2 45 50.0 5 1 15
239 268 cascoon 0 1 0 7 186 186 50 35 55 25 25 15 2 120 50.0 5 1 15
240 269 dustox 0 1 14 12 186 8 60 50 70 50 90 65 2 45 50.0 5 1 15
241 270 lotad 0 18 10 39 201 34 40 30 30 40 50 30 2 255 50.0 5 12 7
242 271 lombre 0 18 10 39 201 34 60 50 50 60 70 50 2 120 50.0 5 12 7
243 272 ludicolo 0 18 10 39 201 34 80 70 70 90 100 70 2 45 50.0 5 12 7
244 273 seedot 0 10 0 23 38 229 40 40 50 30 30 30 2 255 50.0 5 5 7
245 274 nuzleaf 0 10 2 23 38 229 70 70 40 60 40 60 2 120 50.0 5 5 7
246 275 shiftry 0 10 2 23 38 229 90 100 60 90 60 80 2 45 50.0 5 4 7
247 276 taillow 0 13 8 55 186 193 40 55 30 30 30 85 2 200 50.0 5 6 15
248 277 swellow 0 13 8 55 186 193 60 85 60 75 50 125 2 45 50.0 5 6 15
249 278 wingull 0 18 8 26 13 201 40 30 30 55 30 85 2 190 50.0 5 12 6
250 279 pelipper 0 18 8 26 74 201 60 50 100 95 70 65 2 45 50.0 5 12 6
251 280 ralts 0 15 5 17 46 114 28 25 25 45 35 40 2 235 50.0 5 8 0
252 281 kirlia 0 15 5 17 46 114 38 35 35 65 55 50 2 120 50.0 5 8 0
253 282 gardevoir 0 15 5 17 46 114 68 65 65 125 115 80 2 45 50.0 5 8 0
254 283 surskit 0 1 18 39 186 201 40 30 32 50 52 65 2 200 50.0 5 12 1
255 284 masquerain 0 1 8 28 186 16 70 60 62 100 82 80 2 75 50.0 5 12 1
256 285 shroomish 0 10 0 24 202 200 60 40 60 40 60 35 2 255 50.0 5 4 7
257 286 breloom 0 10 6 24 202 83 60 130 80 60 60 70 2 90 50.0 5 4 7
258 287 slakoth 0 13 0 60 186 186 60 60 60 35 35 30 2 255 50.0 5 5 15
259 288 vigoroth 0 13 0 58 186 186 80 80 80 55 55 90 2 120 50.0 5 5 15
260 289 slaking 0 13 0 60 186 186 150 160 100 95 65 100 2 45 50.0 5 5 15
261 290 nincada 0 1 11 8 186 27 31 45 90 30 30 40 2 255 50.0 5 1 15
262 291 ninjask 0 1 8 52 186 211 61 90 45 50 50 160 2 120 50.0 5 1 15
263 292 shedinja 0 1 9 61 186 186 1 90 45 30 30 40 2 45 0.0 5 9 15
264 293 whismur 0 13 0 20 186 3 64 51 23 51 23 28 2 190 50.0 5 10 5
265 294 loudred 0 13 0 20 186 193 84 71 43 71 43 48 2 120 50.0 5 10 5
266 295 exploud 0 13 0 20 186 193 104 91 63 91 73 68 2 45 50.0 5 10 5
267 296 makuhita 0 6 0 50 55 104 72 60 30 20 30 25 2 180 75.0 5 8 15
268 297 hariyama 0 6 0 50 55 104 144 120 60 40 60 50 2 200 75.0 5 8 15
269 298 azurill 0 13 5 50 197 123 50 20 40 20 40 20 2 150 25.0 5 11 15
270 299 nosepass 0 16 0 51 19 120 30 45 135 45 90 30 2 255 50.0 5 9 15
271 300 skitty 0 13 0 21 203 105 50 45 45 35 35 50 2 255 25.0 5 5 4
272 301 delcatty 0 13 0 21 203 105 70 65 65 55 55 90 2 60 25.0 5 5 4
273 302 sableye 0 2 9 26 204 102 50 75 75 65 65 50 2 45 50.0 5 8 15
274 303 mawile 0 17 5 43 28 104 50 85 85 55 55 50 2 45 50.0 5 5 4
275 304 aron 0 17 16 51 33 222 50 70 100 40 40 30 2 180 50.0 5 10 15
276 305 lairon 0 17 16 51 33 222 60 90 140 50 50 40 2 90 50.0 5 10 15
277 306 aggron 0 17 16 51 33 222 70 110 180 60 60 50 2 45 50.0 5 10 15
278 307 meditite 0 6 15 62 186 114 30 40 55 40 55 60 2 180 50.0 5 8 15
279 308 medicham 0 6 15 62 186 114 60 60 75 60 75 80 2 90 50.0 5 8 15
280 309 electrike 0 4 0 29 36 64 40 45 40 65 40 65 2 120 50.0 5 5 15
281 310 manectric 0 4 0 29 36 64 70 75 60 105 60 105 2 45 50.0 5 5 15
282 311 plusle 0 4 0 63 186 36 60 50 40 85 75 95 2 200 50.0 5 4 15
283 312 minun 0 4 0 64 186 45 60 40 50 75 85 95 2 200 50.0 5 4 15
284 313 volbeat 0 1 0 40 10 102 65 73 75 47 85 85 2 150 100.0 5 1 8
285 314 illumise 0 1 0 41 190 102 65 47 75 73 85 85 2 150 0.0 5 1 8
286 315 roselia 0 10 14 37 5 89 50 60 45 100 80 65 2 150 50.0 5 4 7
287 316 gulpin 0 14 0 65 82 96 70 43 53 43 53 40 2 225 50.0 5 0 15
288 317 swalot 0 14 0 65 82 96 100 73 83 73 83 55 2 75 50.0 5 0 15
289 318 carvanha 0 18 2 66 186 52 45 90 20 65 20 65 2 225 50.0 5 13 15
290 319 sharpedo 0 18 2 66 186 52 70 120 40 95 40 95 2 60 50.0 5 13 15
291 320 wailmer 0 18 0 67 41 18 130 70 35 70 35 60 2 125 50.0 5 5 13
292 321 wailord 0 18 0 67 41 18 170 90 45 90 45 60 2 60 50.0 5 5 13
293 322 numel 0 7 11 41 77 34 60 60 40 65 45 35 2 255 50.0 5 5 15
294 323 camerupt 0 7 11 56 107 196 70 100 70 105 75 40 2 150 50.0 5 5 15
295 324 torkoal 0 7 0 68 75 72 70 85 140 85 70 20 2 90 50.0 5 5 15
296 325 spoink 0 15 0 50 34 96 60 25 35 70 80 60 2 255 50.0 5 5 15
297 326 grumpig 0 15 0 50 34 96 80 45 65 90 110 80 2 60 50.0 5 5 15
298 327 spinda 0 13 0 34 167 215 60 60 60 60 60 60 2 255 50.0 5 5 8
299 328 trapinch 0 11 0 43 191 104 45 100 45 45 45 10 2 255 50.0 5 1 3
300 329 vibrava 0 11 3 35 186 186 50 70 50 50 50 70 2 120 50.0 5 1 3
301 330 flygon 0 11 3 35 186 186 80 100 80 80 80 100 2 45 50.0 5 1 3
302 331 cacnea 0 10 0 25 186 44 50 85 40 85 40 35 2 190 50.0 5 7 8
303 332 cacturne 0 10 2 25 186 44 70 115 60 115 60 55 2 60 50.0 5 7 8
304 333 swablu 0 13 8 37 186 192 45 40 60 40 75 50 2 255 50.0 5 6 3
305 334 altaria 0 3 8 37 186 192 75 70 90 70 105 80 2 45 50.0 5 6 3
306 335 zangoose 0 13 0 47 186 231 73 115 60 60 60 90 2 90 50.0 5 5 15
307 336 seviper 0 14 0 7 186 211 73 100 60 100 60 65 2 90 50.0 5 5 3
308 337 lunatone 0 16 15 35 186 186 90 55 65 95 85 70 2 45 0.0 5 9 15
309 338 solrock 0 16 15 35 186 186 90 95 85 55 65 70 2 45 0.0 5 9 15
310 339 barboach 0 18 11 41 79 13 50 48 43 46 41 60 2 190 50.0 5 13 15
311 340 whiscash 0 18 11 41 79 13 110 78 73 76 71 60 2 75 50.0 5 13 15
312 341 corphish 0 18 0 43 72 91 43 80 65 50 35 35 2 205 50.0 5 12 14
313 342 crawdaunt 0 18 2 43 72 91 63 120 85 90 55 55 2 155 50.0 5 12 14
314 343 baltoy 0 11 15 35 186 186 40 40 55 40 70 55 2 255 0.0 5 9 15
315 344 claydol 0 11 15 35 186 186 60 70 105 70 120 75 2 90 0.0 5 9 15
316 345 lileep 0 16 10 57 186 205 66 41 77 61 87 23 2 45 87.5 5 14 15
317 346 cradily 0 16 10 57 186 205 86 81 97 81 107 43 2 45 87.5 5 14 15
318 347 anorith 0 16 1 31 186 39 45 95 50 40 50 75 2 45 87.5 5 14 15
319 348 armaldo 0 16 1 31 186 39 75 125 100 70 80 45 2 45 87.5 5 14 15
320 349 feebas 0 18 0 39 41 91 20 15 20 10 55 80 2 255 50.0 5 12 3
321 350 milotic 0 18 0 69 189 21 95 60 79 100 125 81 2 60 50.0 5 12 3
322 351 castform 0 13 0 70 186 186 70 70 70 70 70 70 2 45 50.0 5 4 0
323 352 kecleon 0 13 0 71 186 232 60 90 70 60 120 40 2 200 50.0 5 5 15
324 353 shuppet 0 9 0 48 110 213 44 75 35 63 33 45 2 225 50.0 5 0 15
325 354 banette 0 9 0 48 110 213 64 115 65 83 63 65 2 45 50.0 5 0 15
326 355 duskull 0 9 0 35 186 110 20 40 90 30 90 25 2 190 50.0 5 0 15
327 356 dusclops 0 9 0 18 186 110 40 70 130 60 130 25 2 90 50.0 5 0 15
328 357 tropius 0 10 8 23 198 227 99 68 83 72 87 51 2 200 50.0 5 10 7
329 358 chimecho 0 15 0 35 186 186 75 50 80 95 90 65 2 45 50.0 5 0 15
330 359 absol 0 2 0 18 199 117 65 130 60 75 60 75 2 30 50.0 5 5 15
331 360 wynaut 0 15 0 53 186 114 95 23 48 23 48 23 2 125 50.0 5 11 15
332 361 snorunt 0 12 0 14 112 230 50 50 50 50 50 50 2 190 50.0 5 4 9
333 362 glalie 0 12 0 14 112 230 80 80 80 80 80 80 2 75 50.0 5 4 9
334 363 spheal 0 12 18 50 112 41 70 40 50 55 50 25 2 255 50.0 5 12 5
335 364 sealeo 0 12 18 50 112 41 90 60 70 75 70 45 2 120 50.0 5 12 5
336 365 walrein 0 12 18 50 112 41 110 80 90 95 90 65 2 45 50.0 5 12 5
337 366 clamperl 0 18 0 72 186 3 35 64 85 74 55 32 2 255 50.0 5 12 15
338 367 huntail 0 18 0 39 186 67 55 104 105 94 75 52 2 60 50.0 5 12 15
339 368 gorebyss 0 18 0 39 186 13 55 84 105 114 75 52 2 60 50.0 5 12 15
340 369 relicanth 0 18 16 39 33 51 100 90 130 45 65 55 2 25 87.5 5 12 13
341 370 luvdisc 0 18 0 39 186 13 43 30 55 40 65 97 2 225 25.0 5 13 15
342 371 bagon 0 3 0 33 186 104 45 75 60 40 30 50 2 45 50.0 5 3 15
343 372 shelgon 0 3 0 33 186 111 65 95 100 60 50 50 2 45 50.0 5 3 15
344 373 salamence 0 3 8 28 186 212 95 135 80 110 80 100 2 45 50.0 5 3 15
345 374 beldum 0 17 15 73 186 170 40 55 80 35 60 30 2 3 100.0 5 9 15
346 375 metang 0 17 15 73 186 170 60 75 100 55 80 50 2 3 100.0 5 9 15
347 376 metagross 0 17 15 73 186 170 80 135 130 95 90 70 2 3 100.0 5 9 15
348 377 regirock 3 16 0 73 186 51 80 100 200 50 100 50 2 3 0.0 5 11 15
349 378 regice 3 12 0 73 186 112 80 50 100 100 200 50 2 3 0.0 5 11 15
350 379 registeel 3 17 0 73 186 170 80 75 150 75 150 50 2 3 0.0 5 11 15
351 380 latias 3 3 15 35 186 186 80 80 90 110 130 110 2 3 0.0 5 11 15
352 381 latios 3 3 15 35 186 186 80 90 80 130 110 110 2 3 100.0 5 11 15
353 382 kyogre 1 18 0 74 186 186 100 100 90 150 140 90 2 3 0.0 5 11 15
354 383 groudon 1 11 0 75 186 186 100 150 140 100 90 90 2 3 0.0 5 11 15
355 384 rayquaza 1 3 8 76 186 186 105 150 90 150 90 95 2 45 0.0 5 11 15
356 385 jirachi 2 17 15 54 186 186 100 100 100 100 100 100 2 3 0.0 5 11 15
357 386 deoxys 2 15 0 18 186 186 50 150 50 150 50 150 2 3 0.0 5 11 15
358 387 turtwig 0 10 0 0 186 72 55 68 64 45 55 31 6 45 87.5 1 10 7
359 388 grotle 0 10 0 0 186 72 75 89 85 55 65 36 6 45 87.5 1 10 7
360 389 torterra 0 10 11 0 186 72 95 109 105 75 85 56 6 45 87.5 1 10 7
361 393 piplup 0 18 0 2 186 116 53 51 53 61 56 40 6 45 87.5 1 12 5
362 394 prinplup 0 18 0 2 186 116 64 66 68 81 76 50 6 45 87.5 1 12 5
363 395 empoleon 0 18 17 2 186 116 84 86 88 111 101 60 6 45 87.5 1 12 5
364 396 starly 0 13 8 26 186 103 40 55 30 30 30 60 6 255 50.0 1 6 15
365 397 staravia 0 13 8 28 186 103 55 75 50 40 40 80 6 120 50.0 1 6 15
366 398 staraptor 0 13 8 28 186 103 85 120 70 50 60 100 6 45 50.0 1 6 15
367 399 bidoof 0 13 0 77 99 230 59 45 40 35 40 31 6 255 50.0 1 12 5
368 400 bibarel 0 13 18 77 99 230 79 85 60 55 60 71 6 127 50.0 1 12 5
369 401 kricketot 0 1 0 7 186 27 37 25 41 25 41 25 6 255 50.0 1 1 15
370 402 kricketune 0 1 0 10 186 83 77 85 51 55 51 65 6 45 50.0 1 1 15
371 406 budew 0 10 14 37 5 89 40 30 35 50 70 55 6 255 50.0 1 11 15
372 407 roserade 0 10 14 37 5 83 60 70 65 125 105 90 6 75 50.0 1 4 7
373 408 cranidos 0 16 0 78 186 104 67 125 40 30 30 58 6 45 87.5 1 10 15
374 409 rampardos 0 16 0 78 186 104 97 165 60 65 50 58 6 45 87.5 1 10 15
375 410 shieldon 0 16 17 51 186 20 30 42 118 42 88 30 6 45 87.5 1 10 15
376 411 bastiodon 0 16 17 51 186 20 60 52 168 47 138 30 6 45 87.5 1 10 15
377 412 burmy 0 1 0 7 186 111 40 29 45 29 45 36 6 120 50.0 1 1 15
378 413 wormadam 0 1 10 79 186 111 60 59 85 79 105 36 6 45 0.0 1 1 15
379 414 mothim 0 1 8 10 186 190 70 94 50 94 50 66 6 45 100.0 1 1 15
380 415 combee 0 1 8 80 186 49 30 30 42 30 42 70 6 120 87.5 1 1 15
381 416 vespiquen 0 1 8 18 186 16 70 80 102 80 102 40 6 45 0.0 1 1 15
382 417 pachirisu 0 4 0 27 30 45 60 45 70 45 90 95 6 200 50.0 1 5 4