@pkmn/sim 0.7.46 → 0.7.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/config/formats.js +228 -134
- package/build/cjs/config/formats.js.map +1 -1
- package/build/cjs/data/abilities.js +9 -6
- package/build/cjs/data/abilities.js.map +1 -1
- package/build/cjs/data/aliases.js +3 -3
- package/build/cjs/data/aliases.js.map +1 -1
- package/build/cjs/data/formats-data.js +185 -174
- package/build/cjs/data/formats-data.js.map +1 -1
- package/build/cjs/data/items.js +25 -4
- package/build/cjs/data/items.js.map +1 -1
- package/build/cjs/data/learnsets.js +157 -4
- package/build/cjs/data/learnsets.js.map +1 -1
- package/build/cjs/data/legality.js +260 -50
- package/build/cjs/data/legality.js.map +1 -1
- package/build/cjs/data/mods/gen2/scripts.js +3 -3
- package/build/cjs/data/mods/gen2/scripts.js.map +1 -1
- package/build/cjs/data/mods/gen3/formats-data.js +2 -2
- package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen3/scripts.js +1 -1
- package/build/cjs/data/mods/gen3/scripts.js.map +1 -1
- package/build/cjs/data/mods/gen4/moves.js +4 -4
- package/build/cjs/data/mods/gen4/moves.js.map +1 -1
- package/build/cjs/data/mods/gen5/formats-data.js +1 -1
- package/build/cjs/data/mods/gen5/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen5/moves.js +1 -1
- package/build/cjs/data/mods/gen5/moves.js.map +1 -1
- package/build/cjs/data/moves.js +13 -18
- package/build/cjs/data/moves.js.map +1 -1
- package/build/cjs/data/pokedex.js +39 -3
- package/build/cjs/data/pokedex.js.map +1 -1
- package/build/cjs/data/pokemongo.js +987 -0
- package/build/cjs/data/pokemongo.js.map +1 -0
- package/build/cjs/data/rulesets.js +51 -0
- package/build/cjs/data/rulesets.js.map +1 -1
- package/build/cjs/sim/battle-actions.js +8 -7
- package/build/cjs/sim/battle-actions.js.map +1 -1
- package/build/cjs/sim/dex-species.js +4 -0
- package/build/cjs/sim/dex-species.js.map +1 -1
- package/build/cjs/sim/dex.js +3 -2
- package/build/cjs/sim/dex.js.map +1 -1
- package/build/cjs/sim/pokemon.js +3 -0
- package/build/cjs/sim/pokemon.js.map +1 -1
- package/build/cjs/sim/team-validator.js +389 -67
- package/build/cjs/sim/team-validator.js.map +1 -1
- package/build/esm/config/formats.mjs +228 -134
- package/build/esm/config/formats.mjs.map +1 -1
- package/build/esm/data/abilities.mjs +9 -6
- package/build/esm/data/abilities.mjs.map +1 -1
- package/build/esm/data/aliases.mjs +3 -3
- package/build/esm/data/aliases.mjs.map +1 -1
- package/build/esm/data/formats-data.mjs +185 -174
- package/build/esm/data/formats-data.mjs.map +1 -1
- package/build/esm/data/items.mjs +25 -4
- package/build/esm/data/items.mjs.map +1 -1
- package/build/esm/data/learnsets.mjs +157 -4
- package/build/esm/data/learnsets.mjs.map +1 -1
- package/build/esm/data/legality.mjs +260 -50
- package/build/esm/data/legality.mjs.map +1 -1
- package/build/esm/data/mods/gen2/scripts.mjs +3 -3
- package/build/esm/data/mods/gen2/scripts.mjs.map +1 -1
- package/build/esm/data/mods/gen3/formats-data.mjs +2 -2
- package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen3/scripts.mjs +1 -1
- package/build/esm/data/mods/gen3/scripts.mjs.map +1 -1
- package/build/esm/data/mods/gen4/moves.mjs +4 -4
- package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
- package/build/esm/data/mods/gen5/formats-data.mjs +1 -1
- package/build/esm/data/mods/gen5/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen5/moves.mjs +1 -1
- package/build/esm/data/mods/gen5/moves.mjs.map +1 -1
- package/build/esm/data/moves.mjs +13 -18
- package/build/esm/data/moves.mjs.map +1 -1
- package/build/esm/data/pokedex.mjs +39 -3
- package/build/esm/data/pokedex.mjs.map +1 -1
- package/build/esm/data/pokemongo.mjs +984 -0
- package/build/esm/data/pokemongo.mjs.map +1 -0
- package/build/esm/data/rulesets.mjs +51 -0
- package/build/esm/data/rulesets.mjs.map +1 -1
- package/build/esm/sim/battle-actions.mjs +8 -7
- package/build/esm/sim/battle-actions.mjs.map +1 -1
- package/build/esm/sim/dex-species.mjs +4 -0
- package/build/esm/sim/dex-species.mjs.map +1 -1
- package/build/esm/sim/dex.mjs +3 -2
- package/build/esm/sim/dex.mjs.map +1 -1
- package/build/esm/sim/pokemon.mjs +3 -0
- package/build/esm/sim/pokemon.mjs.map +1 -1
- package/build/esm/sim/team-validator.mjs +389 -67
- package/build/esm/sim/team-validator.mjs.map +1 -1
- package/build/types/data/pokemongo.d.ts +31 -0
- package/build/types/sim/battle-actions.d.ts +1 -1
- package/build/types/sim/dex-species.d.ts +12 -0
- package/build/types/sim/dex.d.ts +3 -2
- package/build/types/sim/exported-global-types.d.ts +16 -2
- package/build/types/sim/global-types.d.ts +16 -2
- package/build/types/sim/pokemon.d.ts +2 -0
- package/build/types/sim/team-validator.d.ts +24 -1
- package/package.json +1 -1
|
@@ -0,0 +1,984 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A listing of every Pokemon that can be obtained from Pokemon GO and how the can be obtained.
|
|
3
|
+
* If a Pokemon is not listed here, it cannot be obtained from Pokemon GO.
|
|
4
|
+
*
|
|
5
|
+
* Key:
|
|
6
|
+
* - Origin:
|
|
7
|
+
* - wild: Can be found in the overworld, either as a regular spawn or through a similar source such as GO Snapshot
|
|
8
|
+
* - egg: Hatches from 2, 5, or 10 km eggs
|
|
9
|
+
* - giovanni: Shadow Pokemon rescued from Giovanni and purified
|
|
10
|
+
* - 12kmegg: Hatches from a 12 km egg, which is obtained from Team GO Rocket Leaders which unlock at level 8
|
|
11
|
+
* - raid: Caught from defeating a raid boss
|
|
12
|
+
* - research: Reward from field research, special research, or research breakthrough
|
|
13
|
+
* If the Pokemon is obtainable from the wild, other sources do not need to be included due to redundancy.
|
|
14
|
+
* For shinies that can't be obtained from the wild, all other sources should be included.
|
|
15
|
+
*
|
|
16
|
+
* - Shiny origin restrictions:
|
|
17
|
+
* - noshiny: This Pokemon's shiny form is unavailable in Pokemon GO
|
|
18
|
+
* - nowildshiny: This Pokemon can't be obtained as shiny from the wild
|
|
19
|
+
*
|
|
20
|
+
* - Trade restrictions:
|
|
21
|
+
* - notrade: This Pokemon cannot be traded at all
|
|
22
|
+
* - specialtrade: This Pokemon must be traded in a special trade
|
|
23
|
+
*
|
|
24
|
+
* Certain sources have been excluded from this list, which are:
|
|
25
|
+
* - GO Battle League: same level and IV floor as raid bosses, and all from GO Battle League have also been in raids
|
|
26
|
+
* - Shadow Pokemon: most can also be obtained from the wild, and those that can't are from defeating Giovanni, which
|
|
27
|
+
* is handled as as its own encounter
|
|
28
|
+
*/
|
|
29
|
+
export const PokemonGoData = {
|
|
30
|
+
bulbasaur: { encounters: ['wild'] },
|
|
31
|
+
ivysaur: { encounters: ['wild'] },
|
|
32
|
+
venusaur: { encounters: ['wild'] },
|
|
33
|
+
charmander: { encounters: ['wild'] },
|
|
34
|
+
charmeleon: { encounters: ['wild'] },
|
|
35
|
+
charizard: { encounters: ['wild'] },
|
|
36
|
+
squirtle: { encounters: ['wild'] },
|
|
37
|
+
wartortle: { encounters: ['wild'] },
|
|
38
|
+
blastoise: { encounters: ['wild'] },
|
|
39
|
+
caterpie: { encounters: ['wild'] },
|
|
40
|
+
metapod: { encounters: ['wild'] },
|
|
41
|
+
butterfree: { encounters: ['wild'] },
|
|
42
|
+
weedle: { encounters: ['wild'] },
|
|
43
|
+
kakuna: { encounters: ['wild'] },
|
|
44
|
+
beedrill: { encounters: ['wild'] },
|
|
45
|
+
pidgey: { encounters: ['wild'] },
|
|
46
|
+
pidgeotto: { encounters: ['wild'] },
|
|
47
|
+
pidgeot: { encounters: ['wild'] },
|
|
48
|
+
rattata: { encounters: ['wild'] },
|
|
49
|
+
rattataalola: { encounters: ['wild'] },
|
|
50
|
+
raticate: { encounters: ['wild'] },
|
|
51
|
+
raticatealola: { encounters: ['wild'] },
|
|
52
|
+
spearow: { encounters: ['wild'] },
|
|
53
|
+
fearow: { encounters: ['wild'] },
|
|
54
|
+
ekans: { encounters: ['wild'] },
|
|
55
|
+
arbok: { encounters: ['wild'] },
|
|
56
|
+
pikachu: { encounters: ['wild'] },
|
|
57
|
+
raichu: { encounters: ['wild'] },
|
|
58
|
+
raichualola: { encounters: ['wild'] },
|
|
59
|
+
sandshrew: { encounters: ['wild'] },
|
|
60
|
+
sandshrewalola: { encounters: ['wild'] },
|
|
61
|
+
sandslash: { encounters: ['wild'] },
|
|
62
|
+
sandslashalola: { encounters: ['wild'] },
|
|
63
|
+
nidoranf: { encounters: ['wild'] },
|
|
64
|
+
nidorina: { encounters: ['wild'] },
|
|
65
|
+
nidoqueen: { encounters: ['wild'] },
|
|
66
|
+
nidoranm: { encounters: ['wild'] },
|
|
67
|
+
nidorino: { encounters: ['wild'] },
|
|
68
|
+
nidoking: { encounters: ['wild'] },
|
|
69
|
+
clefairy: { encounters: ['wild'] },
|
|
70
|
+
clefable: { encounters: ['wild'] },
|
|
71
|
+
vulpix: { encounters: ['wild'] },
|
|
72
|
+
vulpixalola: { encounters: ['wild'] },
|
|
73
|
+
ninetales: { encounters: ['wild'] },
|
|
74
|
+
ninetalesalola: { encounters: ['wild'] },
|
|
75
|
+
jigglypuff: { encounters: ['wild'] },
|
|
76
|
+
wigglytuff: { encounters: ['wild'] },
|
|
77
|
+
zubat: { encounters: ['wild'] },
|
|
78
|
+
golbat: { encounters: ['wild'] },
|
|
79
|
+
oddish: { encounters: ['wild'] },
|
|
80
|
+
gloom: { encounters: ['wild'] },
|
|
81
|
+
vileplume: { encounters: ['wild'] },
|
|
82
|
+
paras: { encounters: ['wild'] },
|
|
83
|
+
parasect: { encounters: ['wild'] },
|
|
84
|
+
venonat: { encounters: ['wild'] },
|
|
85
|
+
venomoth: { encounters: ['wild'] },
|
|
86
|
+
diglett: { encounters: ['wild'] },
|
|
87
|
+
diglettalola: { encounters: ['wild'] },
|
|
88
|
+
dugtrio: { encounters: ['wild'] },
|
|
89
|
+
dugtrioalola: { encounters: ['wild'] },
|
|
90
|
+
meowth: { encounters: ['wild'] },
|
|
91
|
+
meowthalola: { encounters: ['wild'] },
|
|
92
|
+
meowthgalar: { encounters: ['wild'] },
|
|
93
|
+
persian: { encounters: ['wild'] },
|
|
94
|
+
persianalola: { encounters: ['wild'] },
|
|
95
|
+
psyduck: { encounters: ['wild'] },
|
|
96
|
+
golduck: { encounters: ['wild'] },
|
|
97
|
+
mankey: { encounters: ['wild'] },
|
|
98
|
+
primeape: { encounters: ['wild'] },
|
|
99
|
+
growlithe: { encounters: ['wild'] },
|
|
100
|
+
growlithehisui: { encounters: ['egg', 'raid', 'research', 'noshiny'] },
|
|
101
|
+
arcanine: { encounters: ['wild'] },
|
|
102
|
+
arcaninehisui: { encounters: ['egg', 'raid', 'research', 'noshiny'] },
|
|
103
|
+
poliwag: { encounters: ['wild'] },
|
|
104
|
+
poliwhirl: { encounters: ['wild'] },
|
|
105
|
+
poliwrath: { encounters: ['wild'] },
|
|
106
|
+
abra: { encounters: ['wild'] },
|
|
107
|
+
kadabra: { encounters: ['wild'] },
|
|
108
|
+
alakazam: { encounters: ['wild'] },
|
|
109
|
+
machop: { encounters: ['wild'] },
|
|
110
|
+
machoke: { encounters: ['wild'] },
|
|
111
|
+
machamp: { encounters: ['wild'] },
|
|
112
|
+
bellsprout: { encounters: ['wild'] },
|
|
113
|
+
weepinbell: { encounters: ['wild'] },
|
|
114
|
+
victreebel: { encounters: ['wild'] },
|
|
115
|
+
tentacool: { encounters: ['wild'] },
|
|
116
|
+
tentacruel: { encounters: ['wild'] },
|
|
117
|
+
geodude: { encounters: ['wild'] },
|
|
118
|
+
geodudealola: { encounters: ['wild'] },
|
|
119
|
+
graveler: { encounters: ['wild'] },
|
|
120
|
+
graveleralola: { encounters: ['wild'] },
|
|
121
|
+
golem: { encounters: ['wild'] },
|
|
122
|
+
golemalola: { encounters: ['wild'] },
|
|
123
|
+
ponyta: { encounters: ['wild'] },
|
|
124
|
+
ponytagalar: { encounters: ['wild'] },
|
|
125
|
+
rapidash: { encounters: ['wild'] },
|
|
126
|
+
rapidashgalar: { encounters: ['wild'] },
|
|
127
|
+
slowpoke: { encounters: ['wild'] },
|
|
128
|
+
slowpokegalar: { encounters: ['wild'] },
|
|
129
|
+
slowbro: { encounters: ['wild'] },
|
|
130
|
+
slowbrogalar: { encounters: ['wild'] },
|
|
131
|
+
magnemite: { encounters: ['wild'] },
|
|
132
|
+
magneton: { encounters: ['wild'] },
|
|
133
|
+
farfetchd: { encounters: ['wild'] },
|
|
134
|
+
farfetchdgalar: { encounters: ['wild'] },
|
|
135
|
+
doduo: { encounters: ['wild'] },
|
|
136
|
+
dodrio: { encounters: ['wild'] },
|
|
137
|
+
seel: { encounters: ['wild'] },
|
|
138
|
+
dewgong: { encounters: ['wild'] },
|
|
139
|
+
grimer: { encounters: ['wild'] },
|
|
140
|
+
grimeralola: { encounters: ['wild'] },
|
|
141
|
+
muk: { encounters: ['wild'] },
|
|
142
|
+
mukalola: { encounters: ['wild'] },
|
|
143
|
+
shellder: { encounters: ['wild'] },
|
|
144
|
+
cloyster: { encounters: ['wild'] },
|
|
145
|
+
gastly: { encounters: ['wild'] },
|
|
146
|
+
haunter: { encounters: ['wild'] },
|
|
147
|
+
gengar: { encounters: ['wild'] },
|
|
148
|
+
onix: { encounters: ['wild'] },
|
|
149
|
+
drowzee: { encounters: ['wild'] },
|
|
150
|
+
hypno: { encounters: ['wild'] },
|
|
151
|
+
krabby: { encounters: ['wild'] },
|
|
152
|
+
kingler: { encounters: ['wild'] },
|
|
153
|
+
voltorb: { encounters: ['wild'] },
|
|
154
|
+
voltorbhisui: { encounters: ['wild', 'noshiny'] },
|
|
155
|
+
electrode: { encounters: ['wild'] },
|
|
156
|
+
electrodehisui: { encounters: ['wild', 'noshiny'] },
|
|
157
|
+
exeggcute: { encounters: ['wild'] },
|
|
158
|
+
exeggutor: { encounters: ['wild'] },
|
|
159
|
+
exeggutoralola: { encounters: ['wild'] },
|
|
160
|
+
cubone: { encounters: ['wild'] },
|
|
161
|
+
marowak: { encounters: ['wild'] },
|
|
162
|
+
marowakalola: { encounters: ['wild'] },
|
|
163
|
+
hitmonlee: { encounters: ['wild'] },
|
|
164
|
+
hitmonchan: { encounters: ['wild'] },
|
|
165
|
+
lickitung: { encounters: ['wild'] },
|
|
166
|
+
koffing: { encounters: ['wild'] },
|
|
167
|
+
weezing: { encounters: ['wild'] },
|
|
168
|
+
weezinggalar: { encounters: ['wild'] },
|
|
169
|
+
rhyhorn: { encounters: ['wild'] },
|
|
170
|
+
rhydon: { encounters: ['wild'] },
|
|
171
|
+
chansey: { encounters: ['wild'] },
|
|
172
|
+
tangela: { encounters: ['wild'] },
|
|
173
|
+
kangaskhan: { encounters: ['wild'] },
|
|
174
|
+
horsea: { encounters: ['wild'] },
|
|
175
|
+
seadra: { encounters: ['wild'] },
|
|
176
|
+
goldeen: { encounters: ['wild'] },
|
|
177
|
+
seaking: { encounters: ['wild'] },
|
|
178
|
+
staryu: { encounters: ['wild'] },
|
|
179
|
+
starmie: { encounters: ['wild'] },
|
|
180
|
+
mrmime: { encounters: ['wild'] },
|
|
181
|
+
mrmimegalar: { encounters: ['wild'] },
|
|
182
|
+
scyther: { encounters: ['wild'] },
|
|
183
|
+
jynx: { encounters: ['wild'] },
|
|
184
|
+
electabuzz: { encounters: ['wild'] },
|
|
185
|
+
magmar: { encounters: ['wild'] },
|
|
186
|
+
pinsir: { encounters: ['wild'] },
|
|
187
|
+
tauros: { encounters: ['wild'] },
|
|
188
|
+
magikarp: { encounters: ['wild'] },
|
|
189
|
+
gyarados: { encounters: ['wild'] },
|
|
190
|
+
ditto: { encounters: ['wild'] },
|
|
191
|
+
eevee: { encounters: ['wild'] },
|
|
192
|
+
vaporeon: { encounters: ['wild'] },
|
|
193
|
+
jolteon: { encounters: ['wild'] },
|
|
194
|
+
flareon: { encounters: ['wild'] },
|
|
195
|
+
porygon: { encounters: ['wild'] },
|
|
196
|
+
omanyte: { encounters: ['wild'] },
|
|
197
|
+
omastar: { encounters: ['wild'] },
|
|
198
|
+
kabuto: { encounters: ['wild'] },
|
|
199
|
+
kabutops: { encounters: ['wild'] },
|
|
200
|
+
aerodactyl: { encounters: ['wild'] },
|
|
201
|
+
snorlax: { encounters: ['wild'] },
|
|
202
|
+
articuno: { encounters: ['wild'] },
|
|
203
|
+
articunogalar: { encounters: ['wild'] },
|
|
204
|
+
zapdos: { encounters: ['wild'] },
|
|
205
|
+
zapdosgalar: { encounters: ['wild'] },
|
|
206
|
+
moltres: { encounters: ['wild'] },
|
|
207
|
+
moltresgalar: { encounters: ['wild'] },
|
|
208
|
+
dratini: { encounters: ['wild'] },
|
|
209
|
+
dragonair: { encounters: ['wild'] },
|
|
210
|
+
dragonite: { encounters: ['wild'] },
|
|
211
|
+
mewtwo: {
|
|
212
|
+
encounters: ['giovanni', 'raid', 'research', 'specialtrade'],
|
|
213
|
+
LGPERestrictiveMoves: {
|
|
214
|
+
amnesia: 44,
|
|
215
|
+
swift: 33,
|
|
216
|
+
psybeam: 22,
|
|
217
|
+
mist: 11,
|
|
218
|
+
teleport: 1,
|
|
219
|
+
confuseray: 1,
|
|
220
|
+
confusion: 1,
|
|
221
|
+
disable: 1,
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
mew: {
|
|
225
|
+
encounters: ['research', 'notrade'],
|
|
226
|
+
LGPERestrictiveMoves: {
|
|
227
|
+
barrier: 44,
|
|
228
|
+
psywave: 33,
|
|
229
|
+
amnesia: 22,
|
|
230
|
+
swift: 11,
|
|
231
|
+
pound: 1,
|
|
232
|
+
confusion: 1,
|
|
233
|
+
mimic: 1,
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
chikorita: { encounters: ['wild'] },
|
|
237
|
+
bayleef: { encounters: ['wild'] },
|
|
238
|
+
meganium: { encounters: ['wild'] },
|
|
239
|
+
cyndaquil: { encounters: ['wild'] },
|
|
240
|
+
quilava: { encounters: ['wild'] },
|
|
241
|
+
typhlosion: { encounters: ['wild'] },
|
|
242
|
+
totodile: { encounters: ['wild'] },
|
|
243
|
+
croconaw: { encounters: ['wild'] },
|
|
244
|
+
feraligatr: { encounters: ['wild'] },
|
|
245
|
+
sentret: { encounters: ['wild'] },
|
|
246
|
+
furret: { encounters: ['wild'] },
|
|
247
|
+
hoothoot: { encounters: ['wild'] },
|
|
248
|
+
noctowl: { encounters: ['wild'] },
|
|
249
|
+
ledyba: { encounters: ['wild'] },
|
|
250
|
+
ledian: { encounters: ['wild'] },
|
|
251
|
+
spinarak: { encounters: ['wild'] },
|
|
252
|
+
ariados: { encounters: ['wild'] },
|
|
253
|
+
crobat: { encounters: ['wild'] },
|
|
254
|
+
chinchou: { encounters: ['wild'] },
|
|
255
|
+
lanturn: { encounters: ['wild'] },
|
|
256
|
+
pichu: { encounters: ['egg'] },
|
|
257
|
+
cleffa: { encounters: ['egg'] },
|
|
258
|
+
igglybuff: { encounters: ['egg'] },
|
|
259
|
+
togepi: { encounters: ['egg'] },
|
|
260
|
+
togetic: { encounters: ['wild'] },
|
|
261
|
+
natu: { encounters: ['wild'] },
|
|
262
|
+
xatu: { encounters: ['wild'] },
|
|
263
|
+
mareep: { encounters: ['wild'] },
|
|
264
|
+
flaaffy: { encounters: ['wild'] },
|
|
265
|
+
ampharos: { encounters: ['wild'] },
|
|
266
|
+
bellossom: { encounters: ['wild'] },
|
|
267
|
+
marill: { encounters: ['wild'] },
|
|
268
|
+
azumarill: { encounters: ['wild'] },
|
|
269
|
+
sudowoodo: { encounters: ['wild'] },
|
|
270
|
+
politoed: { encounters: ['wild'] },
|
|
271
|
+
hoppip: { encounters: ['wild'] },
|
|
272
|
+
skiploom: { encounters: ['wild'] },
|
|
273
|
+
jumpluff: { encounters: ['wild'] },
|
|
274
|
+
aipom: { encounters: ['wild'] },
|
|
275
|
+
sunkern: { encounters: ['wild'] },
|
|
276
|
+
sunflora: { encounters: ['wild'] },
|
|
277
|
+
yanma: { encounters: ['wild'] },
|
|
278
|
+
wooper: { encounters: ['wild'] },
|
|
279
|
+
quagsire: { encounters: ['wild'] },
|
|
280
|
+
espeon: { encounters: ['wild'] },
|
|
281
|
+
umbreon: { encounters: ['wild'] },
|
|
282
|
+
murkrow: { encounters: ['wild'] },
|
|
283
|
+
slowking: { encounters: ['wild'] },
|
|
284
|
+
slowkinggalar: { encounters: ['wild'] },
|
|
285
|
+
misdreavus: { encounters: ['wild'] },
|
|
286
|
+
unown: { encounters: ['wild'] },
|
|
287
|
+
unownb: { encounters: ['wild'] },
|
|
288
|
+
unownc: { encounters: ['wild'] },
|
|
289
|
+
unownd: { encounters: ['wild'] },
|
|
290
|
+
unowne: { encounters: ['wild'] },
|
|
291
|
+
unownf: { encounters: ['wild'] },
|
|
292
|
+
unowng: { encounters: ['wild'] },
|
|
293
|
+
unownh: { encounters: ['wild'] },
|
|
294
|
+
unowni: { encounters: ['wild'] },
|
|
295
|
+
unownj: { encounters: ['wild'] },
|
|
296
|
+
unownk: { encounters: ['wild', 'noshiny'] },
|
|
297
|
+
unownl: { encounters: ['wild'] },
|
|
298
|
+
unownm: { encounters: ['wild', 'noshiny'] },
|
|
299
|
+
unownn: { encounters: ['wild'] },
|
|
300
|
+
unowno: { encounters: ['wild'] },
|
|
301
|
+
unownp: { encounters: ['wild'] },
|
|
302
|
+
unownq: { encounters: ['wild', 'noshiny'] },
|
|
303
|
+
unownr: { encounters: ['wild'] },
|
|
304
|
+
unowns: { encounters: ['wild'] },
|
|
305
|
+
unownt: { encounters: ['wild'] },
|
|
306
|
+
unownu: { encounters: ['wild'] },
|
|
307
|
+
unownv: { encounters: ['wild'] },
|
|
308
|
+
unownw: { encounters: ['wild', 'noshiny'] },
|
|
309
|
+
unownx: { encounters: ['wild'] },
|
|
310
|
+
unowny: { encounters: ['wild'] },
|
|
311
|
+
unownz: { encounters: ['wild', 'noshiny'] },
|
|
312
|
+
unownexclamation: { encounters: ['wild', 'noshiny'] },
|
|
313
|
+
unownquestion: { encounters: ['wild', 'noshiny'] },
|
|
314
|
+
wobbuffet: { encounters: ['wild'] },
|
|
315
|
+
girafarig: { encounters: ['wild'] },
|
|
316
|
+
pineco: { encounters: ['wild'] },
|
|
317
|
+
forretress: { encounters: ['wild'] },
|
|
318
|
+
dunsparce: { encounters: ['wild'] },
|
|
319
|
+
gligar: { encounters: ['wild'] },
|
|
320
|
+
steelix: { encounters: ['wild'] },
|
|
321
|
+
snubbull: { encounters: ['wild'] },
|
|
322
|
+
granbull: { encounters: ['wild'] },
|
|
323
|
+
qwilfish: { encounters: ['wild'] },
|
|
324
|
+
qwilfishhisui: { encounters: ['wild', 'noshiny'] },
|
|
325
|
+
scizor: { encounters: ['wild'] },
|
|
326
|
+
shuckle: { encounters: ['wild'] },
|
|
327
|
+
heracross: { encounters: ['wild'] },
|
|
328
|
+
sneasel: { encounters: ['wild'] },
|
|
329
|
+
sneaselhisui: { encounters: ['wild', 'noshiny'] },
|
|
330
|
+
teddiursa: { encounters: ['wild'] },
|
|
331
|
+
ursaring: { encounters: ['wild'] },
|
|
332
|
+
slugma: { encounters: ['wild'] },
|
|
333
|
+
magcargo: { encounters: ['wild'] },
|
|
334
|
+
swinub: { encounters: ['wild'] },
|
|
335
|
+
piloswine: { encounters: ['wild'] },
|
|
336
|
+
corsola: { encounters: ['wild'] },
|
|
337
|
+
remoraid: { encounters: ['wild'] },
|
|
338
|
+
octillery: { encounters: ['wild'] },
|
|
339
|
+
delibird: { encounters: ['wild'] },
|
|
340
|
+
mantine: { encounters: ['wild'] },
|
|
341
|
+
skarmory: { encounters: ['wild'] },
|
|
342
|
+
houndour: { encounters: ['wild'] },
|
|
343
|
+
houndoom: { encounters: ['wild'] },
|
|
344
|
+
kingdra: { encounters: ['wild'] },
|
|
345
|
+
phanpy: { encounters: ['wild'] },
|
|
346
|
+
donphan: { encounters: ['wild'] },
|
|
347
|
+
porygon2: { encounters: ['wild'] },
|
|
348
|
+
stantler: { encounters: ['wild'] },
|
|
349
|
+
smeargle: { encounters: ['wild'] },
|
|
350
|
+
tyrogue: { encounters: ['egg'] },
|
|
351
|
+
hitmontop: { encounters: ['wild'] },
|
|
352
|
+
smoochum: { encounters: ['egg', 'research'] },
|
|
353
|
+
elekid: { encounters: ['egg', 'research'] },
|
|
354
|
+
magby: { encounters: ['egg'] },
|
|
355
|
+
miltank: { encounters: ['wild'] },
|
|
356
|
+
blissey: { encounters: ['wild'] },
|
|
357
|
+
raikou: { encounters: ['wild'] },
|
|
358
|
+
entei: { encounters: ['wild'] },
|
|
359
|
+
suicune: { encounters: ['wild'] },
|
|
360
|
+
larvitar: { encounters: ['wild'] },
|
|
361
|
+
pupitar: { encounters: ['wild'] },
|
|
362
|
+
tyranitar: { encounters: ['wild'] },
|
|
363
|
+
lugia: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
|
|
364
|
+
hooh: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
|
|
365
|
+
celebi: { encounters: ['research', 'notrade'] },
|
|
366
|
+
treecko: { encounters: ['wild'] },
|
|
367
|
+
grovyle: { encounters: ['wild'] },
|
|
368
|
+
sceptile: { encounters: ['wild'] },
|
|
369
|
+
torchic: { encounters: ['wild'] },
|
|
370
|
+
combusken: { encounters: ['wild'] },
|
|
371
|
+
blaziken: { encounters: ['wild'] },
|
|
372
|
+
mudkip: { encounters: ['wild'] },
|
|
373
|
+
marshtomp: { encounters: ['wild'] },
|
|
374
|
+
swampert: { encounters: ['wild'] },
|
|
375
|
+
poochyena: { encounters: ['wild'] },
|
|
376
|
+
mightyena: { encounters: ['wild'] },
|
|
377
|
+
zigzagoon: { encounters: ['wild'] },
|
|
378
|
+
zigzagoongalar: { encounters: ['wild'] },
|
|
379
|
+
linoone: { encounters: ['wild'] },
|
|
380
|
+
linoonegalar: { encounters: ['wild'] },
|
|
381
|
+
wurmple: { encounters: ['wild'] },
|
|
382
|
+
silcoon: { encounters: ['wild'] },
|
|
383
|
+
beautifly: { encounters: ['wild'] },
|
|
384
|
+
cascoon: { encounters: ['wild'] },
|
|
385
|
+
dustox: { encounters: ['wild'] },
|
|
386
|
+
lotad: { encounters: ['wild'] },
|
|
387
|
+
lombre: { encounters: ['wild'] },
|
|
388
|
+
ludicolo: { encounters: ['wild'] },
|
|
389
|
+
seedot: { encounters: ['wild'] },
|
|
390
|
+
nuzleaf: { encounters: ['wild'] },
|
|
391
|
+
shiftry: { encounters: ['wild'] },
|
|
392
|
+
taillow: { encounters: ['wild'] },
|
|
393
|
+
swellow: { encounters: ['wild'] },
|
|
394
|
+
wingull: { encounters: ['wild'] },
|
|
395
|
+
pelipper: { encounters: ['wild'] },
|
|
396
|
+
ralts: { encounters: ['wild'] },
|
|
397
|
+
kirlia: { encounters: ['wild'] },
|
|
398
|
+
gardevoir: { encounters: ['wild'] },
|
|
399
|
+
surskit: { encounters: ['wild'] },
|
|
400
|
+
masquerain: { encounters: ['wild'] },
|
|
401
|
+
shroomish: { encounters: ['wild'] },
|
|
402
|
+
breloom: { encounters: ['wild'] },
|
|
403
|
+
slakoth: { encounters: ['wild'] },
|
|
404
|
+
vigoroth: { encounters: ['wild'] },
|
|
405
|
+
slaking: { encounters: ['wild'] },
|
|
406
|
+
nincada: { encounters: ['wild'] },
|
|
407
|
+
ninjask: { encounters: ['wild'] },
|
|
408
|
+
shedinja: { encounters: ['research'] },
|
|
409
|
+
whismur: { encounters: ['wild'] },
|
|
410
|
+
loudred: { encounters: ['wild'] },
|
|
411
|
+
exploud: { encounters: ['wild'] },
|
|
412
|
+
makuhita: { encounters: ['wild'] },
|
|
413
|
+
hariyama: { encounters: ['wild'] },
|
|
414
|
+
azurill: { encounters: ['egg'] },
|
|
415
|
+
nosepass: { encounters: ['wild'] },
|
|
416
|
+
skitty: { encounters: ['wild'] },
|
|
417
|
+
delcatty: { encounters: ['wild'] },
|
|
418
|
+
sableye: { encounters: ['wild'] },
|
|
419
|
+
mawile: { encounters: ['wild'] },
|
|
420
|
+
aron: { encounters: ['wild'] },
|
|
421
|
+
lairon: { encounters: ['wild'] },
|
|
422
|
+
aggron: { encounters: ['wild'] },
|
|
423
|
+
meditite: { encounters: ['wild'] },
|
|
424
|
+
medicham: { encounters: ['wild'] },
|
|
425
|
+
electrike: { encounters: ['wild'] },
|
|
426
|
+
manectric: { encounters: ['wild'] },
|
|
427
|
+
plusle: { encounters: ['wild'] },
|
|
428
|
+
minun: { encounters: ['wild'] },
|
|
429
|
+
volbeat: { encounters: ['wild'] },
|
|
430
|
+
illumise: { encounters: ['wild'] },
|
|
431
|
+
roselia: { encounters: ['wild'] },
|
|
432
|
+
gulpin: { encounters: ['wild'] },
|
|
433
|
+
swalot: { encounters: ['wild'] },
|
|
434
|
+
carvanha: { encounters: ['wild'] },
|
|
435
|
+
sharpedo: { encounters: ['wild'] },
|
|
436
|
+
wailmer: { encounters: ['wild'] },
|
|
437
|
+
wailord: { encounters: ['wild'] },
|
|
438
|
+
numel: { encounters: ['wild'] },
|
|
439
|
+
camerupt: { encounters: ['wild'] },
|
|
440
|
+
torkoal: { encounters: ['wild'] },
|
|
441
|
+
spoink: { encounters: ['wild'] },
|
|
442
|
+
grumpig: { encounters: ['wild'] },
|
|
443
|
+
trapinch: { encounters: ['wild'] },
|
|
444
|
+
vibrava: { encounters: ['wild'] },
|
|
445
|
+
flygon: { encounters: ['wild'] },
|
|
446
|
+
cacnea: { encounters: ['wild'] },
|
|
447
|
+
cacturne: { encounters: ['wild'] },
|
|
448
|
+
swablu: { encounters: ['wild'] },
|
|
449
|
+
altaria: { encounters: ['wild'] },
|
|
450
|
+
zangoose: { encounters: ['wild'] },
|
|
451
|
+
seviper: { encounters: ['wild'] },
|
|
452
|
+
lunatone: { encounters: ['wild'] },
|
|
453
|
+
solrock: { encounters: ['wild'] },
|
|
454
|
+
barboach: { encounters: ['wild'] },
|
|
455
|
+
whiscash: { encounters: ['wild'] },
|
|
456
|
+
corphish: { encounters: ['wild'] },
|
|
457
|
+
crawdaunt: { encounters: ['wild'] },
|
|
458
|
+
baltoy: { encounters: ['wild'] },
|
|
459
|
+
claydol: { encounters: ['wild'] },
|
|
460
|
+
lileep: { encounters: ['wild'] },
|
|
461
|
+
cradily: { encounters: ['wild'] },
|
|
462
|
+
anorith: { encounters: ['wild'] },
|
|
463
|
+
armaldo: { encounters: ['wild'] },
|
|
464
|
+
feebas: { encounters: ['wild'] },
|
|
465
|
+
milotic: { encounters: ['wild'] },
|
|
466
|
+
castform: { encounters: ['wild'] },
|
|
467
|
+
kecleon: { encounters: ['wild'] },
|
|
468
|
+
shuppet: { encounters: ['wild'] },
|
|
469
|
+
banette: { encounters: ['wild'] },
|
|
470
|
+
duskull: { encounters: ['wild'] },
|
|
471
|
+
dusclops: { encounters: ['wild'] },
|
|
472
|
+
tropius: { encounters: ['wild'] },
|
|
473
|
+
chimecho: { encounters: ['wild'] },
|
|
474
|
+
absol: { encounters: ['wild'] },
|
|
475
|
+
wynaut: { encounters: ['egg'] },
|
|
476
|
+
snorunt: { encounters: ['wild'] },
|
|
477
|
+
glalie: { encounters: ['wild'] },
|
|
478
|
+
spheal: { encounters: ['wild'] },
|
|
479
|
+
sealeo: { encounters: ['wild'] },
|
|
480
|
+
walrein: { encounters: ['wild'] },
|
|
481
|
+
clamperl: { encounters: ['wild'] },
|
|
482
|
+
gorebyss: { encounters: ['wild'] },
|
|
483
|
+
huntail: { encounters: ['wild'] },
|
|
484
|
+
relicanth: { encounters: ['wild'] },
|
|
485
|
+
luvdisc: { encounters: ['wild'] },
|
|
486
|
+
bagon: { encounters: ['wild'] },
|
|
487
|
+
shelgon: { encounters: ['wild'] },
|
|
488
|
+
salamence: { encounters: ['wild'] },
|
|
489
|
+
beldum: { encounters: ['wild'] },
|
|
490
|
+
metang: { encounters: ['wild'] },
|
|
491
|
+
metagross: { encounters: ['wild'] },
|
|
492
|
+
regirock: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
|
|
493
|
+
regice: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
|
|
494
|
+
registeel: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
|
|
495
|
+
latias: { encounters: ['wild'] },
|
|
496
|
+
latios: { encounters: ['wild'] },
|
|
497
|
+
kyogre: { encounters: ['raid', 'research', 'specialtrade'] },
|
|
498
|
+
groudon: { encounters: ['raid', 'research', 'specialtrade'] },
|
|
499
|
+
rayquaza: { encounters: ['raid', 'research', 'specialtrade'] },
|
|
500
|
+
jirachi: { encounters: ['research', 'notrade'] },
|
|
501
|
+
deoxys: { encounters: ['raid', 'specialtrade'] },
|
|
502
|
+
turtwig: { encounters: ['wild'] },
|
|
503
|
+
grotle: { encounters: ['wild'] },
|
|
504
|
+
torterra: { encounters: ['wild'] },
|
|
505
|
+
chimchar: { encounters: ['wild'] },
|
|
506
|
+
monferno: { encounters: ['wild'] },
|
|
507
|
+
infernape: { encounters: ['wild'] },
|
|
508
|
+
piplup: { encounters: ['wild'] },
|
|
509
|
+
prinplup: { encounters: ['wild'] },
|
|
510
|
+
empoleon: { encounters: ['wild'] },
|
|
511
|
+
starly: { encounters: ['wild'] },
|
|
512
|
+
staravia: { encounters: ['wild'] },
|
|
513
|
+
staraptor: { encounters: ['wild'] },
|
|
514
|
+
bidoof: { encounters: ['wild'] },
|
|
515
|
+
bibarel: { encounters: ['wild'] },
|
|
516
|
+
kricketot: { encounters: ['wild'] },
|
|
517
|
+
kricketune: { encounters: ['wild'] },
|
|
518
|
+
shinx: { encounters: ['wild'] },
|
|
519
|
+
luxio: { encounters: ['wild'] },
|
|
520
|
+
luxray: { encounters: ['wild'] },
|
|
521
|
+
budew: { encounters: ['egg'] },
|
|
522
|
+
roserade: { encounters: ['wild'] },
|
|
523
|
+
cranidos: { encounters: ['wild'] },
|
|
524
|
+
rampardos: { encounters: ['wild'] },
|
|
525
|
+
shieldon: { encounters: ['wild'] },
|
|
526
|
+
bastiodon: { encounters: ['wild'] },
|
|
527
|
+
burmy: { encounters: ['wild'] },
|
|
528
|
+
wormadam: { encounters: ['wild'] },
|
|
529
|
+
wormadamsandy: { encounters: ['wild'] },
|
|
530
|
+
wormadamtrash: { encounters: ['wild'] },
|
|
531
|
+
mothim: { encounters: ['wild'] },
|
|
532
|
+
combee: { encounters: ['wild'] },
|
|
533
|
+
vespiquen: { encounters: ['wild'] },
|
|
534
|
+
pachirisu: { encounters: ['wild', 'noshiny'] },
|
|
535
|
+
buizel: { encounters: ['wild'] },
|
|
536
|
+
floatzel: { encounters: ['wild'] },
|
|
537
|
+
cherubi: { encounters: ['wild'] },
|
|
538
|
+
shellos: { encounters: ['wild', 'noshiny'] },
|
|
539
|
+
shelloseast: { encounters: ['wild', 'noshiny'] },
|
|
540
|
+
gastrodon: { encounters: ['wild', 'noshiny'] },
|
|
541
|
+
gastrodoneast: { encounters: ['wild', 'noshiny'] },
|
|
542
|
+
ambipom: { encounters: ['wild'] },
|
|
543
|
+
drifloon: { encounters: ['wild'] },
|
|
544
|
+
drifblim: { encounters: ['wild'] },
|
|
545
|
+
buneary: { encounters: ['wild'] },
|
|
546
|
+
lopunny: { encounters: ['wild'] },
|
|
547
|
+
mismagius: { encounters: ['wild'] },
|
|
548
|
+
honchkrow: { encounters: ['wild'] },
|
|
549
|
+
glameow: { encounters: ['wild'] },
|
|
550
|
+
purugly: { encounters: ['wild'] },
|
|
551
|
+
chingling: { encounters: ['egg', 'noshiny'] },
|
|
552
|
+
stunky: { encounters: ['wild', 'noshiny'] },
|
|
553
|
+
skuntank: { encounters: ['wild', 'noshiny'] },
|
|
554
|
+
bronzor: { encounters: ['wild'] },
|
|
555
|
+
bronzong: { encounters: ['wild'] },
|
|
556
|
+
bonsly: { encounters: ['egg'] },
|
|
557
|
+
mimejr: { encounters: ['egg'] },
|
|
558
|
+
happiny: { encounters: ['egg'] },
|
|
559
|
+
chatot: { encounters: ['wild', 'noshiny'] },
|
|
560
|
+
spiritomb: { encounters: ['research'] },
|
|
561
|
+
gible: { encounters: ['wild'] },
|
|
562
|
+
gabite: { encounters: ['wild'] },
|
|
563
|
+
garchomp: { encounters: ['wild'] },
|
|
564
|
+
munchlax: { encounters: ['egg'] },
|
|
565
|
+
riolu: { encounters: ['egg'] },
|
|
566
|
+
lucario: { encounters: ['egg', 'research'] },
|
|
567
|
+
hippopotas: { encounters: ['wild'] },
|
|
568
|
+
hippowdon: { encounters: ['wild'] },
|
|
569
|
+
skorupi: { encounters: ['wild'] },
|
|
570
|
+
drapion: { encounters: ['wild'] },
|
|
571
|
+
croagunk: { encounters: ['wild'] },
|
|
572
|
+
toxicroak: { encounters: ['wild'] },
|
|
573
|
+
carnivine: { encounters: ['wild', 'noshiny'] },
|
|
574
|
+
finneon: { encounters: ['wild'] },
|
|
575
|
+
lumineon: { encounters: ['wild'] },
|
|
576
|
+
mantyke: { encounters: ['egg'] },
|
|
577
|
+
snover: { encounters: ['wild'] },
|
|
578
|
+
abomasnow: { encounters: ['wild'] },
|
|
579
|
+
weavile: { encounters: ['wild'] },
|
|
580
|
+
magnezone: { encounters: ['wild'] },
|
|
581
|
+
lickilicky: { encounters: ['wild'] },
|
|
582
|
+
rhyperior: { encounters: ['wild'] },
|
|
583
|
+
tangrowth: { encounters: ['wild'] },
|
|
584
|
+
electivire: { encounters: ['wild'] },
|
|
585
|
+
magmortar: { encounters: ['wild'] },
|
|
586
|
+
togekiss: { encounters: ['wild'] },
|
|
587
|
+
yanmega: { encounters: ['wild'] },
|
|
588
|
+
leafeon: { encounters: ['wild'] },
|
|
589
|
+
glaceon: { encounters: ['wild'] },
|
|
590
|
+
gliscor: { encounters: ['wild'] },
|
|
591
|
+
mamoswine: { encounters: ['wild'] },
|
|
592
|
+
porygonz: { encounters: ['wild'] },
|
|
593
|
+
gallade: { encounters: ['wild'] },
|
|
594
|
+
probopass: { encounters: ['wild'] },
|
|
595
|
+
dusknoir: { encounters: ['wild'] },
|
|
596
|
+
froslass: { encounters: ['wild'] },
|
|
597
|
+
rotom: { encounters: ['wild', 'noshiny'] },
|
|
598
|
+
uxie: { encounters: ['wild'] },
|
|
599
|
+
mesprit: { encounters: ['wild'] },
|
|
600
|
+
azelf: { encounters: ['wild'] },
|
|
601
|
+
dialga: { encounters: ['raid', 'specialtrade'] },
|
|
602
|
+
palkia: { encounters: ['raid', 'specialtrade'] },
|
|
603
|
+
heatran: { encounters: ['raid', 'specialtrade'] },
|
|
604
|
+
regigigas: { encounters: ['raid', 'research', 'specialtrade'] },
|
|
605
|
+
giratina: { encounters: ['raid', 'specialtrade'] },
|
|
606
|
+
cresselia: { encounters: ['raid', 'research', 'specialtrade'] },
|
|
607
|
+
darkrai: { encounters: ['raid', 'notrade'] },
|
|
608
|
+
shaymin: { encounters: ['research', 'noshiny', 'notrade'] },
|
|
609
|
+
victini: { encounters: ['research', 'noshiny', 'notrade'] },
|
|
610
|
+
snivy: { encounters: ['wild'] },
|
|
611
|
+
servine: { encounters: ['wild'] },
|
|
612
|
+
serperior: { encounters: ['wild'] },
|
|
613
|
+
tepig: { encounters: ['wild'] },
|
|
614
|
+
pignite: { encounters: ['wild'] },
|
|
615
|
+
emboar: { encounters: ['wild'] },
|
|
616
|
+
oshawott: { encounters: ['wild'] },
|
|
617
|
+
dewott: { encounters: ['wild'] },
|
|
618
|
+
samurott: { encounters: ['wild'] },
|
|
619
|
+
patrat: { encounters: ['wild'] },
|
|
620
|
+
watchog: { encounters: ['wild'] },
|
|
621
|
+
lillipup: { encounters: ['wild'] },
|
|
622
|
+
herdier: { encounters: ['wild'] },
|
|
623
|
+
stoutland: { encounters: ['wild'] },
|
|
624
|
+
purrloin: { encounters: ['wild'] },
|
|
625
|
+
liepard: { encounters: ['wild'] },
|
|
626
|
+
pansage: { encounters: ['wild'] },
|
|
627
|
+
simisage: { encounters: ['wild'] },
|
|
628
|
+
pansear: { encounters: ['wild'] },
|
|
629
|
+
simisear: { encounters: ['wild'] },
|
|
630
|
+
panpour: { encounters: ['wild'] },
|
|
631
|
+
simipour: { encounters: ['wild'] },
|
|
632
|
+
munna: { encounters: ['wild'] },
|
|
633
|
+
musharna: { encounters: ['wild'] },
|
|
634
|
+
pidove: { encounters: ['wild'] },
|
|
635
|
+
tranquill: { encounters: ['wild'] },
|
|
636
|
+
unfezant: { encounters: ['wild'] },
|
|
637
|
+
blitzle: { encounters: ['wild'] },
|
|
638
|
+
zebstrika: { encounters: ['wild'] },
|
|
639
|
+
roggenrola: { encounters: ['wild'] },
|
|
640
|
+
boldore: { encounters: ['wild'] },
|
|
641
|
+
gigalith: { encounters: ['wild'] },
|
|
642
|
+
woobat: { encounters: ['wild'] },
|
|
643
|
+
swoobat: { encounters: ['wild'] },
|
|
644
|
+
drilbur: { encounters: ['wild'] },
|
|
645
|
+
exacdrill: { encounters: ['wild'] },
|
|
646
|
+
audino: { encounters: ['wild'] },
|
|
647
|
+
timburr: { encounters: ['egg', 'raid'] },
|
|
648
|
+
gurdurr: { encounters: ['egg', 'raid'] },
|
|
649
|
+
conkeldurr: { encounters: ['egg', 'raid'] },
|
|
650
|
+
tympole: { encounters: ['wild'] },
|
|
651
|
+
palpitoad: { encounters: ['wild'] },
|
|
652
|
+
seismitoad: { encounters: ['wild'] },
|
|
653
|
+
throh: { encounters: ['wild'] },
|
|
654
|
+
sawk: { encounters: ['wild'] },
|
|
655
|
+
sewaddle: { encounters: ['wild'] },
|
|
656
|
+
swadloon: { encounters: ['wild'] },
|
|
657
|
+
leavanny: { encounters: ['wild'] },
|
|
658
|
+
venipede: { encounters: ['wild'] },
|
|
659
|
+
whirlipede: { encounters: ['wild'] },
|
|
660
|
+
scolipede: { encounters: ['wild'] },
|
|
661
|
+
cottonee: { encounters: ['wild'] },
|
|
662
|
+
whimsicott: { encounters: ['wild'] },
|
|
663
|
+
petilil: { encounters: ['wild', 'noshiny'] },
|
|
664
|
+
lilligant: { encounters: ['wild', 'noshiny'] },
|
|
665
|
+
basculin: { encounters: ['wild', 'noshiny'] },
|
|
666
|
+
basculinbluestriped: { encounters: ['wild', 'noshiny'] },
|
|
667
|
+
sandile: { encounters: ['12kmegg', 'research', 'noshiny'] },
|
|
668
|
+
krokorok: { encounters: ['12kmegg', 'research', 'noshiny'] },
|
|
669
|
+
krookodile: { encounters: ['12kmegg', 'research', 'noshiny'] },
|
|
670
|
+
darumaka: { encounters: ['wild'] },
|
|
671
|
+
darumakagalar: { encounters: ['wild'] },
|
|
672
|
+
darmanitan: { encounters: ['wild'] },
|
|
673
|
+
darmanitangalar: { encounters: ['wild'] },
|
|
674
|
+
maractus: { encounters: ['wild', 'noshiny'] },
|
|
675
|
+
dwebble: { encounters: ['wild'] },
|
|
676
|
+
crustle: { encounters: ['wild'] },
|
|
677
|
+
scraggy: { encounters: ['wild', 'noshiny'] },
|
|
678
|
+
scrafty: { encounters: ['wild', 'noshiny'] },
|
|
679
|
+
sigilyph: { encounters: ['wild', 'noshiny'] },
|
|
680
|
+
yamask: { encounters: ['wild'] },
|
|
681
|
+
yamaskgalar: { encounters: ['egg', 'raid', 'research'] },
|
|
682
|
+
cofagrigus: { encounters: ['wild'] },
|
|
683
|
+
tirtouga: { encounters: ['wild'] },
|
|
684
|
+
carracosta: { encounters: ['wild'] },
|
|
685
|
+
archen: { encounters: ['wild'] },
|
|
686
|
+
archeops: { encounters: ['wild'] },
|
|
687
|
+
trubbish: { encounters: ['wild'] },
|
|
688
|
+
garbodor: { encounters: ['wild'] },
|
|
689
|
+
zorua: { encounters: ['wild', 'noshiny'] },
|
|
690
|
+
zoroark: { encounters: ['wild', 'noshiny'] },
|
|
691
|
+
minccino: { encounters: ['wild'] },
|
|
692
|
+
cinccino: { encounters: ['wild'] },
|
|
693
|
+
gothita: { encounters: ['wild', 'noshiny'] },
|
|
694
|
+
gothorita: { encounters: ['wild', 'noshiny'] },
|
|
695
|
+
gothitelle: { encounters: ['wild', 'noshiny'] },
|
|
696
|
+
solosis: { encounters: ['wild', 'noshiny'] },
|
|
697
|
+
duosion: { encounters: ['wild', 'noshiny'] },
|
|
698
|
+
reuniclus: { encounters: ['wild', 'noshiny'] },
|
|
699
|
+
ducklett: { encounters: ['wild', 'noshiny'] },
|
|
700
|
+
swanna: { encounters: ['wild', 'noshiny'] },
|
|
701
|
+
vanillite: { encounters: ['wild', 'noshiny'] },
|
|
702
|
+
vanillish: { encounters: ['wild', 'noshiny'] },
|
|
703
|
+
vanilluxe: { encounters: ['wild', 'noshiny'] },
|
|
704
|
+
deerling: { encounters: ['wild', 'noshiny'] },
|
|
705
|
+
deerlingsummer: { encounters: ['wild', 'noshiny'] },
|
|
706
|
+
deerlingautumn: { encounters: ['wild', 'noshiny'] },
|
|
707
|
+
deerlingwinter: { encounters: ['wild', 'noshiny'] },
|
|
708
|
+
sawsbuck: { encounters: ['wild', 'noshiny'] },
|
|
709
|
+
sawsbucksummer: { encounters: ['wild', 'noshiny'] },
|
|
710
|
+
sawsbuckautumn: { encounters: ['wild', 'noshiny'] },
|
|
711
|
+
sawsbuckwinter: { encounters: ['wild', 'noshiny'] },
|
|
712
|
+
emolga: { encounters: ['wild', 'noshiny'] },
|
|
713
|
+
karrablast: { encounters: ['wild'] },
|
|
714
|
+
escavalier: { encounters: ['wild'] },
|
|
715
|
+
foongus: { encounters: ['wild'] },
|
|
716
|
+
amoonguss: { encounters: ['wild'] },
|
|
717
|
+
frillish: { encounters: ['wild'] },
|
|
718
|
+
jellicent: { encounters: ['wild'] },
|
|
719
|
+
alomomola: { encounters: ['wild'] },
|
|
720
|
+
joltik: { encounters: ['wild', 'noshiny'] },
|
|
721
|
+
galvantula: { encounters: ['wild', 'noshiny'] },
|
|
722
|
+
ferroseed: { encounters: ['wild'] },
|
|
723
|
+
ferrothorn: { encounters: ['wild'] },
|
|
724
|
+
klink: { encounters: ['wild'] },
|
|
725
|
+
klang: { encounters: ['wild'] },
|
|
726
|
+
klinklang: { encounters: ['wild'] },
|
|
727
|
+
tynamo: { encounters: ['wild', 'noshiny'] },
|
|
728
|
+
eelektrik: { encounters: ['wild', 'noshiny'] },
|
|
729
|
+
eelektross: { encounters: ['wild', 'noshiny'] },
|
|
730
|
+
elgyem: { encounters: ['wild'] },
|
|
731
|
+
beheeyem: { encounters: ['wild'] },
|
|
732
|
+
litwick: { encounters: ['wild'] },
|
|
733
|
+
lampent: { encounters: ['wild'] },
|
|
734
|
+
chandelure: { encounters: ['wild'] },
|
|
735
|
+
axew: { encounters: ['wild'] },
|
|
736
|
+
fraxure: { encounters: ['wild'] },
|
|
737
|
+
haxorus: { encounters: ['wild'] },
|
|
738
|
+
cubchoo: { encounters: ['wild'] },
|
|
739
|
+
beartic: { encounters: ['wild'] },
|
|
740
|
+
cryogonal: { encounters: ['wild', 'noshiny'] },
|
|
741
|
+
shelmet: { encounters: ['wild'] },
|
|
742
|
+
accelgor: { encounters: ['wild'] },
|
|
743
|
+
stunfisk: { encounters: ['wild'] },
|
|
744
|
+
stunfiskgalar: { encounters: ['wild'] },
|
|
745
|
+
mienfoo: { encounters: ['wild', 'noshiny'] },
|
|
746
|
+
mienshao: { encounters: ['wild', 'noshiny'] },
|
|
747
|
+
druddigon: { encounters: ['raid', 'research'] },
|
|
748
|
+
golett: { encounters: ['wild', 'noshiny'] },
|
|
749
|
+
golurk: { encounters: ['wild', 'noshiny'] },
|
|
750
|
+
pawniard: { encounters: ['12kmegg', 'research'] },
|
|
751
|
+
bisharp: { encounters: ['12kmegg', 'research'] },
|
|
752
|
+
bouffalant: { encounters: ['wild', 'noshiny'] },
|
|
753
|
+
rufflet: { encounters: ['wild'] },
|
|
754
|
+
braviary: { encounters: ['wild'] },
|
|
755
|
+
braviaryhisui: { encounters: ['raid'] },
|
|
756
|
+
vullaby: { encounters: ['wild'] },
|
|
757
|
+
mandibuzz: { encounters: ['wild'] },
|
|
758
|
+
heatmor: { encounters: ['wild'] },
|
|
759
|
+
durant: { encounters: ['wild'] },
|
|
760
|
+
deino: { encounters: ['wild'] },
|
|
761
|
+
zweilous: { encounters: ['wild'] },
|
|
762
|
+
hydreigon: { encounters: ['wild'] },
|
|
763
|
+
larvesta: { encounters: ['egg', 'noshiny'] },
|
|
764
|
+
volcarona: { encounters: ['egg', 'noshiny'] },
|
|
765
|
+
cobalion: { encounters: ['raid', 'specialtrade'] },
|
|
766
|
+
terrakion: { encounters: ['raid', 'specialtrade'] },
|
|
767
|
+
virizion: { encounters: ['raid', 'specialtrade'] },
|
|
768
|
+
tornadus: { encounters: ['raid', 'specialtrade'] },
|
|
769
|
+
thundurus: { encounters: ['raid', 'specialtrade'] },
|
|
770
|
+
reshiram: { encounters: ['raid', 'specialtrade'] },
|
|
771
|
+
zekrom: { encounters: ['raid', 'specialtrade'] },
|
|
772
|
+
landorus: { encounters: ['raid', 'specialtrade'] },
|
|
773
|
+
kyurem: { encounters: ['raid', 'specialtrade'] },
|
|
774
|
+
// Kyurem-Black/White are not directly obtained from Pokemon GO but should be able to have legal Pokemon GO origin
|
|
775
|
+
kyuremblack: { encounters: ['raid', 'specialtrade'] },
|
|
776
|
+
kyuremwhite: { encounters: ['raid', 'specialtrade'] },
|
|
777
|
+
keldeo: { encounters: ['research', 'noshiny', 'notrade'] },
|
|
778
|
+
meloetta: { encounters: ['research', 'noshiny', 'notrade'] },
|
|
779
|
+
genesect: { encounters: ['raid', 'research', 'notrade'] },
|
|
780
|
+
chespin: { encounters: ['wild'] },
|
|
781
|
+
quilladin: { encounters: ['wild'] },
|
|
782
|
+
chesnaught: { encounters: ['wild'] },
|
|
783
|
+
fennekin: { encounters: ['wild'] },
|
|
784
|
+
braixen: { encounters: ['wild'] },
|
|
785
|
+
delphox: { encounters: ['wild'] },
|
|
786
|
+
froakie: { encounters: ['wild', 'noshiny'] },
|
|
787
|
+
frogadier: { encounters: ['wild', 'noshiny'] },
|
|
788
|
+
greninja: { encounters: ['wild', 'noshiny'] },
|
|
789
|
+
bunnelby: { encounters: ['wild'] },
|
|
790
|
+
diggersby: { encounters: ['wild'] },
|
|
791
|
+
fletchling: { encounters: ['wild'] },
|
|
792
|
+
fletchinder: { encounters: ['wild'] },
|
|
793
|
+
talonflame: { encounters: ['wild'] },
|
|
794
|
+
// Scatterbug is actually obtained in a special type of encounter,
|
|
795
|
+
// but the level and IV floors are the same as research encounters
|
|
796
|
+
scatterbug: { encounters: ['research', 'noshiny'] },
|
|
797
|
+
spewpa: { encounters: ['research', 'noshiny'] },
|
|
798
|
+
vivillon: { encounters: ['research', 'noshiny'] },
|
|
799
|
+
vivillonarchipelago: { encounters: ['research', 'noshiny'] },
|
|
800
|
+
vivilloncontinent: { encounters: ['research', 'noshiny'] },
|
|
801
|
+
vivillonelegant: { encounters: ['research', 'noshiny'] },
|
|
802
|
+
vivillongarden: { encounters: ['research', 'noshiny'] },
|
|
803
|
+
vivillonhighplains: { encounters: ['research', 'noshiny'] },
|
|
804
|
+
vivillonicysnow: { encounters: ['research', 'noshiny'] },
|
|
805
|
+
vivillonjungle: { encounters: ['research', 'noshiny'] },
|
|
806
|
+
vivillonmarine: { encounters: ['research', 'noshiny'] },
|
|
807
|
+
vivillonmodern: { encounters: ['research', 'noshiny'] },
|
|
808
|
+
vivillonmonsoon: { encounters: ['research', 'noshiny'] },
|
|
809
|
+
vivillonocean: { encounters: ['research', 'noshiny'] },
|
|
810
|
+
vivillonpolar: { encounters: ['research', 'noshiny'] },
|
|
811
|
+
vivillonriver: { encounters: ['research', 'noshiny'] },
|
|
812
|
+
vivillonsandstorm: { encounters: ['research', 'noshiny'] },
|
|
813
|
+
vivillonsavanna: { encounters: ['research', 'noshiny'] },
|
|
814
|
+
vivillonsun: { encounters: ['research', 'noshiny'] },
|
|
815
|
+
vivillontundra: { encounters: ['research', 'noshiny'] },
|
|
816
|
+
litleo: { encounters: ['wild'] },
|
|
817
|
+
pyroar: { encounters: ['wild'] },
|
|
818
|
+
flabebe: { encounters: ['wild', 'noshiny'] },
|
|
819
|
+
flabebeblue: { encounters: ['wild', 'noshiny'] },
|
|
820
|
+
flabebeorange: { encounters: ['wild', 'noshiny'] },
|
|
821
|
+
flabebewhite: { encounters: ['wild', 'noshiny'] },
|
|
822
|
+
flabebeyellow: { encounters: ['wild', 'noshiny'] },
|
|
823
|
+
floette: { encounters: ['wild', 'noshiny'] },
|
|
824
|
+
floetteblue: { encounters: ['wild', 'noshiny'] },
|
|
825
|
+
floetteorange: { encounters: ['wild', 'noshiny'] },
|
|
826
|
+
floettewhite: { encounters: ['wild', 'noshiny'] },
|
|
827
|
+
floetteyellow: { encounters: ['wild', 'noshiny'] },
|
|
828
|
+
florges: { encounters: ['wild', 'noshiny'] },
|
|
829
|
+
florgesblue: { encounters: ['wild', 'noshiny'] },
|
|
830
|
+
florgesorange: { encounters: ['wild', 'noshiny'] },
|
|
831
|
+
florgeswhite: { encounters: ['wild', 'noshiny'] },
|
|
832
|
+
florgesyellow: { encounters: ['wild', 'noshiny'] },
|
|
833
|
+
pancham: { encounters: ['wild', '12kmegg', 'raid', 'research', 'nowildshiny'] },
|
|
834
|
+
pangoro: { encounters: ['wild', '12kmegg', 'raid', 'research', 'nowildshiny'] },
|
|
835
|
+
furfrou: { encounters: ['wild'] },
|
|
836
|
+
furfroudandy: { encounters: ['wild'] },
|
|
837
|
+
furfroudebutante: { encounters: ['wild'] },
|
|
838
|
+
furfroudiamond: { encounters: ['wild'] },
|
|
839
|
+
furfrouheart: { encounters: ['wild'] },
|
|
840
|
+
furfroukabuki: { encounters: ['wild'] },
|
|
841
|
+
furfroulareine: { encounters: ['wild'] },
|
|
842
|
+
furfroumatron: { encounters: ['wild'] },
|
|
843
|
+
furfroupharaoh: { encounters: ['wild'] },
|
|
844
|
+
furfroustar: { encounters: ['wild'] },
|
|
845
|
+
espurr: { encounters: ['wild'] },
|
|
846
|
+
meowstic: { encounters: ['wild'] },
|
|
847
|
+
meowsticf: { encounters: ['wild'] },
|
|
848
|
+
spritzee: { encounters: ['wild'] },
|
|
849
|
+
aromatisse: { encounters: ['wild'] },
|
|
850
|
+
swirlix: { encounters: ['wild'] },
|
|
851
|
+
slurpuff: { encounters: ['wild'] },
|
|
852
|
+
inkay: { encounters: ['wild'] },
|
|
853
|
+
malamar: { encounters: ['wild'] },
|
|
854
|
+
binacle: { encounters: ['wild'] },
|
|
855
|
+
barbaracle: { encounters: ['wild'] },
|
|
856
|
+
skrelp: { encounters: ['wild', 'noshiny'] },
|
|
857
|
+
dragalge: { encounters: ['wild', 'noshiny'] },
|
|
858
|
+
clauncher: { encounters: ['wild'] },
|
|
859
|
+
clawitzer: { encounters: ['wild'] },
|
|
860
|
+
helioptile: { encounters: ['wild'] },
|
|
861
|
+
heliolisk: { encounters: ['wild'] },
|
|
862
|
+
tyrunt: { encounters: ['wild', 'noshiny'] },
|
|
863
|
+
tyrantrum: { encounters: ['wild', 'noshiny'] },
|
|
864
|
+
amaura: { encounters: ['wild', 'noshiny'] },
|
|
865
|
+
aurorus: { encounters: ['wild', 'noshiny'] },
|
|
866
|
+
sylveon: { encounters: ['wild'] },
|
|
867
|
+
hawlucha: { encounters: ['wild', 'noshiny'] },
|
|
868
|
+
dedenne: { encounters: ['wild'] },
|
|
869
|
+
carbink: { encounters: ['research', 'noshiny'] },
|
|
870
|
+
goomy: { encounters: ['wild', 'noshiny'] },
|
|
871
|
+
sliggoo: { encounters: ['wild', 'noshiny'] },
|
|
872
|
+
goodra: { encounters: ['wild', 'noshiny'] },
|
|
873
|
+
klefki: { encounters: ['wild', 'noshiny'] },
|
|
874
|
+
phantump: { encounters: ['wild', 'noshiny'] },
|
|
875
|
+
trevenant: { encounters: ['wild', 'noshiny'] },
|
|
876
|
+
pumpkaboo: { encounters: ['wild', 'noshiny'] },
|
|
877
|
+
pumpkaboolarge: { encounters: ['wild', 'noshiny'] },
|
|
878
|
+
pumpkaboosmall: { encounters: ['wild', 'noshiny'] },
|
|
879
|
+
pumpkaboosuper: { encounters: ['wild', 'noshiny'] },
|
|
880
|
+
gourgeist: { encounters: ['wild', 'noshiny'] },
|
|
881
|
+
gourgeistlarge: { encounters: ['wild', 'noshiny'] },
|
|
882
|
+
gourgeistsmall: { encounters: ['wild', 'noshiny'] },
|
|
883
|
+
gourgeistsuper: { encounters: ['wild', 'noshiny'] },
|
|
884
|
+
bergmite: { encounters: ['wild'] },
|
|
885
|
+
avalugg: { encounters: ['wild'] },
|
|
886
|
+
avalugghisui: { encounters: ['raid'] },
|
|
887
|
+
noibat: { encounters: ['wild'] },
|
|
888
|
+
noivern: { encounters: ['wild'] },
|
|
889
|
+
xerneas: { encounters: ['raid', 'specialtrade'] },
|
|
890
|
+
yveltal: { encounters: ['raid', 'specialtrade'] },
|
|
891
|
+
// zygarde: {encounters: ['research', 'noshiny']}, trading/transferring may be made available in the future
|
|
892
|
+
// diancie: {encounters: ['research', 'noshiny', 'notrade']}, transferring may be made available in the future
|
|
893
|
+
hoopa: { encounters: ['raid', 'research', 'noshiny', 'notrade'] },
|
|
894
|
+
rowlet: { encounters: ['wild', 'noshiny'] },
|
|
895
|
+
dartrix: { encounters: ['wild', 'noshiny'] },
|
|
896
|
+
decidueye: { encounters: ['wild', 'noshiny'] },
|
|
897
|
+
litten: { encounters: ['wild', 'noshiny'] },
|
|
898
|
+
torracat: { encounters: ['wild', 'noshiny'] },
|
|
899
|
+
incineroar: { encounters: ['wild', 'noshiny'] },
|
|
900
|
+
popplio: { encounters: ['wild', 'noshiny'] },
|
|
901
|
+
brionne: { encounters: ['wild', 'noshiny'] },
|
|
902
|
+
primarina: { encounters: ['wild', 'noshiny'] },
|
|
903
|
+
pikipek: { encounters: ['wild', 'noshiny'] },
|
|
904
|
+
trumbeak: { encounters: ['wild', 'noshiny'] },
|
|
905
|
+
toucannon: { encounters: ['wild', 'noshiny'] },
|
|
906
|
+
yungoos: { encounters: ['wild'] },
|
|
907
|
+
gumshoos: { encounters: ['wild'] },
|
|
908
|
+
grubbin: { encounters: ['wild', 'noshiny'] },
|
|
909
|
+
charjabug: { encounters: ['wild', 'noshiny'] },
|
|
910
|
+
vikavolt: { encounters: ['wild', 'noshiny'] },
|
|
911
|
+
crabrawler: { encounters: ['wild', 'noshiny'] },
|
|
912
|
+
crabominable: { encounters: ['wild', 'noshiny'] },
|
|
913
|
+
oricorio: { encounters: ['wild', 'noshiny'] },
|
|
914
|
+
cutiefly: { encounters: ['wild', 'noshiny'] },
|
|
915
|
+
ribombee: { encounters: ['wild', 'noshiny'] },
|
|
916
|
+
rockruff: { encounters: ['wild'] },
|
|
917
|
+
lycanroc: { encounters: ['wild'] },
|
|
918
|
+
lycanrocmidnight: { encounters: ['wild'] },
|
|
919
|
+
mareanie: { encounters: ['wild', 'noshiny'] },
|
|
920
|
+
toxapex: { encounters: ['wild', 'noshiny'] },
|
|
921
|
+
dewpider: { encounters: ['wild', 'noshiny'] },
|
|
922
|
+
araquanid: { encounters: ['wild', 'noshiny'] },
|
|
923
|
+
fomantis: { encounters: ['wild'] },
|
|
924
|
+
lurantis: { encounters: ['wild'] },
|
|
925
|
+
morelull: { encounters: ['wild', 'noshiny'] },
|
|
926
|
+
shiinotic: { encounters: ['wild', 'noshiny'] },
|
|
927
|
+
salandit: { encounters: ['12kmegg', 'noshiny'] },
|
|
928
|
+
salazzle: { encounters: ['12kmegg', 'noshiny'] },
|
|
929
|
+
stufful: { encounters: ['wild'] },
|
|
930
|
+
bewear: { encounters: ['wild'] },
|
|
931
|
+
bounsweet: { encounters: ['wild', 'noshiny'] },
|
|
932
|
+
steenee: { encounters: ['wild', 'noshiny'] },
|
|
933
|
+
tsareena: { encounters: ['wild', 'noshiny'] },
|
|
934
|
+
comfey: { encounters: ['wild', 'noshiny'] },
|
|
935
|
+
oranguru: { encounters: ['wild', 'noshiny'] },
|
|
936
|
+
wimpod: { encounters: ['wild', 'noshiny'] },
|
|
937
|
+
golisopod: { encounters: ['wild', 'noshiny'] },
|
|
938
|
+
sandygast: { encounters: ['raid', 'research', 'noshiny'] },
|
|
939
|
+
palossand: { encounters: ['raid', 'research', 'noshiny'] },
|
|
940
|
+
komala: { encounters: ['wild', 'noshiny'] },
|
|
941
|
+
turtonator: { encounters: ['raid', 'research'] },
|
|
942
|
+
togedemaru: { encounters: ['wild', 'noshiny'] },
|
|
943
|
+
bruxish: { encounters: ['wild', 'noshiny'] },
|
|
944
|
+
jangmoo: { encounters: ['wild', 'noshiny'] },
|
|
945
|
+
hakamoo: { encounters: ['wild', 'noshiny'] },
|
|
946
|
+
kommoo: { encounters: ['wild', 'noshiny'] },
|
|
947
|
+
tapukoko: { encounters: ['raid'] },
|
|
948
|
+
tapulele: { encounters: ['raid'] },
|
|
949
|
+
tapubulu: { encounters: ['raid'] },
|
|
950
|
+
tapufini: { encounters: ['raid'] },
|
|
951
|
+
cosmog: { encounters: ['research', 'noshiny', 'specialtrade'] },
|
|
952
|
+
cosmoem: { encounters: ['research', 'noshiny', 'specialtrade'] },
|
|
953
|
+
solgaleo: { encounters: ['research', 'noshiny', 'specialtrade'] },
|
|
954
|
+
lunala: { encounters: ['research', 'noshiny', 'specialtrade'] },
|
|
955
|
+
nihilego: { encounters: ['raid', 'research', 'specialtrade'] },
|
|
956
|
+
buzzwole: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
|
|
957
|
+
pheromosa: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
|
|
958
|
+
xurkitree: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
|
|
959
|
+
celesteela: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
|
|
960
|
+
kartana: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
|
|
961
|
+
guzzlord: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
|
|
962
|
+
meltan: { encounters: ['wild'] },
|
|
963
|
+
melmetal: { encounters: ['wild'] },
|
|
964
|
+
skwovet: { encounters: ['wild', 'noshiny'] },
|
|
965
|
+
greedent: { encounters: ['wild', 'noshiny'] },
|
|
966
|
+
obstagoon: { encounters: ['wild'] },
|
|
967
|
+
perrserker: { encounters: ['wild'] },
|
|
968
|
+
sirfetchd: { encounters: ['wild'] },
|
|
969
|
+
mrrime: { encounters: ['wild'] },
|
|
970
|
+
runerigus: { encounters: ['egg', 'raid', 'research'] },
|
|
971
|
+
falinks: { encounters: ['wild', 'noshiny'] },
|
|
972
|
+
zacian: { encounters: ['raid', 'noshiny', 'specialtrade'] },
|
|
973
|
+
zamazenta: { encounters: ['raid', 'noshiny', 'specialtrade'] },
|
|
974
|
+
zarude: { encounters: ['research', 'noshiny', 'notrade'] },
|
|
975
|
+
regieleki: { encounters: ['raid', 'noshiny', 'specialtrade'] },
|
|
976
|
+
regidrago: { encounters: ['raid', 'noshiny', 'specialtrade'] },
|
|
977
|
+
kleavor: { encounters: ['wild'] },
|
|
978
|
+
ursaluna: { encounters: ['wild'] },
|
|
979
|
+
sneasler: { encounters: ['wild', 'noshiny'] },
|
|
980
|
+
overqwil: { encounters: ['wild', 'noshiny'] },
|
|
981
|
+
gimmighoulroaming: { encounters: ['wild', 'noshiny'] },
|
|
982
|
+
gholdengo: { encounters: ['wild', 'noshiny'] },
|
|
983
|
+
};
|
|
984
|
+
//# sourceMappingURL=pokemongo.mjs.map
|