mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-24 20:33:04 +00:00
chore: bring over scripts used when we moved away from Veekun
This commit is contained in:
parent
41c24dccc6
commit
468c39a557
24 changed files with 17355 additions and 0 deletions
65
Resources/scripts/data/gen8/ability_names.py
Normal file
65
Resources/scripts/data/gen8/ability_names.py
Normal file
|
@ -0,0 +1,65 @@
|
|||
import csv
|
||||
import os
|
||||
from read_swsh import TextFile
|
||||
|
||||
# data_path contains the countents of the `message` folder found in sword/shield's romfs:/bin/
|
||||
if __name__ == "__main__":
|
||||
path = os.path.abspath(os.path.dirname(__file__))
|
||||
data_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "..", "data")
|
||||
csv_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "pokedex", "data", "csv")
|
||||
|
||||
languages = {
|
||||
"JPN": 1,
|
||||
"Korean": 3,
|
||||
"Trad_Chinese": 4,
|
||||
"French": 5,
|
||||
"German": 6,
|
||||
"Spanish": 7,
|
||||
"Italian": 8,
|
||||
"English": 9,
|
||||
"JPN_KANJI": 11,
|
||||
"Simp_Chinese": 12,
|
||||
}
|
||||
|
||||
header = ["ability_id", "local_language_id", "name"]
|
||||
entries = []
|
||||
|
||||
# conquest abilities
|
||||
with open(os.path.join(csv_path, "ability_names.csv"), "r", encoding="utf-8", newline="") as csv_file:
|
||||
reader = csv.reader(csv_file, delimiter=",")
|
||||
for row in reader:
|
||||
if row[0].isnumeric() and int(row[0]) > 10000:
|
||||
entries.append([int(row[0]), int(row[1]), row[2]])
|
||||
|
||||
with open(os.path.join(csv_path, "ability_names.csv"), "w", encoding="utf-8", newline="") as csv_file:
|
||||
writer = csv.writer(csv_file, delimiter=",", lineterminator="\n")
|
||||
for language_dir, language_id in languages.items():
|
||||
try:
|
||||
# Parse through the .dat and .tbl
|
||||
textFile = TextFile(
|
||||
os.path.join(data_path, language_dir, "common", "tokusei.dat"),
|
||||
os.path.join(data_path, language_dir, "common", "tokusei.tbl"),
|
||||
)
|
||||
dictionary = textFile.GetDict()
|
||||
except UserWarning as error:
|
||||
print(error)
|
||||
|
||||
try:
|
||||
if len(dictionary) == 0:
|
||||
raise UserWarning("Error: the files returned no data")
|
||||
|
||||
# Loop through the text file's dictionary and append the parsed data into the list
|
||||
for label, text in dictionary.items():
|
||||
id = int(label[0].split("_")[1])
|
||||
if id == 0:
|
||||
continue
|
||||
entries.append([id, language_id, text])
|
||||
|
||||
except UserWarning as error:
|
||||
print(error)
|
||||
|
||||
# Sort the list based on species id
|
||||
writer.writerow(header)
|
||||
entries.sort()
|
||||
writer.writerows(entries)
|
||||
print("Done")
|
65
Resources/scripts/data/gen8/move_names.py
Normal file
65
Resources/scripts/data/gen8/move_names.py
Normal file
|
@ -0,0 +1,65 @@
|
|||
import csv
|
||||
import os
|
||||
from read_swsh import TextFile
|
||||
|
||||
# data_path contains the countents of the `message` folder found in sword/shield's romfs:/bin/
|
||||
if __name__ == "__main__":
|
||||
path = os.path.abspath(os.path.dirname(__file__))
|
||||
data_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "..", "data")
|
||||
csv_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "pokedex", "data", "csv")
|
||||
|
||||
languages = {
|
||||
"JPN": 1,
|
||||
"Korean": 3,
|
||||
"Trad_Chinese": 4,
|
||||
"French": 5,
|
||||
"German": 6,
|
||||
"Spanish": 7,
|
||||
"Italian": 8,
|
||||
"English": 9,
|
||||
"JPN_KANJI": 11,
|
||||
"Simp_Chinese": 12,
|
||||
}
|
||||
|
||||
header = ["move_id", "local_language_id", "name"]
|
||||
entries = []
|
||||
|
||||
# shadow moves
|
||||
with open(os.path.join(csv_path, "move_names.csv"), "r", encoding="utf-8", newline="") as csv_file:
|
||||
reader = csv.reader(csv_file, delimiter=",")
|
||||
for row in reader:
|
||||
if row[0].isnumeric() and int(row[0]) > 10000:
|
||||
entries.append([int(row[0]), int(row[1]), row[2]])
|
||||
|
||||
with open(os.path.join(csv_path, "move_names.csv"), "w", encoding="utf-8", newline="") as csv_file:
|
||||
writer = csv.writer(csv_file, delimiter=",", lineterminator="\n")
|
||||
for language_dir, language_id in languages.items():
|
||||
try:
|
||||
# Parse through the .dat and .tbl
|
||||
textFile = TextFile(
|
||||
os.path.join(data_path, language_dir, "common", "wazaname.dat"),
|
||||
os.path.join(data_path, language_dir, "common", "wazaname.tbl"),
|
||||
)
|
||||
dictionary = textFile.GetDict()
|
||||
except UserWarning as error:
|
||||
print(error)
|
||||
|
||||
try:
|
||||
if len(dictionary) == 0:
|
||||
raise UserWarning("Error: the files returned no data")
|
||||
|
||||
# Loop through the text file's dictionary and append the parsed data into the list
|
||||
for label, text in dictionary.items():
|
||||
id = int(label[0].split("_")[1])
|
||||
if id == 0:
|
||||
continue
|
||||
entries.append([id, language_id, text.strip("\r")])
|
||||
|
||||
except UserWarning as error:
|
||||
print(error)
|
||||
|
||||
# Sort the list based on species id
|
||||
writer.writerow(header)
|
||||
entries.sort()
|
||||
writer.writerows(entries)
|
||||
print("Done")
|
214
Resources/scripts/data/gen8/read_swsh.py
Normal file
214
Resources/scripts/data/gen8/read_swsh.py
Normal file
|
@ -0,0 +1,214 @@
|
|||
import copy
|
||||
import os
|
||||
import struct
|
||||
import sys
|
||||
|
||||
class TextLine():
|
||||
offset = None
|
||||
length = None
|
||||
|
||||
class TextFile():
|
||||
def __init__(this, path1, path2):
|
||||
this.__dictEntries = {}
|
||||
this.__magic = 0x42544841
|
||||
this.__KEY_BASE = 0x7C89
|
||||
this.__KEY_ADVANCE = 0x2983
|
||||
this.__KEY_VARIABLE = 0x0010
|
||||
this.__KEY_TERMINATOR = 0x0000
|
||||
|
||||
# Load dex labels
|
||||
if (os.path.splitext(path1)[1] == ".tbl"):
|
||||
this.__OpenTbl(path1)
|
||||
elif (os.path.splitext(path2)[1] == ".tbl"):
|
||||
this.__OpenTbl(path2)
|
||||
else:
|
||||
raise UserWarning("Error: a .tbl was not given")
|
||||
|
||||
# Load dex entries
|
||||
if (os.path.splitext(path1)[1] == ".dat"):
|
||||
this.__OpenDat(path1)
|
||||
elif (os.path.splitext(path2)[1] == ".dat"):
|
||||
this.__OpenDat(path2)
|
||||
else:
|
||||
raise UserWarning("Error: a .dat was not given")
|
||||
|
||||
# The table has 1 more entry than the dat to show when the table ends
|
||||
if (len(this.__labels) == len(this.__lines) + 1):
|
||||
for i in range(0, len(this.__lines)):
|
||||
this.__dictEntries[this.__labels[i]] = this.__lines[i]
|
||||
|
||||
@property
|
||||
def __TextSections(this):
|
||||
"""(2 bytes) Gets the number of text sections"""
|
||||
return struct.unpack_from("<H", this.__data, 0x0)[0]
|
||||
|
||||
@property
|
||||
def __LineCount(this):
|
||||
"""(2 bytes) Gets the amount of lines"""
|
||||
return struct.unpack_from("<H", this.__data, 0x2)[0]
|
||||
|
||||
@property
|
||||
def __TotalLength(this):
|
||||
"""(4 bytes) Gets the total character length of all text sections"""
|
||||
return struct.unpack_from("<I", this.__data, 0x4)[0]
|
||||
|
||||
@property
|
||||
def __InitialKey(this):
|
||||
"""(4 bytes) Gets the initial key; should be 0x00000000"""
|
||||
return struct.unpack_from("<I", this.__data, 0x8)[0]
|
||||
|
||||
@property
|
||||
def __SectionDataOffset(this):
|
||||
"""(4 bytes) Gets the offset where the data section begins"""
|
||||
return struct.unpack_from("<I", this.__data, 0xC)[0]
|
||||
|
||||
@property
|
||||
def __SectionLength(this):
|
||||
"""(4 bytes) Gets the length of characters the given section is"""
|
||||
offset = this.__SectionDataOffset
|
||||
return struct.unpack_from("<I", this.__data, offset)[0]
|
||||
|
||||
@property
|
||||
def __LineOffsets(this):
|
||||
"""Figures out the offset for each entry based on the data section offset"""
|
||||
result = [None] * this.__LineCount
|
||||
sdo = int(this.__SectionDataOffset)
|
||||
for i in range(0, len(result)):
|
||||
result[i] = TextLine()
|
||||
result[i].offset = struct.unpack_from("<i", this.__data, (i * 8) + sdo + 4)[0] + sdo
|
||||
result[i].length = struct.unpack_from("<h", this.__data, (i * 8) + sdo + 8)[0]
|
||||
|
||||
return result
|
||||
|
||||
def GetLabels(this):
|
||||
return this.__labels
|
||||
|
||||
def GetDict(this):
|
||||
return this.__dictEntries
|
||||
|
||||
def HashFNV1_64(this, word):
|
||||
"""Fowler-Noll-Vo hash function; 64-bit"""
|
||||
fnvPrime_64 = 0x100000001b3
|
||||
offsetBasis_64 = 0xCBF29CE484222645
|
||||
|
||||
hash = offsetBasis_64
|
||||
for c in word:
|
||||
hash = hash ^ ord(c)
|
||||
# Cast hash to at 64-bit value
|
||||
hash = (hash * fnvPrime_64) % 2**64
|
||||
|
||||
return hash
|
||||
|
||||
def __LineData(this, data):
|
||||
"""Loads the file into a list to later decrypt"""
|
||||
key = copy.copy(this.__KEY_BASE)
|
||||
result = [None] * this.__LineCount
|
||||
lines = this.__LineOffsets
|
||||
|
||||
for i in range(0, len(lines)):
|
||||
# Make a list twice the size of the current text line size
|
||||
encrypted = lines[i].length * 2
|
||||
# Then copy the encrypted line starting from the given offset for however long the given list is
|
||||
end = lines[i].offset + encrypted
|
||||
encrypted = this.__data[lines[i].offset:end]
|
||||
|
||||
result[i] = this.__CryptLineData(encrypted, key)
|
||||
# Cast key to a 16-bits (otherwise things break)
|
||||
key = (key + this.__KEY_ADVANCE) % 2**16
|
||||
|
||||
return result
|
||||
|
||||
def __CryptLineData(this, data, key):
|
||||
"""Decrypts the given line into a list of bytes"""
|
||||
copied = copy.copy(data)
|
||||
result = [None] * len(copied)
|
||||
|
||||
for i in range(0, len(copied), 2):
|
||||
result[i] = copied[i] ^ (key % 256)
|
||||
result[i + 1] = copied[i + 1] ^ ((key >> 8) % 256)
|
||||
# Bit-shift and OR key, then cast to 16-bits (otherwise things break)
|
||||
key = (key << 3 | key >> 13) % 2**16
|
||||
|
||||
return result
|
||||
|
||||
def __GetLineString(this, data):
|
||||
"""Turns the given list of bytes into a finished string"""
|
||||
if (data is None):
|
||||
return None
|
||||
|
||||
string = ""
|
||||
i = 0
|
||||
while (i < len(data)):
|
||||
# Cast 2 bytes to figure out what to do next
|
||||
value = struct.unpack_from("<H", data, i)[0]
|
||||
if (value == this.__KEY_TERMINATOR):
|
||||
break;
|
||||
i += 2
|
||||
|
||||
if (value == this.__KEY_TERMINATOR):
|
||||
return string
|
||||
elif (value == this.__KEY_VARIABLE):
|
||||
string += "[VAR]"
|
||||
elif (value == "\n"):
|
||||
string += "\n"
|
||||
elif (value == "\\"):
|
||||
string += "\\"
|
||||
elif (value == "["):
|
||||
string += "\["
|
||||
else:
|
||||
string += chr(value)
|
||||
|
||||
return string
|
||||
|
||||
def __MakeLabelHash(this, f):
|
||||
"""Returns the label name and a FNV1_64 hash"""
|
||||
# Next 8 bytes is the hash of the label name
|
||||
hash = struct.unpack("<Q", f.read(8))[0]
|
||||
# Next 2 bytes is the label"s name length
|
||||
nameLength = struct.unpack("<H", f.read(2))[0]
|
||||
# Read the bytes until 0x0 is found
|
||||
name = this.__ReadUntil(f, 0x0)
|
||||
|
||||
if (this.HashFNV1_64(name) == hash):
|
||||
return name, hash
|
||||
|
||||
def __OpenDat(this, path):
|
||||
with open(path, "rb") as file:
|
||||
try:
|
||||
this.__data = file.read()
|
||||
except:
|
||||
raise UserWarning("Error: Could not open .dat")
|
||||
|
||||
# Decrypt the text
|
||||
cryptedText = this.__LineData(this.__data)
|
||||
this.__lines = []
|
||||
for line in cryptedText:
|
||||
this.__lines.append(this.__GetLineString(bytearray(line)))
|
||||
|
||||
def __OpenTbl(this, path):
|
||||
with open(path, "rb") as f:
|
||||
try:
|
||||
# First four bytes is "magic"; needs to be 0x42544841
|
||||
testMagic = struct.unpack("<I", f.read(4))[0]
|
||||
if (testMagic == this.__magic):
|
||||
# Next four bytes is the number of entries to read
|
||||
count = struct.unpack("<I", f.read(4))[0]
|
||||
this.__labels = []
|
||||
# Iterate through the entries
|
||||
for i in range(0, count):
|
||||
this.__labels.append(this.__MakeLabelHash(f))
|
||||
|
||||
except struct.error:
|
||||
raise UserWarning("Error: Coult not open .tbl")
|
||||
|
||||
def __ReadUntil(this, f, value):
|
||||
"""Reads the given file until it reaches the given value"""
|
||||
string = ""
|
||||
c = f.read(1)
|
||||
end = bytes([value])
|
||||
while (c != end):
|
||||
# Read one byte at a time to get each character
|
||||
string += c.decode("utf-8")
|
||||
c = f.read(1)
|
||||
|
||||
return string
|
92
Resources/scripts/data/gen8/to_csv.py
Normal file
92
Resources/scripts/data/gen8/to_csv.py
Normal file
|
@ -0,0 +1,92 @@
|
|||
import csv
|
||||
import os
|
||||
from read_swsh import TextFile
|
||||
|
||||
if __name__ == "__main__":
|
||||
path = os.path.abspath(os.path.dirname(__file__))
|
||||
fileList = os.listdir(path)
|
||||
|
||||
entriesList = []
|
||||
goodFiles = []
|
||||
|
||||
# Get all the files in the current directory
|
||||
for file in fileList:
|
||||
ext = os.path.splitext(path + "\\" + file)[1]
|
||||
# Only get the .dat and .tbl files
|
||||
if (ext == ".tbl" or ext == ".dat"):
|
||||
goodFiles.append(file)
|
||||
|
||||
# Parse through each file and put it in flavor_text
|
||||
with open(path + "\\pokemon_species_flavor_text_updated.csv", "w", encoding = "utf-8", newline = "") as fCSV:
|
||||
writer = csv.writer(fCSV, delimiter = ",")
|
||||
for i in range(0, len(goodFiles), 2):
|
||||
file1 = os.path.splitext(path + "\\" + goodFiles[i])[0]
|
||||
file2 = os.path.splitext(path + "\\" + goodFiles[i + 1])[0]
|
||||
# Ensure that we're wroking with the same .dat and .tbl pair
|
||||
if (file1 == file2):
|
||||
try:
|
||||
print(goodFiles[i])
|
||||
print(goodFiles[i + 1])
|
||||
# Parse through the .dat and .tbl
|
||||
textFile = TextFile(path + "\\" + goodFiles[i], path + "\\" + goodFiles[i + 1])
|
||||
dictionary = textFile.GetDict()
|
||||
except UserWarning as error:
|
||||
print(error)
|
||||
except Exception as error:
|
||||
print(error)
|
||||
|
||||
try:
|
||||
if (len(dictionary) == 0):
|
||||
raise UserWarning('Error: the files returned no data')
|
||||
|
||||
# Get the language and game from the file's name
|
||||
fileName = os.path.basename(path + "\\" + goodFiles[i]).lower().split("_")
|
||||
language = int(fileName[0])
|
||||
game = fileName[1]
|
||||
|
||||
version = -1
|
||||
if game == "lgpe":
|
||||
# Let's Go Pikachu, then Eevee
|
||||
version = 31
|
||||
dupe = True
|
||||
|
||||
elif game == "swsh":
|
||||
dupe = False
|
||||
if fileName[3] == "a":
|
||||
# Sword
|
||||
version = 33
|
||||
elif fileName[3] == "b":
|
||||
# Shield
|
||||
version = 34
|
||||
|
||||
# Loop through the text file's dictionary and append the parsed data into the list
|
||||
for label, flavor_text in dictionary.items():
|
||||
if (len(flavor_text) > 1 and "[VAR]" not in flavor_text):
|
||||
species = int(label[0][14:17])
|
||||
entriesList.append([species, version, language, flavor_text])
|
||||
|
||||
# Append a duplicate entry for Let's Go Eevee (both games use the same table)
|
||||
if (dupe):
|
||||
entriesList.append([species, 32, language, flavor_text])
|
||||
|
||||
except UserWarning as error:
|
||||
print(error)
|
||||
except Exception as error:
|
||||
print(error)
|
||||
|
||||
with open(path + "\\pokemon_species_flavor_text.csv", "r", encoding = "utf-8", newline = "") as fPoke:
|
||||
reader = csv.reader(fPoke, delimiter = ",")
|
||||
|
||||
currentEntries = []
|
||||
# Get first line (info on what each column represents)
|
||||
header = next(reader)
|
||||
for row in reader:
|
||||
# species_id, version_id, language_id, flavor_text
|
||||
row = [int(row[0]), int(row[1]), int(row[2]), row[3]]
|
||||
entriesList.append(row)
|
||||
|
||||
# Sort the list based on species id
|
||||
writer.writerow(header)
|
||||
entriesList.sort()
|
||||
writer.writerows(entriesList)
|
||||
print("Done")
|
29
Resources/scripts/data/scraper_go/data/new_abilities.txt
Normal file
29
Resources/scripts/data/scraper_go/data/new_abilities.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
Ball Fetch (Ability)
|
||||
Cotton Down (Ability)
|
||||
Dauntless Shield (Ability)
|
||||
Dragon's Maw (Ability)
|
||||
Gorilla Tactics (Ability)
|
||||
Gulp Missile (Ability)
|
||||
Hunger Switch (Ability)
|
||||
Ice Face (Ability)
|
||||
Ice Scales (Ability)
|
||||
Intrepid Sword (Ability)
|
||||
Libero (Ability)
|
||||
Mimicry (Ability)
|
||||
Mirror Armor (Ability)
|
||||
Neutralizing Gas (Ability)
|
||||
Pastel Veil (Ability)
|
||||
Perish Body (Ability)
|
||||
Power Spot (Ability)
|
||||
Propeller Tail (Ability)
|
||||
Punk Rock (Ability)
|
||||
Quick Draw (Ability)
|
||||
Ripen (Ability)
|
||||
Sand Spit (Ability)
|
||||
Screen Cleaner (Ability)
|
||||
Stalwart (Ability)
|
||||
Steam Engine (Ability)
|
||||
Steely Spirit (Ability)
|
||||
Transistor (Ability)
|
||||
Unseen Fist (Ability)
|
||||
Wandering Spirit (Ability)
|
114
Resources/scripts/data/scraper_go/data/new_moves.txt
Normal file
114
Resources/scripts/data/scraper_go/data/new_moves.txt
Normal file
|
@ -0,0 +1,114 @@
|
|||
Apple Acid (move)
|
||||
Aura Wheel (move)
|
||||
Behemoth Bash (move)
|
||||
Behemoth Blade (move)
|
||||
Body Press (move)
|
||||
Bolt Beak (move)
|
||||
Branch Poke (move)
|
||||
Breaking Swipe (move)
|
||||
Burning Jealousy (move)
|
||||
Clangorous Soul (move)
|
||||
Coaching (move)
|
||||
Corrosive Gas (move)
|
||||
Court Change (move)
|
||||
Decorate (move)
|
||||
Dragon Darts (move)
|
||||
Dragon Energy (move)
|
||||
Drum Beating (move)
|
||||
Dual Wingbeat (move)
|
||||
Dynamax Cannon (move)
|
||||
Eternabeam (move)
|
||||
Expanding Force (move)
|
||||
False Surrender (move)
|
||||
Fiery Wrath (move)
|
||||
Fishious Rend (move)
|
||||
Flip Turn (move)
|
||||
Freezing Glare (move)
|
||||
G-Max Befuddle (move)
|
||||
G-Max Cannonade (move)
|
||||
G-Max Centiferno (move)
|
||||
G-Max Chi Strike (move)
|
||||
G-Max Cuddle (move)
|
||||
G-Max Depletion (move)
|
||||
G-Max Drum Solo (move)
|
||||
G-Max Finale (move)
|
||||
G-Max Fireball (move)
|
||||
G-Max Foam Burst (move)
|
||||
G-Max Gold Rush (move)
|
||||
G-Max Gravitas (move)
|
||||
G-Max Hydrosnipe (move)
|
||||
G-Max Malodor (move)
|
||||
G-Max Meltdown (move)
|
||||
G-Max One Blow (move)
|
||||
G-Max Rapid Flow (move)
|
||||
G-Max Replenish (move)
|
||||
G-Max Resonance (move)
|
||||
G-Max Sandblast (move)
|
||||
G-Max Smite (move)
|
||||
G-Max Snooze (move)
|
||||
G-Max Steelsurge (move)
|
||||
G-Max Stonesurge (move)
|
||||
G-Max Stun Shock (move)
|
||||
G-Max Sweetness (move)
|
||||
G-Max Tartness (move)
|
||||
G-Max Terror (move)
|
||||
G-Max Vine Lash (move)
|
||||
G-Max Volcalith (move)
|
||||
G-Max Volt Crash (move)
|
||||
G-Max Wildfire (move)
|
||||
G-Max Wind Rage (move)
|
||||
Grassy Glide (move)
|
||||
Grav Apple (move)
|
||||
Jaw Lock (move)
|
||||
Jungle Healing (move)
|
||||
Lash Out (move)
|
||||
Life Dew (move)
|
||||
Magic Powder (move)
|
||||
Max Airstream (move)
|
||||
Max Darkness (move)
|
||||
Max Flare (move)
|
||||
Max Flutterby (move)
|
||||
Max Geyser (move)
|
||||
Max Guard (move)
|
||||
Max Hailstorm (move)
|
||||
Max Knuckle (move)
|
||||
Max Lightning (move)
|
||||
Max Mindstorm (move)
|
||||
Max Ooze (move)
|
||||
Max Overgrowth (move)
|
||||
Max Phantasm (move)
|
||||
Max Quake (move)
|
||||
Max Rockfall (move)
|
||||
Max Starfall (move)
|
||||
Max Steelspike (move)
|
||||
Max Strike (move)
|
||||
Max Wyrmwind (move)
|
||||
Meteor Assault (move)
|
||||
Meteor Beam (move)
|
||||
Misty Explosion (move)
|
||||
No Retreat (move)
|
||||
Obstruct (move)
|
||||
Octolock (move)
|
||||
Overdrive (move)
|
||||
Poltergeist (move)
|
||||
Pyro Ball (move)
|
||||
Rising Voltage (move)
|
||||
Scale Shot (move)
|
||||
Scorching Sands (move)
|
||||
Shell Side Arm (move)
|
||||
Skitter Smack (move)
|
||||
Snap Trap (move)
|
||||
Snipe Shot (move)
|
||||
Spirit Break (move)
|
||||
Steel Beam (move)
|
||||
Steel Roller (move)
|
||||
Strange Steam (move)
|
||||
Stuff Cheeks (move)
|
||||
Surging Strikes (move)
|
||||
Tar Shot (move)
|
||||
Teatime (move)
|
||||
Terrain Pulse (move)
|
||||
Thunder Cage (move)
|
||||
Thunderous Kick (move)
|
||||
Triple Axel (move)
|
||||
Wicked Blow (move)
|
87
Resources/scripts/data/scraper_go/data/new_pokemon.txt
Normal file
87
Resources/scripts/data/scraper_go/data/new_pokemon.txt
Normal file
|
@ -0,0 +1,87 @@
|
|||
Alcremie_(Pok%C3%A9mon)
|
||||
Appletun_(Pok%C3%A9mon)
|
||||
Applin_(Pok%C3%A9mon)
|
||||
Arctovish_(Pok%C3%A9mon)
|
||||
Arctozolt_(Pok%C3%A9mon)
|
||||
Arrokuda_(Pok%C3%A9mon)
|
||||
Barraskewda_(Pok%C3%A9mon)
|
||||
Blipbug_(Pok%C3%A9mon)
|
||||
Boltund_(Pok%C3%A9mon)
|
||||
Calyrex_(Pok%C3%A9mon)
|
||||
Carkol_(Pok%C3%A9mon)
|
||||
Centiskorch_(Pok%C3%A9mon)
|
||||
Chewtle_(Pok%C3%A9mon)
|
||||
Cinderace_(Pok%C3%A9mon)
|
||||
Clobbopus_(Pok%C3%A9mon)
|
||||
Coalossal_(Pok%C3%A9mon)
|
||||
Copperajah_(Pok%C3%A9mon)
|
||||
Corviknight_(Pok%C3%A9mon)
|
||||
Corvisquire_(Pok%C3%A9mon)
|
||||
Cramorant_(Pok%C3%A9mon)
|
||||
Cufant_(Pok%C3%A9mon)
|
||||
Cursola_(Pok%C3%A9mon)
|
||||
Dottler_(Pok%C3%A9mon)
|
||||
Dracovish_(Pok%C3%A9mon)
|
||||
Dracozolt_(Pok%C3%A9mon)
|
||||
Dragapult_(Pok%C3%A9mon)
|
||||
Drakloak_(Pok%C3%A9mon)
|
||||
Drednaw_(Pok%C3%A9mon)
|
||||
Dreepy_(Pok%C3%A9mon)
|
||||
Drizzile_(Pok%C3%A9mon)
|
||||
Dubwool_(Pok%C3%A9mon)
|
||||
Duraludon_(Pok%C3%A9mon)
|
||||
Eiscue_(Pok%C3%A9mon)
|
||||
Eldegoss_(Pok%C3%A9mon)
|
||||
Eternatus_(Pok%C3%A9mon)
|
||||
Falinks_(Pok%C3%A9mon)
|
||||
Flapple_(Pok%C3%A9mon)
|
||||
Frosmoth_(Pok%C3%A9mon)
|
||||
Gossifleur_(Pok%C3%A9mon)
|
||||
Grapploct_(Pok%C3%A9mon)
|
||||
Greedent_(Pok%C3%A9mon)
|
||||
Grimmsnarl_(Pok%C3%A9mon)
|
||||
Grookey_(Pok%C3%A9mon)
|
||||
Hatenna_(Pok%C3%A9mon)
|
||||
Hatterene_(Pok%C3%A9mon)
|
||||
Hattrem_(Pok%C3%A9mon)
|
||||
Impidimp_(Pok%C3%A9mon)
|
||||
Indeedee_(Pok%C3%A9mon)
|
||||
Inteleon_(Pok%C3%A9mon)
|
||||
Kubfu_(Pok%C3%A9mon)
|
||||
Milcery_(Pok%C3%A9mon)
|
||||
Morgrem_(Pok%C3%A9mon)
|
||||
Morpeko_(Pok%C3%A9mon)
|
||||
Mr._Rime_(Pok%C3%A9mon)
|
||||
Nickit_(Pok%C3%A9mon)
|
||||
Obstagoon_(Pok%C3%A9mon)
|
||||
Orbeetle_(Pok%C3%A9mon)
|
||||
Perrserker_(Pok%C3%A9mon)
|
||||
Pincurchin_(Pok%C3%A9mon)
|
||||
Polteageist_(Pok%C3%A9mon)
|
||||
Raboot_(Pok%C3%A9mon)
|
||||
Regidrago_(Pok%C3%A9mon)
|
||||
Regieleki_(Pok%C3%A9mon)
|
||||
Rillaboom_(Pok%C3%A9mon)
|
||||
Rolycoly_(Pok%C3%A9mon)
|
||||
Rookidee_(Pok%C3%A9mon)
|
||||
Runerigus_(Pok%C3%A9mon)
|
||||
Sandaconda_(Pok%C3%A9mon)
|
||||
Scorbunny_(Pok%C3%A9mon)
|
||||
Silicobra_(Pok%C3%A9mon)
|
||||
Sinistea_(Pok%C3%A9mon)
|
||||
Sirfetch%27d_(Pok%C3%A9mon)
|
||||
Sizzlipede_(Pok%C3%A9mon)
|
||||
Skwovet_(Pok%C3%A9mon)
|
||||
Snom_(Pok%C3%A9mon)
|
||||
Sobble_(Pok%C3%A9mon)
|
||||
Stonjourner_(Pok%C3%A9mon)
|
||||
Thievul_(Pok%C3%A9mon)
|
||||
Thwackey_(Pok%C3%A9mon)
|
||||
Toxel_(Pok%C3%A9mon)
|
||||
Toxtricity_(Pok%C3%A9mon)
|
||||
Urshifu_(Pok%C3%A9mon)
|
||||
Wooloo_(Pok%C3%A9mon)
|
||||
Yamper_(Pok%C3%A9mon)
|
||||
Zacian_(Pok%C3%A9mon)
|
||||
Zamazenta_(Pok%C3%A9mon)
|
||||
Zarude_(Pok%C3%A9mon)
|
965
Resources/scripts/data/scraper_go/data/pokemon.csv
Normal file
965
Resources/scripts/data/scraper_go/data/pokemon.csv
Normal file
|
@ -0,0 +1,965 @@
|
|||
id,identifier,species_id,height,weight,base_experience,order,is_default
|
||||
1,bulbasaur,1,7,69,64,1,1
|
||||
2,ivysaur,2,10,130,142,2,1
|
||||
3,venusaur,3,20,1000,236,3,1
|
||||
4,charmander,4,6,85,62,5,1
|
||||
5,charmeleon,5,11,190,142,6,1
|
||||
6,charizard,6,17,905,240,7,1
|
||||
7,squirtle,7,5,90,63,10,1
|
||||
8,wartortle,8,10,225,142,11,1
|
||||
9,blastoise,9,16,855,239,12,1
|
||||
10,caterpie,10,3,29,39,14,1
|
||||
11,metapod,11,7,99,72,15,1
|
||||
12,butterfree,12,11,320,178,16,1
|
||||
13,weedle,13,3,32,39,17,1
|
||||
14,kakuna,14,6,100,72,18,1
|
||||
15,beedrill,15,10,295,178,19,1
|
||||
16,pidgey,16,3,18,50,21,1
|
||||
17,pidgeotto,17,11,300,122,22,1
|
||||
18,pidgeot,18,15,395,216,23,1
|
||||
19,rattata,19,3,35,51,25,1
|
||||
20,raticate,20,7,185,145,27,1
|
||||
21,spearow,21,3,20,52,30,1
|
||||
22,fearow,22,12,380,155,31,1
|
||||
23,ekans,23,20,69,58,32,1
|
||||
24,arbok,24,35,650,157,33,1
|
||||
25,pikachu,25,4,60,112,35,1
|
||||
26,raichu,26,8,300,218,49,1
|
||||
27,sandshrew,27,6,120,60,51,1
|
||||
28,sandslash,28,10,295,158,53,1
|
||||
29,nidoran-f,29,4,70,55,55,1
|
||||
30,nidorina,30,8,200,128,56,1
|
||||
31,nidoqueen,31,13,600,227,57,1
|
||||
32,nidoran-m,32,5,90,55,58,1
|
||||
33,nidorino,33,9,195,128,59,1
|
||||
34,nidoking,34,14,620,227,60,1
|
||||
35,clefairy,35,6,75,113,62,1
|
||||
36,clefable,36,13,400,217,63,1
|
||||
37,vulpix,37,6,99,60,64,1
|
||||
38,ninetales,38,11,199,177,66,1
|
||||
39,jigglypuff,39,5,55,95,69,1
|
||||
40,wigglytuff,40,10,120,196,70,1
|
||||
41,zubat,41,8,75,49,71,1
|
||||
42,golbat,42,16,550,159,72,1
|
||||
43,oddish,43,5,54,64,74,1
|
||||
44,gloom,44,8,86,138,75,1
|
||||
45,vileplume,45,12,186,221,76,1
|
||||
46,paras,46,3,54,57,78,1
|
||||
47,parasect,47,10,295,142,79,1
|
||||
48,venonat,48,10,300,61,80,1
|
||||
49,venomoth,49,15,125,158,81,1
|
||||
50,diglett,50,2,8,53,82,1
|
||||
51,dugtrio,51,7,333,149,84,1
|
||||
52,meowth,52,4,42,58,86,1
|
||||
53,persian,53,10,320,154,88,1
|
||||
54,psyduck,54,8,196,64,90,1
|
||||
55,golduck,55,17,766,175,91,1
|
||||
56,mankey,56,5,280,61,92,1
|
||||
57,primeape,57,10,320,159,93,1
|
||||
58,growlithe,58,7,190,70,94,1
|
||||
59,arcanine,59,19,1550,194,95,1
|
||||
60,poliwag,60,6,124,60,96,1
|
||||
61,poliwhirl,61,10,200,135,97,1
|
||||
62,poliwrath,62,13,540,230,98,1
|
||||
63,abra,63,9,195,62,100,1
|
||||
64,kadabra,64,13,565,140,101,1
|
||||
65,alakazam,65,15,480,225,102,1
|
||||
66,machop,66,8,195,61,104,1
|
||||
67,machoke,67,15,705,142,105,1
|
||||
68,machamp,68,16,1300,227,106,1
|
||||
69,bellsprout,69,7,40,60,107,1
|
||||
70,weepinbell,70,10,64,137,108,1
|
||||
71,victreebel,71,17,155,221,109,1
|
||||
72,tentacool,72,9,455,67,110,1
|
||||
73,tentacruel,73,16,550,180,111,1
|
||||
74,geodude,74,4,200,60,112,1
|
||||
75,graveler,75,10,1050,137,114,1
|
||||
76,golem,76,14,3000,223,116,1
|
||||
77,ponyta,77,10,300,82,118,1
|
||||
78,rapidash,78,17,950,175,119,1
|
||||
79,slowpoke,79,12,360,63,120,1
|
||||
80,slowbro,80,16,785,172,121,1
|
||||
81,magnemite,81,3,60,65,124,1
|
||||
82,magneton,82,10,600,163,125,1
|
||||
83,farfetchd,83,8,150,132,127,1
|
||||
84,doduo,84,14,392,62,128,1
|
||||
85,dodrio,85,18,852,165,129,1
|
||||
86,seel,86,11,900,65,130,1
|
||||
87,dewgong,87,17,1200,166,131,1
|
||||
88,grimer,88,9,300,65,132,1
|
||||
89,muk,89,12,300,175,134,1
|
||||
90,shellder,90,3,40,61,136,1
|
||||
91,cloyster,91,15,1325,184,137,1
|
||||
92,gastly,92,13,1,62,138,1
|
||||
93,haunter,93,16,1,142,139,1
|
||||
94,gengar,94,15,405,225,140,1
|
||||
95,onix,95,88,2100,77,142,1
|
||||
96,drowzee,96,10,324,66,145,1
|
||||
97,hypno,97,16,756,169,146,1
|
||||
98,krabby,98,4,65,65,147,1
|
||||
99,kingler,99,13,600,166,148,1
|
||||
100,voltorb,100,5,104,66,149,1
|
||||
101,electrode,101,12,666,172,150,1
|
||||
102,exeggcute,102,4,25,65,151,1
|
||||
103,exeggutor,103,20,1200,186,152,1
|
||||
104,cubone,104,4,65,64,154,1
|
||||
105,marowak,105,10,450,149,155,1
|
||||
106,hitmonlee,106,15,498,159,159,1
|
||||
107,hitmonchan,107,14,502,159,160,1
|
||||
108,lickitung,108,12,655,77,162,1
|
||||
109,koffing,109,6,10,68,164,1
|
||||
110,weezing,110,12,95,172,165,1
|
||||
111,rhyhorn,111,10,1150,69,166,1
|
||||
112,rhydon,112,19,1200,170,167,1
|
||||
113,chansey,113,11,346,395,170,1
|
||||
114,tangela,114,10,350,87,172,1
|
||||
115,kangaskhan,115,22,800,172,174,1
|
||||
116,horsea,116,4,80,59,176,1
|
||||
117,seadra,117,12,250,154,177,1
|
||||
118,goldeen,118,6,150,64,179,1
|
||||
119,seaking,119,13,390,158,180,1
|
||||
120,staryu,120,8,345,68,181,1
|
||||
121,starmie,121,11,800,182,182,1
|
||||
122,mr-mime,122,13,545,161,184,1
|
||||
123,scyther,123,15,560,100,185,1
|
||||
124,jynx,124,14,406,159,189,1
|
||||
125,electabuzz,125,11,300,172,191,1
|
||||
126,magmar,126,13,445,173,194,1
|
||||
127,pinsir,127,15,550,175,196,1
|
||||
128,tauros,128,14,884,172,198,1
|
||||
129,magikarp,129,9,100,40,199,1
|
||||
130,gyarados,130,65,2350,189,200,1
|
||||
131,lapras,131,25,2200,187,202,1
|
||||
132,ditto,132,3,40,101,203,1
|
||||
133,eevee,133,3,65,65,204,1
|
||||
134,vaporeon,134,10,290,184,205,1
|
||||
135,jolteon,135,8,245,184,206,1
|
||||
136,flareon,136,9,250,184,207,1
|
||||
137,porygon,137,8,365,79,213,1
|
||||
138,omanyte,138,4,75,71,216,1
|
||||
139,omastar,139,10,350,173,217,1
|
||||
140,kabuto,140,5,115,71,218,1
|
||||
141,kabutops,141,13,405,173,219,1
|
||||
142,aerodactyl,142,18,590,180,220,1
|
||||
143,snorlax,143,21,4600,189,223,1
|
||||
144,articuno,144,17,554,261,224,1
|
||||
145,zapdos,145,16,526,261,225,1
|
||||
146,moltres,146,20,600,261,226,1
|
||||
147,dratini,147,18,33,60,227,1
|
||||
148,dragonair,148,40,165,147,228,1
|
||||
149,dragonite,149,22,2100,270,229,1
|
||||
150,mewtwo,150,20,1220,306,230,1
|
||||
151,mew,151,4,40,270,233,1
|
||||
152,chikorita,152,9,64,64,234,1
|
||||
153,bayleef,153,12,158,142,235,1
|
||||
154,meganium,154,18,1005,236,236,1
|
||||
155,cyndaquil,155,5,79,62,237,1
|
||||
156,quilava,156,9,190,142,238,1
|
||||
157,typhlosion,157,17,795,240,239,1
|
||||
158,totodile,158,6,95,63,240,1
|
||||
159,croconaw,159,11,250,142,241,1
|
||||
160,feraligatr,160,23,888,239,242,1
|
||||
161,sentret,161,8,60,43,243,1
|
||||
162,furret,162,18,325,145,244,1
|
||||
163,hoothoot,163,7,212,52,245,1
|
||||
164,noctowl,164,16,408,158,246,1
|
||||
165,ledyba,165,10,108,53,247,1
|
||||
166,ledian,166,14,356,137,248,1
|
||||
167,spinarak,167,5,85,50,249,1
|
||||
168,ariados,168,11,335,140,250,1
|
||||
169,crobat,169,18,750,241,73,1
|
||||
170,chinchou,170,5,120,66,251,1
|
||||
171,lanturn,171,12,225,161,252,1
|
||||
172,pichu,172,3,20,41,34,1
|
||||
173,cleffa,173,3,30,44,61,1
|
||||
174,igglybuff,174,3,10,42,68,1
|
||||
175,togepi,175,3,15,49,253,1
|
||||
176,togetic,176,6,32,142,254,1
|
||||
177,natu,177,2,20,64,256,1
|
||||
178,xatu,178,15,150,165,257,1
|
||||
179,mareep,179,6,78,56,258,1
|
||||
180,flaaffy,180,8,133,128,259,1
|
||||
181,ampharos,181,14,615,230,260,1
|
||||
182,bellossom,182,4,58,221,77,1
|
||||
183,marill,183,4,85,88,263,1
|
||||
184,azumarill,184,8,285,189,264,1
|
||||
185,sudowoodo,185,12,380,144,266,1
|
||||
186,politoed,186,11,339,225,99,1
|
||||
187,hoppip,187,4,5,50,267,1
|
||||
188,skiploom,188,6,10,119,268,1
|
||||
189,jumpluff,189,8,30,207,269,1
|
||||
190,aipom,190,8,115,72,270,1
|
||||
191,sunkern,191,3,18,36,272,1
|
||||
192,sunflora,192,8,85,149,273,1
|
||||
193,yanma,193,12,380,78,274,1
|
||||
194,wooper,194,4,85,42,276,1
|
||||
195,quagsire,195,14,750,151,277,1
|
||||
196,espeon,196,9,265,184,208,1
|
||||
197,umbreon,197,10,270,184,209,1
|
||||
198,murkrow,198,5,21,81,278,1
|
||||
199,slowking,199,20,795,172,123,1
|
||||
200,misdreavus,200,7,10,87,280,1
|
||||
201,unown,201,5,50,118,282,1
|
||||
202,wobbuffet,202,13,285,142,284,1
|
||||
203,girafarig,203,15,415,159,285,1
|
||||
204,pineco,204,6,72,58,286,1
|
||||
205,forretress,205,12,1258,163,287,1
|
||||
206,dunsparce,206,15,140,145,288,1
|
||||
207,gligar,207,11,648,86,289,1
|
||||
208,steelix,208,92,4000,179,143,1
|
||||
209,snubbull,209,6,78,60,291,1
|
||||
210,granbull,210,14,487,158,292,1
|
||||
211,qwilfish,211,5,39,88,293,1
|
||||
212,scizor,212,18,1180,175,186,1
|
||||
213,shuckle,213,6,205,177,294,1
|
||||
214,heracross,214,15,540,175,295,1
|
||||
215,sneasel,215,9,280,86,297,1
|
||||
216,teddiursa,216,6,88,66,299,1
|
||||
217,ursaring,217,18,1258,175,300,1
|
||||
218,slugma,218,7,350,50,301,1
|
||||
219,magcargo,219,8,550,151,302,1
|
||||
220,swinub,220,4,65,50,303,1
|
||||
221,piloswine,221,11,558,158,304,1
|
||||
222,corsola,222,6,50,144,306,1
|
||||
223,remoraid,223,6,120,60,307,1
|
||||
224,octillery,224,9,285,168,308,1
|
||||
225,delibird,225,9,160,116,309,1
|
||||
226,mantine,226,21,2200,170,311,1
|
||||
227,skarmory,227,17,505,163,312,1
|
||||
228,houndour,228,6,108,66,313,1
|
||||
229,houndoom,229,14,350,175,314,1
|
||||
230,kingdra,230,18,1520,243,178,1
|
||||
231,phanpy,231,5,335,66,316,1
|
||||
232,donphan,232,11,1200,175,317,1
|
||||
233,porygon2,233,6,325,180,214,1
|
||||
234,stantler,234,14,712,163,318,1
|
||||
235,smeargle,235,12,580,88,319,1
|
||||
236,tyrogue,236,7,210,42,158,1
|
||||
237,hitmontop,237,14,480,159,161,1
|
||||
238,smoochum,238,4,60,61,188,1
|
||||
239,elekid,239,6,235,72,190,1
|
||||
240,magby,240,7,214,73,193,1
|
||||
241,miltank,241,12,755,172,320,1
|
||||
242,blissey,242,15,468,608,171,1
|
||||
243,raikou,243,19,1780,261,321,1
|
||||
244,entei,244,21,1980,261,322,1
|
||||
245,suicune,245,20,1870,261,323,1
|
||||
246,larvitar,246,6,720,60,324,1
|
||||
247,pupitar,247,12,1520,144,325,1
|
||||
248,tyranitar,248,20,2020,270,326,1
|
||||
249,lugia,249,52,2160,306,328,1
|
||||
250,ho-oh,250,38,1990,306,329,1
|
||||
251,celebi,251,6,50,270,330,1
|
||||
252,treecko,252,5,50,62,331,1
|
||||
253,grovyle,253,9,216,142,332,1
|
||||
254,sceptile,254,17,522,239,333,1
|
||||
255,torchic,255,4,25,62,335,1
|
||||
256,combusken,256,9,195,142,336,1
|
||||
257,blaziken,257,19,520,239,337,1
|
||||
258,mudkip,258,4,76,62,339,1
|
||||
259,marshtomp,259,7,280,142,340,1
|
||||
260,swampert,260,15,819,241,341,1
|
||||
261,poochyena,261,5,136,56,343,1
|
||||
262,mightyena,262,10,370,147,344,1
|
||||
263,zigzagoon,263,4,175,56,345,1
|
||||
264,linoone,264,5,325,147,346,1
|
||||
265,wurmple,265,3,36,56,347,1
|
||||
266,silcoon,266,6,100,72,348,1
|
||||
267,beautifly,267,10,284,178,349,1
|
||||
268,cascoon,268,7,115,72,350,1
|
||||
269,dustox,269,12,316,173,351,1
|
||||
270,lotad,270,5,26,44,352,1
|
||||
271,lombre,271,12,325,119,353,1
|
||||
272,ludicolo,272,15,550,216,354,1
|
||||
273,seedot,273,5,40,44,355,1
|
||||
274,nuzleaf,274,10,280,119,356,1
|
||||
275,shiftry,275,13,596,216,357,1
|
||||
276,taillow,276,3,23,54,358,1
|
||||
277,swellow,277,7,198,159,359,1
|
||||
278,wingull,278,6,95,54,360,1
|
||||
279,pelipper,279,12,280,154,361,1
|
||||
280,ralts,280,4,66,40,362,1
|
||||
281,kirlia,281,8,202,97,363,1
|
||||
282,gardevoir,282,16,484,233,364,1
|
||||
283,surskit,283,5,17,54,368,1
|
||||
284,masquerain,284,8,36,159,369,1
|
||||
285,shroomish,285,4,45,59,370,1
|
||||
286,breloom,286,12,392,161,371,1
|
||||
287,slakoth,287,8,240,56,372,1
|
||||
288,vigoroth,288,14,465,154,373,1
|
||||
289,slaking,289,20,1305,252,374,1
|
||||
290,nincada,290,5,55,53,375,1
|
||||
291,ninjask,291,8,120,160,376,1
|
||||
292,shedinja,292,8,12,83,377,1
|
||||
293,whismur,293,6,163,48,378,1
|
||||
294,loudred,294,10,405,126,379,1
|
||||
295,exploud,295,15,840,221,380,1
|
||||
296,makuhita,296,10,864,47,381,1
|
||||
297,hariyama,297,23,2538,166,382,1
|
||||
298,azurill,298,2,20,38,262,1
|
||||
299,nosepass,299,10,970,75,383,1
|
||||
300,skitty,300,6,110,52,385,1
|
||||
301,delcatty,301,11,326,140,386,1
|
||||
302,sableye,302,5,110,133,387,1
|
||||
303,mawile,303,6,115,133,389,1
|
||||
304,aron,304,4,600,66,391,1
|
||||
305,lairon,305,9,1200,151,392,1
|
||||
306,aggron,306,21,3600,239,393,1
|
||||
307,meditite,307,6,112,56,395,1
|
||||
308,medicham,308,13,315,144,396,1
|
||||
309,electrike,309,6,152,59,398,1
|
||||
310,manectric,310,15,402,166,399,1
|
||||
311,plusle,311,4,42,142,401,1
|
||||
312,minun,312,4,42,142,402,1
|
||||
313,volbeat,313,7,177,151,403,1
|
||||
314,illumise,314,6,177,151,404,1
|
||||
315,roselia,315,3,20,140,406,1
|
||||
316,gulpin,316,4,103,60,408,1
|
||||
317,swalot,317,17,800,163,409,1
|
||||
318,carvanha,318,8,208,61,410,1
|
||||
319,sharpedo,319,18,888,161,411,1
|
||||
320,wailmer,320,20,1300,80,413,1
|
||||
321,wailord,321,145,3980,175,414,1
|
||||
322,numel,322,7,240,61,415,1
|
||||
323,camerupt,323,19,2200,161,416,1
|
||||
324,torkoal,324,5,804,165,418,1
|
||||
325,spoink,325,7,306,66,419,1
|
||||
326,grumpig,326,9,715,165,420,1
|
||||
327,spinda,327,11,50,126,421,1
|
||||
328,trapinch,328,7,150,58,422,1
|
||||
329,vibrava,329,11,153,119,423,1
|
||||
330,flygon,330,20,820,234,424,1
|
||||
331,cacnea,331,4,513,67,425,1
|
||||
332,cacturne,332,13,774,166,426,1
|
||||
333,swablu,333,4,12,62,427,1
|
||||
334,altaria,334,11,206,172,428,1
|
||||
335,zangoose,335,13,403,160,430,1
|
||||
336,seviper,336,27,525,160,431,1
|
||||
337,lunatone,337,10,1680,161,432,1
|
||||
338,solrock,338,12,1540,161,433,1
|
||||
339,barboach,339,4,19,58,434,1
|
||||
340,whiscash,340,9,236,164,435,1
|
||||
341,corphish,341,6,115,62,436,1
|
||||
342,crawdaunt,342,11,328,164,437,1
|
||||
343,baltoy,343,5,215,60,438,1
|
||||
344,claydol,344,15,1080,175,439,1
|
||||
345,lileep,345,10,238,71,440,1
|
||||
346,cradily,346,15,604,173,441,1
|
||||
347,anorith,347,7,125,71,442,1
|
||||
348,armaldo,348,15,682,173,443,1
|
||||
349,feebas,349,6,74,40,444,1
|
||||
350,milotic,350,62,1620,189,445,1
|
||||
351,castform,351,3,8,147,446,1
|
||||
352,kecleon,352,10,220,154,450,1
|
||||
353,shuppet,353,6,23,59,451,1
|
||||
354,banette,354,11,125,159,452,1
|
||||
355,duskull,355,8,150,59,454,1
|
||||
356,dusclops,356,16,306,159,455,1
|
||||
357,tropius,357,20,1000,161,457,1
|
||||
358,chimecho,358,6,10,159,459,1
|
||||
359,absol,359,12,470,163,460,1
|
||||
360,wynaut,360,6,140,52,283,1
|
||||
361,snorunt,361,7,168,60,462,1
|
||||
362,glalie,362,15,2565,168,463,1
|
||||
363,spheal,363,8,395,58,466,1
|
||||
364,sealeo,364,11,876,144,467,1
|
||||
365,walrein,365,14,1506,239,468,1
|
||||
366,clamperl,366,4,525,69,469,1
|
||||
367,huntail,367,17,270,170,470,1
|
||||
368,gorebyss,368,18,226,170,471,1
|
||||
369,relicanth,369,10,234,170,472,1
|
||||
370,luvdisc,370,6,87,116,473,1
|
||||
371,bagon,371,6,421,60,474,1
|
||||
372,shelgon,372,11,1105,147,475,1
|
||||
373,salamence,373,15,1026,270,476,1
|
||||
374,beldum,374,6,952,60,478,1
|
||||
375,metang,375,12,2025,147,479,1
|
||||
376,metagross,376,16,5500,270,480,1
|
||||
377,regirock,377,17,2300,261,482,1
|
||||
378,regice,378,18,1750,261,483,1
|
||||
379,registeel,379,19,2050,261,484,1
|
||||
380,latias,380,14,400,270,485,1
|
||||
381,latios,381,20,600,270,487,1
|
||||
382,kyogre,382,45,3520,302,489,1
|
||||
383,groudon,383,35,9500,302,491,1
|
||||
384,rayquaza,384,70,2065,306,493,1
|
||||
385,jirachi,385,3,11,270,495,1
|
||||
386,deoxys-normal,386,17,608,270,496,1
|
||||
387,turtwig,387,4,102,64,500,1
|
||||
388,grotle,388,11,970,142,501,1
|
||||
389,torterra,389,22,3100,236,502,1
|
||||
390,chimchar,390,5,62,62,503,1
|
||||
391,monferno,391,9,220,142,504,1
|
||||
392,infernape,392,12,550,240,505,1
|
||||
393,piplup,393,4,52,63,506,1
|
||||
394,prinplup,394,8,230,142,507,1
|
||||
395,empoleon,395,17,845,239,508,1
|
||||
396,starly,396,3,20,49,509,1
|
||||
397,staravia,397,6,155,119,510,1
|
||||
398,staraptor,398,12,249,218,511,1
|
||||
399,bidoof,399,5,200,50,512,1
|
||||
400,bibarel,400,10,315,144,513,1
|
||||
401,kricketot,401,3,22,39,514,1
|
||||
402,kricketune,402,10,255,134,515,1
|
||||
403,shinx,403,5,95,53,516,1
|
||||
404,luxio,404,9,305,127,517,1
|
||||
405,luxray,405,14,420,235,518,1
|
||||
406,budew,406,2,12,56,405,1
|
||||
407,roserade,407,9,145,232,407,1
|
||||
408,cranidos,408,9,315,70,519,1
|
||||
409,rampardos,409,16,1025,173,520,1
|
||||
410,shieldon,410,5,570,70,521,1
|
||||
411,bastiodon,411,13,1495,173,522,1
|
||||
412,burmy,412,2,34,45,523,1
|
||||
413,wormadam-plant,413,5,65,148,524,1
|
||||
414,mothim,414,9,233,148,527,1
|
||||
415,combee,415,3,55,49,528,1
|
||||
416,vespiquen,416,12,385,166,529,1
|
||||
417,pachirisu,417,4,39,142,530,1
|
||||
418,buizel,418,7,295,66,531,1
|
||||
419,floatzel,419,11,335,173,532,1
|
||||
420,cherubi,420,4,33,55,533,1
|
||||
421,cherrim,421,5,93,158,534,1
|
||||
422,shellos,422,3,63,65,535,1
|
||||
423,gastrodon,423,9,299,166,536,1
|
||||
424,ambipom,424,12,203,169,271,1
|
||||
425,drifloon,425,4,12,70,537,1
|
||||
426,drifblim,426,12,150,174,538,1
|
||||
427,buneary,427,4,55,70,539,1
|
||||
428,lopunny,428,12,333,168,540,1
|
||||
429,mismagius,429,9,44,173,281,1
|
||||
430,honchkrow,430,9,273,177,279,1
|
||||
431,glameow,431,5,39,62,542,1
|
||||
432,purugly,432,10,438,158,543,1
|
||||
433,chingling,433,2,6,57,458,1
|
||||
434,stunky,434,4,192,66,544,1
|
||||
435,skuntank,435,10,380,168,545,1
|
||||
436,bronzor,436,5,605,60,546,1
|
||||
437,bronzong,437,13,1870,175,547,1
|
||||
438,bonsly,438,5,150,58,265,1
|
||||
439,mime-jr,439,6,130,62,183,1
|
||||
440,happiny,440,6,244,110,169,1
|
||||
441,chatot,441,5,19,144,548,1
|
||||
442,spiritomb,442,10,1080,170,549,1
|
||||
443,gible,443,7,205,60,550,1
|
||||
444,gabite,444,14,560,144,551,1
|
||||
445,garchomp,445,19,950,270,552,1
|
||||
446,munchlax,446,6,1050,78,222,1
|
||||
447,riolu,447,7,202,57,554,1
|
||||
448,lucario,448,12,540,184,555,1
|
||||
449,hippopotas,449,8,495,66,557,1
|
||||
450,hippowdon,450,20,3000,184,558,1
|
||||
451,skorupi,451,8,120,66,559,1
|
||||
452,drapion,452,13,615,175,560,1
|
||||
453,croagunk,453,7,230,60,561,1
|
||||
454,toxicroak,454,13,444,172,562,1
|
||||
455,carnivine,455,14,270,159,563,1
|
||||
456,finneon,456,4,70,66,564,1
|
||||
457,lumineon,457,12,240,161,565,1
|
||||
458,mantyke,458,10,650,69,310,1
|
||||
459,snover,459,10,505,67,566,1
|
||||
460,abomasnow,460,22,1355,173,567,1
|
||||
461,weavile,461,11,340,179,298,1
|
||||
462,magnezone,462,12,1800,241,126,1
|
||||
463,lickilicky,463,17,1400,180,163,1
|
||||
464,rhyperior,464,24,2828,241,168,1
|
||||
465,tangrowth,465,20,1286,187,173,1
|
||||
466,electivire,466,18,1386,243,192,1
|
||||
467,magmortar,467,16,680,243,195,1
|
||||
468,togekiss,468,15,380,245,255,1
|
||||
469,yanmega,469,19,515,180,275,1
|
||||
470,leafeon,470,10,255,184,210,1
|
||||
471,glaceon,471,8,259,184,211,1
|
||||
472,gliscor,472,20,425,179,290,1
|
||||
473,mamoswine,473,25,2910,239,305,1
|
||||
474,porygon-z,474,9,340,241,215,1
|
||||
475,gallade,475,16,520,233,366,1
|
||||
476,probopass,476,14,3400,184,384,1
|
||||
477,dusknoir,477,22,1066,236,456,1
|
||||
478,froslass,478,13,266,168,465,1
|
||||
479,rotom,479,3,3,154,569,1
|
||||
480,uxie,480,3,3,261,575,1
|
||||
481,mesprit,481,3,3,261,576,1
|
||||
482,azelf,482,3,3,261,577,1
|
||||
483,dialga,483,54,6830,306,578,1
|
||||
484,palkia,484,42,3360,306,579,1
|
||||
485,heatran,485,17,4300,270,580,1
|
||||
486,regigigas,486,37,4200,302,581,1
|
||||
487,giratina-altered,487,45,7500,306,582,1
|
||||
488,cresselia,488,15,856,270,584,1
|
||||
489,phione,489,4,31,216,585,1
|
||||
490,manaphy,490,3,14,270,586,1
|
||||
491,darkrai,491,15,505,270,587,1
|
||||
492,shaymin-land,492,2,21,270,588,1
|
||||
493,arceus,493,32,3200,324,590,1
|
||||
494,victini,494,4,40,270,591,1
|
||||
495,snivy,495,6,81,62,592,1
|
||||
496,servine,496,8,160,145,593,1
|
||||
497,serperior,497,33,630,238,594,1
|
||||
498,tepig,498,5,99,62,595,1
|
||||
499,pignite,499,10,555,146,596,1
|
||||
500,emboar,500,16,1500,238,597,1
|
||||
501,oshawott,501,5,59,62,598,1
|
||||
502,dewott,502,8,245,145,599,1
|
||||
503,samurott,503,15,946,238,600,1
|
||||
504,patrat,504,5,116,51,601,1
|
||||
505,watchog,505,11,270,147,602,1
|
||||
506,lillipup,506,4,41,55,603,1
|
||||
507,herdier,507,9,147,130,604,1
|
||||
508,stoutland,508,12,610,225,605,1
|
||||
509,purrloin,509,4,101,56,606,1
|
||||
510,liepard,510,11,375,156,607,1
|
||||
511,pansage,511,6,105,63,608,1
|
||||
512,simisage,512,11,305,174,609,1
|
||||
513,pansear,513,6,110,63,610,1
|
||||
514,simisear,514,10,280,174,611,1
|
||||
515,panpour,515,6,135,63,612,1
|
||||
516,simipour,516,10,290,174,613,1
|
||||
517,munna,517,6,233,58,614,1
|
||||
518,musharna,518,11,605,170,615,1
|
||||
519,pidove,519,3,21,53,616,1
|
||||
520,tranquill,520,6,150,125,617,1
|
||||
521,unfezant,521,12,290,220,618,1
|
||||
522,blitzle,522,8,298,59,619,1
|
||||
523,zebstrika,523,16,795,174,620,1
|
||||
524,roggenrola,524,4,180,56,621,1
|
||||
525,boldore,525,9,1020,137,622,1
|
||||
526,gigalith,526,17,2600,232,623,1
|
||||
527,woobat,527,4,21,65,624,1
|
||||
528,swoobat,528,9,105,149,625,1
|
||||
529,drilbur,529,3,85,66,626,1
|
||||
530,excadrill,530,7,404,178,627,1
|
||||
531,audino,531,11,310,390,628,1
|
||||
532,timburr,532,6,125,61,630,1
|
||||
533,gurdurr,533,12,400,142,631,1
|
||||
534,conkeldurr,534,14,870,227,632,1
|
||||
535,tympole,535,5,45,59,633,1
|
||||
536,palpitoad,536,8,170,134,634,1
|
||||
537,seismitoad,537,15,620,229,635,1
|
||||
538,throh,538,13,555,163,636,1
|
||||
539,sawk,539,14,510,163,637,1
|
||||
540,sewaddle,540,3,25,62,638,1
|
||||
541,swadloon,541,5,73,133,639,1
|
||||
542,leavanny,542,12,205,225,640,1
|
||||
543,venipede,543,4,53,52,641,1
|
||||
544,whirlipede,544,12,585,126,642,1
|
||||
545,scolipede,545,25,2005,218,643,1
|
||||
546,cottonee,546,3,6,56,644,1
|
||||
547,whimsicott,547,7,66,168,645,1
|
||||
548,petilil,548,5,66,56,646,1
|
||||
549,lilligant,549,11,163,168,647,1
|
||||
550,basculin-red-striped,550,10,180,161,648,1
|
||||
551,sandile,551,7,152,58,650,1
|
||||
552,krokorok,552,10,334,123,651,1
|
||||
553,krookodile,553,15,963,234,652,1
|
||||
554,darumaka,554,6,375,63,653,1
|
||||
555,darmanitan-standard,555,13,929,168,654,1
|
||||
556,maractus,556,10,280,161,656,1
|
||||
557,dwebble,557,3,145,65,657,1
|
||||
558,crustle,558,14,2000,170,658,1
|
||||
559,scraggy,559,6,118,70,659,1
|
||||
560,scrafty,560,11,300,171,660,1
|
||||
561,sigilyph,561,14,140,172,661,1
|
||||
562,yamask,562,5,15,61,662,1
|
||||
563,cofagrigus,563,17,765,169,663,1
|
||||
564,tirtouga,564,7,165,71,664,1
|
||||
565,carracosta,565,12,810,173,665,1
|
||||
566,archen,566,5,95,71,666,1
|
||||
567,archeops,567,14,320,177,667,1
|
||||
568,trubbish,568,6,310,66,668,1
|
||||
569,garbodor,569,19,1073,166,669,1
|
||||
570,zorua,570,7,125,66,670,1
|
||||
571,zoroark,571,16,811,179,671,1
|
||||
572,minccino,572,4,58,60,672,1
|
||||
573,cinccino,573,5,75,165,673,1
|
||||
574,gothita,574,4,58,58,674,1
|
||||
575,gothorita,575,7,180,137,675,1
|
||||
576,gothitelle,576,15,440,221,676,1
|
||||
577,solosis,577,3,10,58,677,1
|
||||
578,duosion,578,6,80,130,678,1
|
||||
579,reuniclus,579,10,201,221,679,1
|
||||
580,ducklett,580,5,55,61,680,1
|
||||
581,swanna,581,13,242,166,681,1
|
||||
582,vanillite,582,4,57,61,682,1
|
||||
583,vanillish,583,11,410,138,683,1
|
||||
584,vanilluxe,584,13,575,241,684,1
|
||||
585,deerling,585,6,195,67,685,1
|
||||
586,sawsbuck,586,19,925,166,686,1
|
||||
587,emolga,587,4,50,150,687,1
|
||||
588,karrablast,588,5,59,63,688,1
|
||||
589,escavalier,589,10,330,173,689,1
|
||||
590,foongus,590,2,10,59,690,1
|
||||
591,amoonguss,591,6,105,162,691,1
|
||||
592,frillish,592,12,330,67,692,1
|
||||
593,jellicent,593,22,1350,168,693,1
|
||||
594,alomomola,594,12,316,165,694,1
|
||||
595,joltik,595,1,6,64,695,1
|
||||
596,galvantula,596,8,143,165,696,1
|
||||
597,ferroseed,597,6,188,61,697,1
|
||||
598,ferrothorn,598,10,1100,171,698,1
|
||||
599,klink,599,3,210,60,699,1
|
||||
600,klang,600,6,510,154,700,1
|
||||
601,klinklang,601,6,810,234,701,1
|
||||
602,tynamo,602,2,3,55,702,1
|
||||
603,eelektrik,603,12,220,142,703,1
|
||||
604,eelektross,604,21,805,232,704,1
|
||||
605,elgyem,605,5,90,67,705,1
|
||||
606,beheeyem,606,10,345,170,706,1
|
||||
607,litwick,607,3,31,55,707,1
|
||||
608,lampent,608,6,130,130,708,1
|
||||
609,chandelure,609,10,343,234,709,1
|
||||
610,axew,610,6,180,64,710,1
|
||||
611,fraxure,611,10,360,144,711,1
|
||||
612,haxorus,612,18,1055,243,712,1
|
||||
613,cubchoo,613,5,85,61,713,1
|
||||
614,beartic,614,26,2600,177,714,1
|
||||
615,cryogonal,615,11,1480,180,715,1
|
||||
616,shelmet,616,4,77,61,716,1
|
||||
617,accelgor,617,8,253,173,717,1
|
||||
618,stunfisk,618,7,110,165,718,1
|
||||
619,mienfoo,619,9,200,70,719,1
|
||||
620,mienshao,620,14,355,179,720,1
|
||||
621,druddigon,621,16,1390,170,721,1
|
||||
622,golett,622,10,920,61,722,1
|
||||
623,golurk,623,28,3300,169,723,1
|
||||
624,pawniard,624,5,102,68,724,1
|
||||
625,bisharp,625,16,700,172,725,1
|
||||
626,bouffalant,626,16,946,172,726,1
|
||||
627,rufflet,627,5,105,70,727,1
|
||||
628,braviary,628,15,410,179,728,1
|
||||
629,vullaby,629,5,90,74,729,1
|
||||
630,mandibuzz,630,12,395,179,730,1
|
||||
631,heatmor,631,14,580,169,731,1
|
||||
632,durant,632,3,330,169,732,1
|
||||
633,deino,633,8,173,60,733,1
|
||||
634,zweilous,634,14,500,147,734,1
|
||||
635,hydreigon,635,18,1600,270,735,1
|
||||
636,larvesta,636,11,288,72,736,1
|
||||
637,volcarona,637,16,460,248,737,1
|
||||
638,cobalion,638,21,2500,261,738,1
|
||||
639,terrakion,639,19,2600,261,739,1
|
||||
640,virizion,640,20,2000,261,740,1
|
||||
641,tornadus-incarnate,641,15,630,261,741,1
|
||||
642,thundurus-incarnate,642,15,610,261,743,1
|
||||
643,reshiram,643,32,3300,306,745,1
|
||||
644,zekrom,644,29,3450,306,746,1
|
||||
645,landorus-incarnate,645,15,680,270,747,1
|
||||
646,kyurem,646,30,3250,297,749,1
|
||||
647,keldeo-ordinary,647,14,485,261,752,1
|
||||
648,meloetta-aria,648,6,65,270,754,1
|
||||
649,genesect,649,15,825,270,756,1
|
||||
650,chespin,650,4,90,63,757,1
|
||||
651,quilladin,651,7,290,142,758,1
|
||||
652,chesnaught,652,16,900,239,759,1
|
||||
653,fennekin,653,4,94,61,760,1
|
||||
654,braixen,654,10,145,143,761,1
|
||||
655,delphox,655,15,390,240,762,1
|
||||
656,froakie,656,3,70,63,763,1
|
||||
657,frogadier,657,6,109,142,764,1
|
||||
658,greninja,658,15,400,239,765,1
|
||||
659,bunnelby,659,4,50,47,768,1
|
||||
660,diggersby,660,10,424,148,769,1
|
||||
661,fletchling,661,3,17,56,770,1
|
||||
662,fletchinder,662,7,160,134,771,1
|
||||
663,talonflame,663,12,245,175,772,1
|
||||
664,scatterbug,664,3,25,40,773,1
|
||||
665,spewpa,665,3,84,75,774,1
|
||||
666,vivillon,666,12,170,185,775,1
|
||||
667,litleo,667,6,135,74,776,1
|
||||
668,pyroar,668,15,815,177,777,1
|
||||
669,flabebe,669,1,1,61,778,1
|
||||
670,floette,670,2,9,130,779,1
|
||||
671,florges,671,11,100,248,781,1
|
||||
672,skiddo,672,9,310,70,782,1
|
||||
673,gogoat,673,17,910,186,783,1
|
||||
674,pancham,674,6,80,70,784,1
|
||||
675,pangoro,675,21,1360,173,785,1
|
||||
676,furfrou,676,12,280,165,786,1
|
||||
677,espurr,677,3,35,71,787,1
|
||||
678,meowstic-male,678,6,85,163,788,1
|
||||
679,honedge,679,8,20,65,790,1
|
||||
680,doublade,680,8,45,157,791,1
|
||||
681,aegislash-shield,681,17,530,234,792,1
|
||||
682,spritzee,682,2,5,68,794,1
|
||||
683,aromatisse,683,8,155,162,795,1
|
||||
684,swirlix,684,4,35,68,796,1
|
||||
685,slurpuff,685,8,50,168,797,1
|
||||
686,inkay,686,4,35,58,798,1
|
||||
687,malamar,687,15,470,169,799,1
|
||||
688,binacle,688,5,310,61,800,1
|
||||
689,barbaracle,689,13,960,175,801,1
|
||||
690,skrelp,690,5,73,64,802,1
|
||||
691,dragalge,691,18,815,173,803,1
|
||||
692,clauncher,692,5,83,66,804,1
|
||||
693,clawitzer,693,13,353,100,805,1
|
||||
694,helioptile,694,5,60,58,806,1
|
||||
695,heliolisk,695,10,210,168,807,1
|
||||
696,tyrunt,696,8,260,72,808,1
|
||||
697,tyrantrum,697,25,2700,182,809,1
|
||||
698,amaura,698,13,252,72,810,1
|
||||
699,aurorus,699,27,2250,104,811,1
|
||||
700,sylveon,700,10,235,184,212,1
|
||||
701,hawlucha,701,8,215,175,812,1
|
||||
702,dedenne,702,2,22,151,813,1
|
||||
703,carbink,703,3,57,100,814,1
|
||||
704,goomy,704,3,28,60,815,1
|
||||
705,sliggoo,705,8,175,158,816,1
|
||||
706,goodra,706,20,1505,270,817,1
|
||||
707,klefki,707,2,30,165,818,1
|
||||
708,phantump,708,4,70,62,819,1
|
||||
709,trevenant,709,15,710,166,820,1
|
||||
710,pumpkaboo-average,710,4,50,67,821,1
|
||||
711,gourgeist-average,711,9,125,173,825,1
|
||||
712,bergmite,712,10,995,61,829,1
|
||||
713,avalugg,713,20,5050,180,830,1
|
||||
714,noibat,714,5,80,49,831,1
|
||||
715,noivern,715,15,850,187,832,1
|
||||
716,xerneas,716,30,2150,306,833,1
|
||||
717,yveltal,717,58,2030,306,834,1
|
||||
718,zygarde,718,50,3050,270,835,1
|
||||
719,diancie,719,7,88,270,839,1
|
||||
720,hoopa,720,5,90,270,841,1
|
||||
721,volcanion,721,17,1950,270,843,1
|
||||
722,rowlet,722,3,15,64,844,1
|
||||
723,dartrix,723,7,160,147,845,1
|
||||
724,decidueye,724,16,366,239,846,1
|
||||
725,litten,725,4,43,64,847,1
|
||||
726,torracat,726,7,250,147,848,1
|
||||
727,incineroar,727,18,830,239,849,1
|
||||
728,popplio,728,4,75,64,850,1
|
||||
729,brionne,729,6,175,147,851,1
|
||||
730,primarina,730,18,440,239,852,1
|
||||
731,pikipek,731,3,12,53,853,1
|
||||
732,trumbeak,732,6,148,124,854,1
|
||||
733,toucannon,733,11,260,218,855,1
|
||||
734,yungoos,734,4,60,51,856,1
|
||||
735,gumshoos,735,7,142,146,857,1
|
||||
736,grubbin,736,4,44,60,859,1
|
||||
737,charjabug,737,5,105,140,860,1
|
||||
738,vikavolt,738,15,450,225,861,1
|
||||
739,crabrawler,739,6,70,68,863,1
|
||||
740,crabominable,740,17,1800,167,864,1
|
||||
741,oricorio-baile,741,6,34,167,865,1
|
||||
742,cutiefly,742,1,2,61,869,1
|
||||
743,ribombee,743,2,5,162,870,1
|
||||
744,rockruff,744,5,92,56,872,1
|
||||
745,lycanroc-midday,745,8,250,170,874,1
|
||||
746,wishiwashi-solo,746,2,3,61,877,1
|
||||
747,mareanie,747,4,80,61,879,1
|
||||
748,toxapex,748,7,145,173,880,1
|
||||
749,mudbray,749,10,1100,77,881,1
|
||||
750,mudsdale,750,25,9200,175,882,1
|
||||
751,dewpider,751,3,40,54,883,1
|
||||
752,araquanid,752,18,820,159,884,1
|
||||
753,fomantis,753,3,15,50,886,1
|
||||
754,lurantis,754,9,185,168,887,1
|
||||
755,morelull,755,2,15,57,889,1
|
||||
756,shiinotic,756,10,115,142,890,1
|
||||
757,salandit,757,6,48,64,891,1
|
||||
758,salazzle,758,12,222,168,892,1
|
||||
759,stufful,759,5,68,68,894,1
|
||||
760,bewear,760,21,1350,175,895,1
|
||||
761,bounsweet,761,3,32,42,896,1
|
||||
762,steenee,762,7,82,102,897,1
|
||||
763,tsareena,763,12,214,230,898,1
|
||||
764,comfey,764,1,3,170,899,1
|
||||
765,oranguru,765,15,760,172,900,1
|
||||
766,passimian,766,20,828,172,901,1
|
||||
767,wimpod,767,5,120,46,902,1
|
||||
768,golisopod,768,20,1080,186,903,1
|
||||
769,sandygast,769,5,700,64,904,1
|
||||
770,palossand,770,13,2500,168,905,1
|
||||
771,pyukumuku,771,3,12,144,906,1
|
||||
772,type-null,772,19,1205,107,907,1
|
||||
773,silvally,773,23,1005,257,908,1
|
||||
774,minior-red-meteor,774,3,400,154,909,1
|
||||
775,komala,775,4,199,168,923,1
|
||||
776,turtonator,776,20,2120,170,924,1
|
||||
777,togedemaru,777,3,33,152,925,1
|
||||
778,mimikyu-disguised,778,2,7,167,927,1
|
||||
779,bruxish,779,9,190,166,931,1
|
||||
780,drampa,780,30,1850,170,932,1
|
||||
781,dhelmise,781,39,2100,181,933,1
|
||||
782,jangmo-o,782,6,297,60,934,1
|
||||
783,hakamo-o,783,12,470,147,935,1
|
||||
784,kommo-o,784,16,782,270,936,1
|
||||
785,tapu-koko,785,18,205,257,938,1
|
||||
786,tapu-lele,786,12,186,257,939,1
|
||||
787,tapu-bulu,787,19,455,257,940,1
|
||||
788,tapu-fini,788,13,212,257,941,1
|
||||
789,cosmog,789,2,1,40,942,1
|
||||
790,cosmoem,790,1,9999,140,943,1
|
||||
791,solgaleo,791,34,2300,306,944,1
|
||||
792,lunala,792,40,1200,306,945,1
|
||||
793,nihilego,793,12,555,257,946,1
|
||||
794,buzzwole,794,24,3336,257,947,1
|
||||
795,pheromosa,795,18,250,257,948,1
|
||||
796,xurkitree,796,38,1000,257,949,1
|
||||
797,celesteela,797,92,9999,257,950,1
|
||||
798,kartana,798,3,1,257,951,1
|
||||
799,guzzlord,799,55,8880,257,952,1
|
||||
800,necrozma,800,24,2300,270,953,1
|
||||
801,magearna,801,10,805,270,957,1
|
||||
802,marshadow,802,7,222,270,959,1
|
||||
803,poipole,803,6,18,189,960,1
|
||||
804,naganadel,804,36,1500,243,961,1
|
||||
805,stakataka,805,55,8200,257,962,1
|
||||
806,blacephalon,806,18,130,257,963,1
|
||||
807,zeraora,807,15,445,270,964,1
|
||||
10001,deoxys-attack,386,17,608,270,497,0
|
||||
10002,deoxys-defense,386,17,608,270,498,0
|
||||
10003,deoxys-speed,386,17,608,270,499,0
|
||||
10004,wormadam-sandy,413,5,65,148,525,0
|
||||
10005,wormadam-trash,413,5,65,148,526,0
|
||||
10006,shaymin-sky,492,4,52,270,589,0
|
||||
10007,giratina-origin,487,69,6500,306,583,0
|
||||
10008,rotom-heat,479,3,3,182,570,0
|
||||
10009,rotom-wash,479,3,3,182,571,0
|
||||
10010,rotom-frost,479,3,3,182,572,0
|
||||
10011,rotom-fan,479,3,3,182,573,0
|
||||
10012,rotom-mow,479,3,3,182,574,0
|
||||
10013,castform-sunny,351,3,8,147,447,0
|
||||
10014,castform-rainy,351,3,8,147,448,0
|
||||
10015,castform-snowy,351,3,8,147,449,0
|
||||
10016,basculin-blue-striped,550,10,180,161,649,0
|
||||
10017,darmanitan-zen,555,13,929,189,655,0
|
||||
10018,meloetta-pirouette,648,6,65,270,755,0
|
||||
10019,tornadus-therian,641,14,630,261,742,0
|
||||
10020,thundurus-therian,642,30,610,261,744,0
|
||||
10021,landorus-therian,645,13,680,270,748,0
|
||||
10022,kyurem-black,646,33,3250,315,751,0
|
||||
10023,kyurem-white,646,36,3250,315,750,0
|
||||
10024,keldeo-resolute,647,14,485,261,753,0
|
||||
10025,meowstic-female,678,6,85,163,789,0
|
||||
10026,aegislash-blade,681,17,530,234,793,0
|
||||
10027,pumpkaboo-small,710,3,35,67,822,0
|
||||
10028,pumpkaboo-large,710,5,75,67,823,0
|
||||
10029,pumpkaboo-super,710,8,150,67,824,0
|
||||
10030,gourgeist-small,711,7,95,173,826,0
|
||||
10031,gourgeist-large,711,11,140,173,827,0
|
||||
10032,gourgeist-super,711,17,390,173,828,0
|
||||
10033,venusaur-mega,3,24,1555,281,4,0
|
||||
10034,charizard-mega-x,6,17,1105,285,8,0
|
||||
10035,charizard-mega-y,6,17,1005,285,9,0
|
||||
10036,blastoise-mega,9,16,1011,284,13,0
|
||||
10037,alakazam-mega,65,12,480,270,103,0
|
||||
10038,gengar-mega,94,14,405,270,141,0
|
||||
10039,kangaskhan-mega,115,22,1000,207,175,0
|
||||
10040,pinsir-mega,127,17,590,210,197,0
|
||||
10041,gyarados-mega,130,65,3050,224,201,0
|
||||
10042,aerodactyl-mega,142,21,790,215,221,0
|
||||
10043,mewtwo-mega-x,150,23,1270,351,231,0
|
||||
10044,mewtwo-mega-y,150,15,330,351,232,0
|
||||
10045,ampharos-mega,181,14,615,275,261,0
|
||||
10046,scizor-mega,212,20,1250,210,187,0
|
||||
10047,heracross-mega,214,17,625,210,296,0
|
||||
10048,houndoom-mega,229,19,495,210,315,0
|
||||
10049,tyranitar-mega,248,25,2550,315,327,0
|
||||
10050,blaziken-mega,257,19,520,284,338,0
|
||||
10051,gardevoir-mega,282,16,484,278,365,0
|
||||
10052,mawile-mega,303,10,235,168,390,0
|
||||
10053,aggron-mega,306,22,3950,284,394,0
|
||||
10054,medicham-mega,308,13,315,179,397,0
|
||||
10055,manectric-mega,310,18,440,201,400,0
|
||||
10056,banette-mega,354,12,130,194,453,0
|
||||
10057,absol-mega,359,12,490,198,461,0
|
||||
10058,garchomp-mega,445,19,950,315,553,0
|
||||
10059,lucario-mega,448,13,575,219,556,0
|
||||
10060,abomasnow-mega,460,27,1850,208,568,0
|
||||
10061,floette-eternal,670,2,9,243,780,0
|
||||
10062,latias-mega,380,18,520,315,486,0
|
||||
10063,latios-mega,381,23,700,315,488,0
|
||||
10064,swampert-mega,260,19,1020,286,342,0
|
||||
10065,sceptile-mega,254,19,552,284,334,0
|
||||
10066,sableye-mega,302,5,1610,168,388,0
|
||||
10067,altaria-mega,334,15,206,207,429,0
|
||||
10068,gallade-mega,475,16,564,278,367,0
|
||||
10069,audino-mega,531,15,320,425,629,0
|
||||
10070,sharpedo-mega,319,25,1303,196,412,0
|
||||
10071,slowbro-mega,80,20,1200,207,122,0
|
||||
10072,steelix-mega,208,105,7400,214,144,0
|
||||
10073,pidgeot-mega,18,22,505,261,24,0
|
||||
10074,glalie-mega,362,21,3502,203,464,0
|
||||
10075,diancie-mega,719,11,278,315,840,0
|
||||
10076,metagross-mega,376,25,9429,315,481,0
|
||||
10077,kyogre-primal,382,98,4300,347,490,0
|
||||
10078,groudon-primal,383,50,9997,347,492,0
|
||||
10079,rayquaza-mega,384,108,3920,351,494,0
|
||||
10080,pikachu-rock-star,25,4,60,112,37,0
|
||||
10081,pikachu-belle,25,4,60,112,38,0
|
||||
10082,pikachu-pop-star,25,4,60,112,39,0
|
||||
10083,pikachu-phd,25,4,60,112,40,0
|
||||
10084,pikachu-libre,25,4,60,112,41,0
|
||||
10085,pikachu-cosplay,25,4,60,112,36,0
|
||||
10086,hoopa-unbound,720,65,4900,306,842,0
|
||||
10087,camerupt-mega,323,25,3205,196,417,0
|
||||
10088,lopunny-mega,428,13,283,203,541,0
|
||||
10089,salamence-mega,373,18,1126,315,477,0
|
||||
10090,beedrill-mega,15,14,405,223,20,0
|
||||
10091,rattata-alola,19,3,38,51,26,0
|
||||
10092,raticate-alola,20,7,255,145,28,0
|
||||
10093,raticate-totem-alola,20,14,1050,145,29,0
|
||||
10094,pikachu-original-cap,25,4,60,112,42,0
|
||||
10095,pikachu-hoenn-cap,25,4,60,112,43,0
|
||||
10096,pikachu-sinnoh-cap,25,4,60,112,44,0
|
||||
10097,pikachu-unova-cap,25,4,60,112,45,0
|
||||
10098,pikachu-kalos-cap,25,4,60,112,46,0
|
||||
10099,pikachu-alola-cap,25,4,60,112,47,0
|
||||
10100,raichu-alola,26,7,210,218,50,0
|
||||
10101,sandshrew-alola,27,7,400,60,52,0
|
||||
10102,sandslash-alola,28,12,550,158,54,0
|
||||
10103,vulpix-alola,37,6,99,60,65,0
|
||||
10104,ninetales-alola,38,11,199,177,67,0
|
||||
10105,diglett-alola,50,2,10,53,83,0
|
||||
10106,dugtrio-alola,51,7,666,149,85,0
|
||||
10107,meowth-alola,52,4,42,58,87,0
|
||||
10108,persian-alola,53,11,330,154,89,0
|
||||
10109,geodude-alola,74,4,203,60,113,0
|
||||
10110,graveler-alola,75,10,1100,137,115,0
|
||||
10111,golem-alola,76,17,3160,223,117,0
|
||||
10112,grimer-alola,88,7,420,65,133,0
|
||||
10113,muk-alola,89,10,520,175,135,0
|
||||
10114,exeggutor-alola,103,109,4156,186,153,0
|
||||
10115,marowak-alola,105,10,340,149,156,0
|
||||
10116,greninja-battle-bond,658,15,400,239,766,0
|
||||
10117,greninja-ash,658,15,400,288,767,0
|
||||
10118,zygarde-10,718,12,335,219,836,0
|
||||
10119,zygarde-50,718,50,3050,270,837,0
|
||||
10120,zygarde-complete,718,45,6100,319,838,0
|
||||
10121,gumshoos-totem,735,14,600,146,858,0
|
||||
10122,vikavolt-totem,738,26,1475,225,862,0
|
||||
10123,oricorio-pom-pom,741,6,34,167,866,0
|
||||
10124,oricorio-pau,741,6,34,167,867,0
|
||||
10125,oricorio-sensu,741,6,34,167,868,0
|
||||
10126,lycanroc-midnight,745,11,250,170,875,0
|
||||
10127,wishiwashi-school,746,82,786,217,878,0
|
||||
10128,lurantis-totem,754,15,580,168,888,0
|
||||
10129,salazzle-totem,758,21,810,168,893,0
|
||||
10130,minior-orange-meteor,774,3,400,154,910,0
|
||||
10131,minior-yellow-meteor,774,3,400,154,911,0
|
||||
10132,minior-green-meteor,774,3,400,154,912,0
|
||||
10133,minior-blue-meteor,774,3,400,154,913,0
|
||||
10134,minior-indigo-meteor,774,3,400,154,914,0
|
||||
10135,minior-violet-meteor,774,3,400,154,915,0
|
||||
10136,minior-red,774,3,3,175,916,0
|
||||
10137,minior-orange,774,3,3,175,917,0
|
||||
10138,minior-yellow,774,3,3,175,918,0
|
||||
10139,minior-green,774,3,3,175,919,0
|
||||
10140,minior-blue,774,3,3,175,920,0
|
||||
10141,minior-indigo,774,3,3,175,921,0
|
||||
10142,minior-violet,774,3,3,175,922,0
|
||||
10143,mimikyu-busted,778,2,7,167,928,0
|
||||
10144,mimikyu-totem-disguised,778,4,28,167,929,0
|
||||
10145,mimikyu-totem-busted,778,4,28,167,930,0
|
||||
10146,kommo-o-totem,784,24,2075,270,937,0
|
||||
10147,magearna-original,801,10,805,270,958,0
|
||||
10148,pikachu-partner-cap,25,4,60,112,48,0
|
||||
10149,marowak-totem,105,17,980,149,157,0
|
||||
10150,ribombee-totem,743,4,20,162,871,0
|
||||
10151,rockruff-own-tempo,744,5,92,56,873,0
|
||||
10152,lycanroc-dusk,745,8,250,170,876,0
|
||||
10153,araquanid-totem,752,31,2175,159,885,0
|
||||
10154,togedemaru-totem,777,6,130,152,926,0
|
||||
10155,necrozma-dusk,800,38,4600,306,954,0
|
||||
10156,necrozma-dawn,800,42,3500,306,955,0
|
||||
10157,necrozma-ultra,800,75,2300,339,956,0
|
|
808
Resources/scripts/data/scraper_go/data/pokemon_species.csv
Normal file
808
Resources/scripts/data/scraper_go/data/pokemon_species.csv
Normal file
|
@ -0,0 +1,808 @@
|
|||
id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id,shape_id,habitat_id,gender_rate,capture_rate,base_happiness,is_baby,hatch_counter,has_gender_differences,growth_rate_id,forms_switchable,is_legendary,is_mythical,order,conquest_order
|
||||
1,bulbasaur,1,,1,5,8,3,1,45,70,0,20,0,4,0,0,0,1,
|
||||
2,ivysaur,1,1,1,5,8,3,1,45,70,0,20,0,4,0,0,0,2,
|
||||
3,venusaur,1,2,1,5,8,3,1,45,70,0,20,1,4,1,0,0,3,
|
||||
4,charmander,1,,2,8,6,4,1,45,70,0,20,0,4,0,0,0,4,109
|
||||
5,charmeleon,1,4,2,8,6,4,1,45,70,0,20,0,4,0,0,0,5,110
|
||||
6,charizard,1,5,2,8,6,4,1,45,70,0,20,0,4,1,0,0,6,111
|
||||
7,squirtle,1,,3,2,6,9,1,45,70,0,20,0,4,0,0,0,7,
|
||||
8,wartortle,1,7,3,2,6,9,1,45,70,0,20,0,4,0,0,0,8,
|
||||
9,blastoise,1,8,3,2,6,9,1,45,70,0,20,0,4,1,0,0,9,
|
||||
10,caterpie,1,,4,5,14,2,4,255,70,0,15,0,2,0,0,0,10,
|
||||
11,metapod,1,10,4,5,2,2,4,120,70,0,15,0,2,0,0,0,11,
|
||||
12,butterfree,1,11,4,9,13,2,4,45,70,0,15,1,2,0,0,0,12,
|
||||
13,weedle,1,,5,3,14,2,4,255,70,0,15,0,2,0,0,0,13,
|
||||
14,kakuna,1,13,5,10,2,2,4,120,70,0,15,0,2,0,0,0,14,
|
||||
15,beedrill,1,14,5,10,13,2,4,45,70,0,15,0,2,1,0,0,15,177
|
||||
16,pidgey,1,,6,3,9,2,4,255,70,0,15,0,4,0,0,0,16,
|
||||
17,pidgeotto,1,16,6,3,9,2,4,120,70,0,15,0,4,0,0,0,17,
|
||||
18,pidgeot,1,17,6,3,9,2,4,45,70,0,15,0,4,1,0,0,18,
|
||||
19,rattata,1,,7,7,8,3,4,255,70,0,15,1,2,0,0,0,19,
|
||||
20,raticate,1,19,7,3,8,3,4,127,70,0,15,1,2,0,0,0,20,
|
||||
21,spearow,1,,8,3,9,6,4,255,70,0,15,0,2,0,0,0,21,
|
||||
22,fearow,1,21,8,3,9,6,4,90,70,0,15,0,2,0,0,0,22,
|
||||
23,ekans,1,,9,7,2,3,4,255,70,0,20,0,2,0,0,0,23,54
|
||||
24,arbok,1,23,9,7,2,3,4,90,70,0,20,0,2,0,0,0,24,55
|
||||
25,pikachu,1,172,10,10,8,2,4,190,70,0,10,1,2,0,0,0,26,16
|
||||
26,raichu,1,25,10,10,6,2,4,75,70,0,10,1,2,0,0,0,27,17
|
||||
27,sandshrew,1,,11,10,6,6,4,255,70,0,20,0,2,0,0,0,28,
|
||||
28,sandslash,1,27,11,10,6,6,4,90,70,0,20,0,2,0,0,0,29,
|
||||
29,nidoran-f,1,,12,2,8,3,8,235,70,0,20,0,4,0,0,0,30,
|
||||
30,nidorina,1,29,12,2,8,3,8,120,70,0,20,0,4,0,0,0,31,
|
||||
31,nidoqueen,1,30,12,2,6,3,8,45,70,0,20,0,4,0,0,0,32,
|
||||
32,nidoran-m,1,,13,7,8,3,0,235,70,0,20,0,4,0,0,0,33,
|
||||
33,nidorino,1,32,13,7,8,3,0,120,70,0,20,0,4,0,0,0,34,
|
||||
34,nidoking,1,33,13,7,6,3,0,45,70,0,20,0,4,0,0,0,35,
|
||||
35,clefairy,1,173,14,6,6,4,6,150,140,0,10,0,3,0,0,0,37,
|
||||
36,clefable,1,35,14,6,6,4,6,25,140,0,10,0,3,0,0,0,38,
|
||||
37,vulpix,1,,15,3,8,3,6,190,70,0,20,0,2,0,0,0,39,
|
||||
38,ninetales,1,37,15,10,8,3,6,75,70,0,20,0,2,0,0,0,40,
|
||||
39,jigglypuff,1,174,16,6,12,3,6,170,70,0,10,0,3,0,0,0,42,21
|
||||
40,wigglytuff,1,39,16,6,12,3,6,50,70,0,10,0,3,0,0,0,43,22
|
||||
41,zubat,1,,17,7,9,1,4,255,70,0,15,1,2,0,0,0,44,23
|
||||
42,golbat,1,41,17,7,9,1,4,90,70,0,15,1,2,0,0,0,45,24
|
||||
43,oddish,1,,18,2,7,3,4,255,70,0,20,0,4,0,0,0,47,
|
||||
44,gloom,1,43,18,2,12,3,4,120,70,0,20,1,4,0,0,0,48,
|
||||
45,vileplume,1,44,18,8,12,3,4,45,70,0,20,1,4,0,0,0,49,
|
||||
46,paras,1,,19,8,14,2,4,190,70,0,20,0,2,0,0,0,51,
|
||||
47,parasect,1,46,19,8,14,2,4,75,70,0,20,0,2,0,0,0,52,
|
||||
48,venonat,1,,20,7,12,2,4,190,70,0,20,0,2,0,0,0,53,
|
||||
49,venomoth,1,48,20,7,13,2,4,75,70,0,20,0,2,0,0,0,54,
|
||||
50,diglett,1,,21,3,5,1,4,255,70,0,20,0,2,0,0,0,55,
|
||||
51,dugtrio,1,50,21,3,11,1,4,50,70,0,20,0,2,0,0,0,56,
|
||||
52,meowth,1,,22,10,8,8,4,255,70,0,20,0,2,0,0,0,57,58
|
||||
53,persian,1,52,22,10,8,8,4,90,70,0,20,0,2,0,0,0,58,59
|
||||
54,psyduck,1,,23,10,6,9,4,190,70,0,20,0,2,0,0,0,59,
|
||||
55,golduck,1,54,23,2,6,9,4,75,70,0,20,0,2,0,0,0,60,
|
||||
56,mankey,1,,24,3,6,4,4,190,70,0,20,0,2,0,0,0,61,
|
||||
57,primeape,1,56,24,3,6,4,4,75,70,0,20,0,2,0,0,0,62,
|
||||
58,growlithe,1,,25,3,8,3,2,190,70,0,20,0,1,0,0,0,63,
|
||||
59,arcanine,1,58,25,3,8,3,2,75,70,0,20,0,1,0,0,0,64,
|
||||
60,poliwag,1,,26,2,7,9,4,255,70,0,20,0,4,0,0,0,65,
|
||||
61,poliwhirl,1,60,26,2,12,9,4,120,70,0,20,0,4,0,0,0,66,
|
||||
62,poliwrath,1,61,26,2,12,9,4,45,70,0,20,0,4,0,0,0,67,
|
||||
63,abra,1,,27,3,6,8,2,200,70,0,20,0,4,0,0,0,69,127
|
||||
64,kadabra,1,63,27,3,6,8,2,100,70,0,20,1,4,0,0,0,70,128
|
||||
65,alakazam,1,64,27,3,12,8,2,50,70,0,20,1,4,1,0,0,71,129
|
||||
66,machop,1,,28,4,6,4,2,180,70,0,20,0,4,0,0,0,72,98
|
||||
67,machoke,1,66,28,4,12,4,2,90,70,0,20,0,4,0,0,0,73,99
|
||||
68,machamp,1,67,28,4,12,4,2,45,70,0,20,0,4,0,0,0,74,100
|
||||
69,bellsprout,1,,29,5,12,2,4,255,70,0,20,0,4,0,0,0,75,
|
||||
70,weepinbell,1,69,29,5,5,2,4,120,70,0,20,0,4,0,0,0,76,
|
||||
71,victreebel,1,70,29,5,5,2,4,45,70,0,20,0,4,0,0,0,77,
|
||||
72,tentacool,1,,30,2,10,7,4,190,70,0,20,0,1,0,0,0,78,
|
||||
73,tentacruel,1,72,30,2,10,7,4,60,70,0,20,0,1,0,0,0,79,
|
||||
74,geodude,1,,31,3,4,4,4,255,70,0,15,0,4,0,0,0,80,
|
||||
75,graveler,1,74,31,3,12,4,4,120,70,0,15,0,4,0,0,0,81,
|
||||
76,golem,1,75,31,3,12,4,4,45,70,0,15,0,4,0,0,0,82,
|
||||
77,ponyta,1,,32,10,8,3,4,190,70,0,20,0,2,0,0,0,83,
|
||||
78,rapidash,1,77,32,10,8,3,4,60,70,0,20,0,2,0,0,0,84,
|
||||
79,slowpoke,1,,33,6,8,9,4,190,70,0,20,0,2,0,0,0,85,
|
||||
80,slowbro,1,79,33,6,6,9,4,75,70,0,20,0,2,1,0,0,86,
|
||||
81,magnemite,1,,34,4,4,6,-1,190,70,0,20,0,2,0,0,0,88,
|
||||
82,magneton,1,81,34,4,11,6,-1,60,70,0,20,0,2,0,0,0,89,
|
||||
83,farfetchd,1,,35,3,9,3,4,45,70,0,20,0,2,0,0,0,91,
|
||||
84,doduo,1,,36,3,7,3,4,190,70,0,20,1,2,0,0,0,92,
|
||||
85,dodrio,1,84,36,3,7,3,4,45,70,0,20,1,2,0,0,0,93,
|
||||
86,seel,1,,37,9,3,7,4,190,70,0,20,0,2,0,0,0,94,
|
||||
87,dewgong,1,86,37,9,3,7,4,75,70,0,20,0,2,0,0,0,95,
|
||||
88,grimer,1,,38,7,4,8,4,190,70,0,20,0,2,0,0,0,96,
|
||||
89,muk,1,88,38,7,4,8,4,75,70,0,20,0,2,0,0,0,97,
|
||||
90,shellder,1,,39,7,1,7,4,190,70,0,20,0,1,0,0,0,98,
|
||||
91,cloyster,1,90,39,7,1,7,4,60,70,0,20,0,1,0,0,0,99,
|
||||
92,gastly,1,,40,7,1,1,4,190,70,0,20,0,4,0,0,0,100,112
|
||||
93,haunter,1,92,40,7,4,1,4,90,70,0,20,0,4,0,0,0,101,113
|
||||
94,gengar,1,93,40,7,6,1,4,45,70,0,20,0,4,1,0,0,102,114
|
||||
95,onix,1,,41,4,2,1,4,45,70,0,25,0,2,0,0,0,103,175
|
||||
96,drowzee,1,,42,10,12,3,4,190,70,0,20,0,2,0,0,0,105,
|
||||
97,hypno,1,96,42,10,12,3,4,75,70,0,20,1,2,0,0,0,106,
|
||||
98,krabby,1,,43,8,14,9,4,225,70,0,20,0,2,0,0,0,107,
|
||||
99,kingler,1,98,43,8,14,9,4,60,70,0,20,0,2,0,0,0,108,
|
||||
100,voltorb,1,,44,8,1,8,-1,190,70,0,20,0,2,0,0,0,109,
|
||||
101,electrode,1,100,44,8,1,8,-1,60,70,0,20,0,2,0,0,0,110,
|
||||
102,exeggcute,1,,45,6,11,2,4,90,70,0,20,0,1,0,0,0,111,
|
||||
103,exeggutor,1,102,45,10,7,2,4,45,70,0,20,0,1,0,0,0,112,
|
||||
104,cubone,1,,46,3,6,4,4,190,70,0,20,0,2,0,0,0,113,
|
||||
105,marowak,1,104,46,3,6,4,4,75,70,0,20,0,2,0,0,0,114,
|
||||
106,hitmonlee,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,116,
|
||||
107,hitmonchan,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,117,
|
||||
108,lickitung,1,,48,6,6,3,4,45,70,0,20,0,2,0,0,0,119,
|
||||
109,koffing,1,,49,7,1,8,4,190,70,0,20,0,2,0,0,0,121,
|
||||
110,weezing,1,109,49,7,11,8,4,60,70,0,20,0,2,0,0,0,122,
|
||||
111,rhyhorn,1,,50,4,8,6,4,120,70,0,20,1,1,0,0,0,123,160
|
||||
112,rhydon,1,111,50,4,6,6,4,60,70,0,20,1,1,0,0,0,124,161
|
||||
113,chansey,1,440,51,6,6,8,8,30,140,0,40,0,3,0,0,0,127,
|
||||
114,tangela,1,,52,2,7,3,4,45,70,0,20,0,2,0,0,0,129,
|
||||
115,kangaskhan,1,,53,3,6,3,8,45,70,0,20,0,2,1,0,0,131,
|
||||
116,horsea,1,,54,2,5,7,4,225,70,0,20,0,2,0,0,0,132,
|
||||
117,seadra,1,116,54,2,5,7,4,75,70,0,20,0,2,0,0,0,133,
|
||||
118,goldeen,1,,55,8,3,9,4,225,70,0,20,1,2,0,0,0,135,
|
||||
119,seaking,1,118,55,8,3,9,4,60,70,0,20,1,2,0,0,0,136,
|
||||
120,staryu,1,,56,3,5,7,-1,225,70,0,20,0,1,0,0,0,137,
|
||||
121,starmie,1,120,56,7,5,7,-1,60,70,0,20,0,1,0,0,0,138,
|
||||
122,mr-mime,1,439,57,6,12,8,4,45,70,0,25,0,2,0,0,0,140,
|
||||
123,scyther,1,,58,5,13,3,4,45,70,0,25,1,2,0,0,0,141,188
|
||||
124,jynx,1,238,59,8,12,8,8,45,70,0,25,0,2,0,0,0,144,
|
||||
125,electabuzz,1,239,60,10,6,3,2,45,70,0,25,0,2,0,0,0,146,
|
||||
126,magmar,1,240,61,8,6,4,2,45,70,0,25,0,2,0,0,0,149,
|
||||
127,pinsir,1,,62,3,12,2,4,45,70,0,25,0,1,1,0,0,151,
|
||||
128,tauros,1,,63,3,8,3,0,45,70,0,20,0,1,0,0,0,152,
|
||||
129,magikarp,1,,64,8,3,9,4,255,70,0,5,1,1,0,0,0,153,13
|
||||
130,gyarados,1,129,64,2,2,9,4,45,70,0,5,1,1,1,0,0,154,14
|
||||
131,lapras,1,,65,2,3,7,4,45,70,0,40,0,1,0,0,0,155,190
|
||||
132,ditto,1,,66,7,1,8,-1,35,70,0,20,0,2,0,0,0,156,
|
||||
133,eevee,1,,67,3,8,8,1,45,70,0,35,0,2,0,0,0,157,1
|
||||
134,vaporeon,1,133,67,2,8,8,1,45,70,0,35,0,2,0,0,0,158,2
|
||||
135,jolteon,1,133,67,10,8,8,1,45,70,0,35,0,2,0,0,0,159,3
|
||||
136,flareon,1,133,67,8,8,8,1,45,70,0,35,0,2,0,0,0,160,4
|
||||
137,porygon,1,,68,6,7,8,-1,45,70,0,20,0,2,0,0,0,166,
|
||||
138,omanyte,1,,69,2,10,7,1,45,70,0,30,0,2,0,0,0,169,
|
||||
139,omastar,1,138,69,2,10,7,1,45,70,0,30,0,2,0,0,0,170,
|
||||
140,kabuto,1,,70,3,14,7,1,45,70,0,30,0,2,0,0,0,171,
|
||||
141,kabutops,1,140,70,3,6,7,1,45,70,0,30,0,2,0,0,0,172,
|
||||
142,aerodactyl,1,,71,7,9,4,1,45,70,0,35,0,1,1,0,0,173,
|
||||
143,snorlax,1,446,72,1,12,4,1,25,70,0,40,0,1,0,0,0,175,179
|
||||
144,articuno,1,,73,2,9,5,-1,3,35,0,80,0,1,0,1,0,176,192
|
||||
145,zapdos,1,,74,10,9,5,-1,3,35,0,80,0,1,0,1,0,177,
|
||||
146,moltres,1,,75,10,9,5,-1,3,35,0,80,0,1,0,1,0,178,
|
||||
147,dratini,1,,76,2,2,9,4,45,35,0,40,0,1,0,0,0,179,76
|
||||
148,dragonair,1,147,76,2,2,9,4,45,35,0,40,0,1,0,0,0,180,77
|
||||
149,dragonite,1,148,76,3,6,9,4,45,35,0,40,0,1,0,0,0,181,78
|
||||
150,mewtwo,1,,77,7,6,5,-1,3,0,0,120,0,1,1,1,0,182,196
|
||||
151,mew,1,,78,6,6,5,-1,45,100,0,120,0,4,0,0,1,183,
|
||||
152,chikorita,2,,79,5,8,3,1,45,70,0,20,0,4,0,0,0,184,
|
||||
153,bayleef,2,152,79,5,8,3,1,45,70,0,20,0,4,0,0,0,185,
|
||||
154,meganium,2,153,79,5,8,3,1,45,70,0,20,1,4,0,0,0,186,
|
||||
155,cyndaquil,2,,80,10,12,3,1,45,70,0,20,0,4,0,0,0,187,
|
||||
156,quilava,2,155,80,10,8,3,1,45,70,0,20,0,4,0,0,0,188,
|
||||
157,typhlosion,2,156,80,10,8,3,1,45,70,0,20,0,4,0,0,0,189,
|
||||
158,totodile,2,,81,2,6,9,1,45,70,0,20,0,4,0,0,0,190,
|
||||
159,croconaw,2,158,81,2,6,9,1,45,70,0,20,0,4,0,0,0,191,
|
||||
160,feraligatr,2,159,81,2,6,9,1,45,70,0,20,0,4,0,0,0,192,
|
||||
161,sentret,2,,82,3,8,3,4,255,70,0,15,0,2,0,0,0,193,
|
||||
162,furret,2,161,82,3,8,3,4,90,70,0,15,0,2,0,0,0,194,
|
||||
163,hoothoot,2,,83,3,9,2,4,255,70,0,15,0,2,0,0,0,195,
|
||||
164,noctowl,2,163,83,3,9,2,4,90,70,0,15,0,2,0,0,0,196,
|
||||
165,ledyba,2,,84,8,9,2,4,255,70,0,15,1,3,0,0,0,197,
|
||||
166,ledian,2,165,84,8,9,2,4,90,70,0,15,1,3,0,0,0,198,
|
||||
167,spinarak,2,,85,5,14,2,4,255,70,0,15,0,3,0,0,0,199,
|
||||
168,ariados,2,167,85,8,14,2,4,90,70,0,15,0,3,0,0,0,200,
|
||||
169,crobat,2,42,17,7,13,1,4,90,70,0,15,0,2,0,0,0,46,25
|
||||
170,chinchou,2,,86,2,3,7,4,190,70,0,20,0,1,0,0,0,201,
|
||||
171,lanturn,2,170,86,2,3,7,4,75,70,0,20,0,1,0,0,0,202,
|
||||
172,pichu,2,,10,10,8,2,4,190,70,1,10,0,2,0,0,0,25,15
|
||||
173,cleffa,2,,14,6,6,4,6,150,140,1,10,0,3,0,0,0,36,
|
||||
174,igglybuff,2,,16,6,12,3,6,170,70,1,10,0,3,0,0,0,41,20
|
||||
175,togepi,2,,87,9,12,2,1,190,70,1,10,0,3,0,0,0,203,
|
||||
176,togetic,2,175,87,9,12,2,1,75,70,0,10,0,3,0,0,0,204,
|
||||
177,natu,2,,88,5,9,2,4,190,70,0,20,0,2,0,0,0,206,
|
||||
178,xatu,2,177,88,5,9,2,4,75,70,0,20,1,2,0,0,0,207,
|
||||
179,mareep,2,,89,9,8,3,4,235,70,0,20,0,4,0,0,0,208,45
|
||||
180,flaaffy,2,179,89,6,6,3,4,120,70,0,20,0,4,0,0,0,209,46
|
||||
181,ampharos,2,180,89,10,6,3,4,45,70,0,20,0,4,1,0,0,210,47
|
||||
182,bellossom,2,44,18,5,12,3,4,45,70,0,20,0,4,0,0,0,50,
|
||||
183,marill,2,298,90,2,6,9,4,190,70,0,10,0,3,0,0,0,212,
|
||||
184,azumarill,2,183,90,2,6,9,4,75,70,0,10,0,3,0,0,0,213,
|
||||
185,sudowoodo,2,438,91,3,12,2,4,65,70,0,20,1,2,0,0,0,215,
|
||||
186,politoed,2,61,26,5,12,9,4,45,70,0,20,1,4,0,0,0,68,
|
||||
187,hoppip,2,,92,6,6,3,4,255,70,0,20,0,4,0,0,0,216,
|
||||
188,skiploom,2,187,92,5,6,3,4,120,70,0,20,0,4,0,0,0,217,
|
||||
189,jumpluff,2,188,92,2,6,3,4,45,70,0,20,0,4,0,0,0,218,
|
||||
190,aipom,2,,93,7,6,2,4,45,70,0,20,1,3,0,0,0,219,
|
||||
191,sunkern,2,,94,10,1,3,4,235,70,0,20,0,4,0,0,0,221,
|
||||
192,sunflora,2,191,94,10,12,3,4,120,70,0,20,0,4,0,0,0,222,
|
||||
193,yanma,2,,95,8,13,2,4,75,70,0,20,0,2,0,0,0,223,
|
||||
194,wooper,2,,96,2,7,9,4,255,70,0,20,1,2,0,0,0,225,18
|
||||
195,quagsire,2,194,96,2,6,9,4,90,70,0,20,1,2,0,0,0,226,19
|
||||
196,espeon,2,133,67,7,8,8,1,45,70,0,35,0,2,0,0,0,161,5
|
||||
197,umbreon,2,133,67,1,8,8,1,45,35,0,35,0,2,0,0,0,162,6
|
||||
198,murkrow,2,,97,1,9,2,4,30,35,0,20,1,4,0,0,0,227,
|
||||
199,slowking,2,79,33,6,6,9,4,70,70,0,20,0,2,0,0,0,87,
|
||||
200,misdreavus,2,,98,4,1,1,4,45,35,0,25,0,3,0,0,0,229,183
|
||||
201,unown,2,,99,1,1,5,-1,225,70,0,40,0,2,0,0,0,231,
|
||||
202,wobbuffet,2,360,100,2,5,1,4,45,70,0,20,1,2,0,0,0,233,
|
||||
203,girafarig,2,,101,10,8,3,4,60,70,0,20,1,2,0,0,0,234,
|
||||
204,pineco,2,,102,4,1,2,4,190,70,0,20,0,2,0,0,0,235,56
|
||||
205,forretress,2,204,102,7,1,2,4,75,70,0,20,0,2,0,0,0,236,57
|
||||
206,dunsparce,2,,103,10,2,1,4,190,70,0,20,0,2,0,0,0,237,
|
||||
207,gligar,2,,104,7,9,4,4,60,70,0,20,1,4,0,0,0,238,
|
||||
208,steelix,2,95,41,4,2,1,4,25,70,0,25,1,2,1,0,0,104,176
|
||||
209,snubbull,2,,105,6,12,8,6,190,70,0,20,0,3,0,0,0,240,
|
||||
210,granbull,2,209,105,7,6,8,6,75,70,0,20,0,3,0,0,0,241,
|
||||
211,qwilfish,2,,106,4,3,7,4,45,70,0,20,0,2,0,0,0,242,
|
||||
212,scizor,2,123,58,8,13,3,4,25,70,0,25,1,2,1,0,0,142,189
|
||||
213,shuckle,2,,107,10,14,4,4,190,70,0,20,0,4,0,0,0,243,
|
||||
214,heracross,2,,108,2,12,2,4,45,70,0,25,1,1,1,0,0,244,
|
||||
215,sneasel,2,,109,1,6,2,4,60,35,0,20,1,4,0,0,0,245,181
|
||||
216,teddiursa,2,,110,3,6,4,4,120,70,0,20,0,2,0,0,0,247,
|
||||
217,ursaring,2,216,110,3,6,4,4,60,70,0,20,1,2,0,0,0,248,
|
||||
218,slugma,2,,111,8,2,4,4,190,70,0,20,0,2,0,0,0,249,
|
||||
219,magcargo,2,218,111,8,2,4,4,75,70,0,20,0,2,0,0,0,250,
|
||||
220,swinub,2,,112,3,8,1,4,225,70,0,20,0,1,0,0,0,251,
|
||||
221,piloswine,2,220,112,3,8,1,4,75,70,0,20,1,1,0,0,0,252,
|
||||
222,corsola,2,,113,6,14,7,6,60,70,0,20,0,3,0,0,0,254,
|
||||
223,remoraid,2,,114,4,3,7,4,190,70,0,20,0,2,0,0,0,255,
|
||||
224,octillery,2,223,114,8,10,7,4,75,70,0,20,1,2,0,0,0,256,
|
||||
225,delibird,2,,115,8,9,4,4,45,70,0,20,0,3,0,0,0,257,
|
||||
226,mantine,2,458,116,7,9,7,4,25,70,0,25,0,1,0,0,0,259,
|
||||
227,skarmory,2,,117,4,9,6,4,25,70,0,25,0,1,0,0,0,260,
|
||||
228,houndour,2,,118,1,8,6,4,120,35,0,20,0,1,0,0,0,261,
|
||||
229,houndoom,2,228,118,1,8,6,4,45,35,0,20,1,1,1,0,0,262,
|
||||
230,kingdra,2,117,54,2,5,7,4,45,70,0,20,0,2,0,0,0,134,
|
||||
231,phanpy,2,,119,2,8,6,4,120,70,0,20,0,2,0,0,0,263,
|
||||
232,donphan,2,231,119,4,8,6,4,60,70,0,20,1,2,0,0,0,264,
|
||||
233,porygon2,2,137,68,8,7,8,-1,45,70,0,20,0,2,0,0,0,167,
|
||||
234,stantler,2,,120,3,8,2,4,45,70,0,20,0,1,0,0,0,265,
|
||||
235,smeargle,2,,121,9,6,8,4,45,70,0,20,0,3,0,0,0,266,
|
||||
236,tyrogue,2,,47,7,12,8,0,75,70,1,25,0,2,0,0,0,115,
|
||||
237,hitmontop,2,236,47,3,6,8,0,45,70,0,25,0,2,0,0,0,118,
|
||||
238,smoochum,2,,59,6,12,8,8,45,70,1,25,0,2,0,0,0,143,
|
||||
239,elekid,2,,60,10,12,3,2,45,70,1,25,0,2,0,0,0,145,
|
||||
240,magby,2,,61,8,6,4,2,45,70,1,25,0,2,0,0,0,148,
|
||||
241,miltank,2,,122,6,6,3,8,45,70,0,20,0,1,0,0,0,267,
|
||||
242,blissey,2,113,51,6,12,8,8,30,140,0,40,0,3,0,0,0,128,
|
||||
243,raikou,2,,123,10,8,3,-1,3,35,0,80,0,1,0,1,0,268,
|
||||
244,entei,2,,124,3,8,3,-1,3,35,0,80,0,1,0,1,0,269,
|
||||
245,suicune,2,,125,2,8,3,-1,3,35,0,80,0,1,0,1,0,270,
|
||||
246,larvitar,2,,126,5,6,4,4,45,35,0,40,0,1,0,0,0,271,79
|
||||
247,pupitar,2,246,126,4,2,4,4,45,35,0,40,0,1,0,0,0,272,80
|
||||
248,tyranitar,2,247,126,5,6,4,4,45,35,0,40,0,1,1,0,0,273,81
|
||||
249,lugia,2,,127,9,9,5,-1,3,0,0,120,0,1,0,1,0,274,
|
||||
250,ho-oh,2,,128,8,9,5,-1,3,0,0,120,0,1,0,1,0,275,
|
||||
251,celebi,2,,129,5,12,2,-1,45,100,0,120,0,4,0,0,1,276,
|
||||
252,treecko,3,,130,5,6,2,1,45,70,0,20,0,4,0,0,0,277,130
|
||||
253,grovyle,3,252,130,5,6,2,1,45,70,0,20,0,4,0,0,0,278,131
|
||||
254,sceptile,3,253,130,5,6,2,1,45,70,0,20,0,4,1,0,0,279,132
|
||||
255,torchic,3,,131,8,7,3,1,45,70,0,20,1,4,0,0,0,280,
|
||||
256,combusken,3,255,131,8,6,3,1,45,70,0,20,1,4,0,0,0,281,
|
||||
257,blaziken,3,256,131,8,6,3,1,45,70,0,20,1,4,1,0,0,282,
|
||||
258,mudkip,3,,132,2,8,9,1,45,70,0,20,0,4,0,0,0,283,
|
||||
259,marshtomp,3,258,132,2,6,9,1,45,70,0,20,0,4,0,0,0,284,
|
||||
260,swampert,3,259,132,2,6,9,1,45,70,0,20,0,4,1,0,0,285,
|
||||
261,poochyena,3,,133,4,8,3,4,255,70,0,15,0,2,0,0,0,286,
|
||||
262,mightyena,3,261,133,4,8,3,4,127,70,0,15,0,2,0,0,0,287,
|
||||
263,zigzagoon,3,,134,3,8,3,4,255,70,0,15,0,2,0,0,0,288,
|
||||
264,linoone,3,263,134,9,8,3,4,90,70,0,15,0,2,0,0,0,289,
|
||||
265,wurmple,3,,135,8,14,2,4,255,70,0,15,0,2,0,0,0,290,
|
||||
266,silcoon,3,265,135,9,1,2,4,120,70,0,15,0,2,0,0,0,291,
|
||||
267,beautifly,3,266,135,10,13,2,4,45,70,0,15,1,2,0,0,0,292,
|
||||
268,cascoon,3,265,135,7,1,2,4,120,70,0,15,0,2,0,0,0,293,
|
||||
269,dustox,3,268,135,5,13,2,4,45,70,0,15,1,2,0,0,0,294,
|
||||
270,lotad,3,,136,5,14,9,4,255,70,0,15,0,4,0,0,0,295,
|
||||
271,lombre,3,270,136,5,12,9,4,120,70,0,15,0,4,0,0,0,296,
|
||||
272,ludicolo,3,271,136,5,12,9,4,45,70,0,15,1,4,0,0,0,297,
|
||||
273,seedot,3,,137,3,7,2,4,255,70,0,15,0,4,0,0,0,298,
|
||||
274,nuzleaf,3,273,137,3,12,2,4,120,70,0,15,1,4,0,0,0,299,
|
||||
275,shiftry,3,274,137,3,12,2,4,45,70,0,15,1,4,0,0,0,300,
|
||||
276,taillow,3,,138,2,9,3,4,200,70,0,15,0,4,0,0,0,301,
|
||||
277,swellow,3,276,138,2,9,3,4,45,70,0,15,0,4,0,0,0,302,
|
||||
278,wingull,3,,139,9,9,7,4,190,70,0,20,0,2,0,0,0,303,
|
||||
279,pelipper,3,278,139,10,9,7,4,45,70,0,20,0,2,0,0,0,304,
|
||||
280,ralts,3,,140,9,12,8,4,235,35,0,20,0,1,0,0,0,305,9
|
||||
281,kirlia,3,280,140,9,12,8,4,120,35,0,20,0,1,0,0,0,306,10
|
||||
282,gardevoir,3,281,140,9,12,8,4,45,35,0,20,0,1,1,0,0,307,11
|
||||
283,surskit,3,,141,2,14,9,4,200,70,0,15,0,2,0,0,0,309,
|
||||
284,masquerain,3,283,141,2,13,9,4,75,70,0,15,0,2,0,0,0,310,
|
||||
285,shroomish,3,,142,3,7,2,4,255,70,0,15,0,6,0,0,0,311,
|
||||
286,breloom,3,285,142,5,6,2,4,90,70,0,15,0,6,0,0,0,312,
|
||||
287,slakoth,3,,143,3,8,2,4,255,70,0,15,0,1,0,0,0,313,
|
||||
288,vigoroth,3,287,143,9,6,2,4,120,70,0,15,0,1,0,0,0,314,
|
||||
289,slaking,3,288,143,3,12,2,4,45,70,0,15,0,1,0,0,0,315,
|
||||
290,nincada,3,,144,4,14,2,4,255,70,0,15,0,5,0,0,0,316,
|
||||
291,ninjask,3,290,144,10,13,2,4,120,70,0,15,0,5,0,0,0,317,
|
||||
292,shedinja,3,290,144,3,5,2,-1,45,70,0,15,0,5,0,0,0,318,
|
||||
293,whismur,3,,145,6,6,1,4,190,70,0,20,0,4,0,0,0,319,
|
||||
294,loudred,3,293,145,2,6,1,4,120,70,0,20,0,4,0,0,0,320,
|
||||
295,exploud,3,294,145,2,6,1,4,45,70,0,20,0,4,0,0,0,321,
|
||||
296,makuhita,3,,146,10,12,4,2,180,70,0,20,0,6,0,0,0,322,
|
||||
297,hariyama,3,296,146,3,12,4,2,200,70,0,20,0,6,0,0,0,323,
|
||||
298,azurill,3,,90,2,7,9,6,150,70,1,10,0,3,0,0,0,211,
|
||||
299,nosepass,3,,147,4,12,1,4,255,70,0,20,0,2,0,0,0,324,
|
||||
300,skitty,3,,148,6,8,2,6,255,70,0,15,0,3,0,0,0,326,
|
||||
301,delcatty,3,300,148,7,8,2,6,60,70,0,15,0,3,0,0,0,327,
|
||||
302,sableye,3,,149,7,12,1,4,45,35,0,25,0,4,1,0,0,328,
|
||||
303,mawile,3,,150,1,12,1,4,45,70,0,20,0,3,1,0,0,329,
|
||||
304,aron,3,,151,4,8,4,4,180,35,0,35,0,1,0,0,0,330,149
|
||||
305,lairon,3,304,151,4,8,4,4,90,35,0,35,0,1,0,0,0,331,150
|
||||
306,aggron,3,305,151,4,6,4,4,45,35,0,35,0,1,1,0,0,332,151
|
||||
307,meditite,3,,152,2,12,4,4,180,70,0,20,1,2,0,0,0,333,
|
||||
308,medicham,3,307,152,8,12,4,4,90,70,0,20,1,2,1,0,0,334,
|
||||
309,electrike,3,,153,5,8,3,4,120,70,0,20,0,1,0,0,0,335,
|
||||
310,manectric,3,309,153,10,8,3,4,45,70,0,20,0,1,1,0,0,336,
|
||||
311,plusle,3,,154,10,6,3,4,200,70,0,20,0,2,0,0,0,337,
|
||||
312,minun,3,,155,10,6,3,4,200,70,0,20,0,2,0,0,0,338,
|
||||
313,volbeat,3,,156,4,6,2,0,150,70,0,15,0,5,0,0,0,339,
|
||||
314,illumise,3,,157,7,12,2,8,150,70,0,15,0,6,0,0,0,340,
|
||||
315,roselia,3,406,158,5,12,3,4,150,70,0,20,1,4,0,0,0,342,
|
||||
316,gulpin,3,,159,5,4,3,4,225,70,0,20,1,6,0,0,0,344,
|
||||
317,swalot,3,316,159,7,4,3,4,75,70,0,20,1,6,0,0,0,345,
|
||||
318,carvanha,3,,160,8,3,7,4,225,35,0,20,0,1,0,0,0,346,
|
||||
319,sharpedo,3,318,160,2,3,7,4,60,35,0,20,0,1,1,0,0,347,
|
||||
320,wailmer,3,,161,2,3,7,4,125,70,0,40,0,6,0,0,0,348,
|
||||
321,wailord,3,320,161,2,3,7,4,60,70,0,40,0,6,0,0,0,349,
|
||||
322,numel,3,,162,10,8,4,4,255,70,0,20,1,2,0,0,0,350,
|
||||
323,camerupt,3,322,162,8,8,4,4,150,70,0,20,1,2,1,0,0,351,
|
||||
324,torkoal,3,,163,3,8,4,4,90,70,0,20,0,2,0,0,0,352,
|
||||
325,spoink,3,,164,1,4,4,4,255,70,0,20,0,3,0,0,0,353,
|
||||
326,grumpig,3,325,164,7,6,4,4,60,70,0,20,0,3,0,0,0,354,
|
||||
327,spinda,3,,165,3,6,4,4,255,70,0,15,0,3,0,0,0,355,
|
||||
328,trapinch,3,,166,3,14,6,4,255,70,0,20,0,4,0,0,0,356,
|
||||
329,vibrava,3,328,166,5,13,6,4,120,70,0,20,0,4,0,0,0,357,
|
||||
330,flygon,3,329,166,5,9,6,4,45,70,0,20,0,4,0,0,0,358,
|
||||
331,cacnea,3,,167,5,12,6,4,190,35,0,20,0,4,0,0,0,359,
|
||||
332,cacturne,3,331,167,5,12,6,4,60,35,0,20,1,4,0,0,0,360,
|
||||
333,swablu,3,,168,2,9,2,4,255,70,0,20,0,5,0,0,0,361,
|
||||
334,altaria,3,333,168,2,9,2,4,45,70,0,20,0,5,1,0,0,362,
|
||||
335,zangoose,3,,169,9,6,3,4,90,70,0,20,0,5,0,0,0,363,
|
||||
336,seviper,3,,170,1,2,3,4,90,70,0,20,0,6,0,0,0,364,
|
||||
337,lunatone,3,,171,10,1,1,-1,45,70,0,25,0,3,0,0,0,365,
|
||||
338,solrock,3,,172,8,1,1,-1,45,70,0,25,0,3,0,0,0,366,
|
||||
339,barboach,3,,173,4,3,9,4,190,70,0,20,0,2,0,0,0,367,
|
||||
340,whiscash,3,339,173,2,3,9,4,75,70,0,20,0,2,0,0,0,368,
|
||||
341,corphish,3,,174,8,14,9,4,205,70,0,15,0,6,0,0,0,369,
|
||||
342,crawdaunt,3,341,174,8,14,9,4,155,70,0,15,0,6,0,0,0,370,
|
||||
343,baltoy,3,,175,3,4,6,-1,255,70,0,20,0,2,0,0,0,371,
|
||||
344,claydol,3,343,175,1,4,6,-1,90,70,0,20,0,2,0,0,0,372,
|
||||
345,lileep,3,,176,7,5,7,1,45,70,0,30,0,5,0,0,0,373,
|
||||
346,cradily,3,345,176,5,5,7,1,45,70,0,30,0,5,0,0,0,374,
|
||||
347,anorith,3,,177,4,14,9,1,45,70,0,30,0,5,0,0,0,375,171
|
||||
348,armaldo,3,347,177,4,6,9,1,45,70,0,30,0,5,0,0,0,376,172
|
||||
349,feebas,3,,178,3,3,9,4,255,70,0,20,0,5,0,0,0,377,
|
||||
350,milotic,3,349,178,6,2,9,4,60,70,0,20,1,5,0,0,0,378,
|
||||
351,castform,3,,179,4,1,3,4,45,70,0,25,0,2,1,0,0,379,
|
||||
352,kecleon,3,,180,5,6,2,4,200,70,0,20,0,4,0,0,0,380,
|
||||
353,shuppet,3,,181,1,1,8,4,225,35,0,25,0,3,0,0,0,381,
|
||||
354,banette,3,353,181,1,6,8,4,45,35,0,25,0,3,1,0,0,382,
|
||||
355,duskull,3,,182,1,4,2,4,190,35,0,25,0,3,0,0,0,383,69
|
||||
356,dusclops,3,355,182,1,12,2,4,90,35,0,25,0,3,0,0,0,384,70
|
||||
357,tropius,3,,183,5,8,2,4,200,70,0,25,0,1,0,0,0,386,
|
||||
358,chimecho,3,433,184,2,4,3,4,45,70,0,25,0,3,0,0,0,388,53
|
||||
359,absol,3,,185,9,8,4,4,30,35,0,25,0,4,1,0,0,389,
|
||||
360,wynaut,3,,100,2,6,1,4,125,70,1,20,0,2,0,0,0,232,
|
||||
361,snorunt,3,,186,4,12,1,4,190,70,0,20,0,2,0,0,0,390,93
|
||||
362,glalie,3,361,186,4,1,1,4,75,70,0,20,0,2,1,0,0,391,94
|
||||
363,spheal,3,,187,2,3,7,4,255,70,0,20,0,4,0,0,0,393,60
|
||||
364,sealeo,3,363,187,2,3,7,4,120,70,0,20,0,4,0,0,0,394,61
|
||||
365,walrein,3,364,187,2,8,7,4,45,70,0,20,0,4,0,0,0,395,62
|
||||
366,clamperl,3,,188,2,1,7,4,255,70,0,20,0,5,0,0,0,396,
|
||||
367,huntail,3,366,188,2,2,7,4,60,70,0,20,0,5,0,0,0,397,
|
||||
368,gorebyss,3,366,188,6,2,7,4,60,70,0,20,0,5,0,0,0,398,
|
||||
369,relicanth,3,,189,4,3,7,1,25,70,0,40,1,1,0,0,0,399,
|
||||
370,luvdisc,3,,190,6,3,7,6,225,70,0,20,0,3,0,0,0,400,
|
||||
371,bagon,3,,191,2,12,6,4,45,35,0,40,0,1,0,0,0,401,
|
||||
372,shelgon,3,371,191,9,8,6,4,45,35,0,40,0,1,0,0,0,402,
|
||||
373,salamence,3,372,191,2,8,6,4,45,35,0,40,0,1,1,0,0,403,
|
||||
374,beldum,3,,192,2,5,6,-1,3,35,0,40,0,1,0,0,0,404,82
|
||||
375,metang,3,374,192,2,4,6,-1,3,35,0,40,0,1,0,0,0,405,83
|
||||
376,metagross,3,375,192,2,11,6,-1,3,35,0,40,0,1,1,0,0,406,84
|
||||
377,regirock,3,,193,3,12,1,-1,3,35,0,80,0,1,0,1,0,407,
|
||||
378,regice,3,,194,2,12,1,-1,3,35,0,80,0,1,0,1,0,408,
|
||||
379,registeel,3,,195,4,12,1,-1,3,35,0,80,0,1,0,1,0,409,193
|
||||
380,latias,3,,196,8,9,9,8,3,90,0,120,0,1,1,1,0,410,
|
||||
381,latios,3,,197,2,9,9,0,3,90,0,120,0,1,1,1,0,411,
|
||||
382,kyogre,3,,198,2,3,7,-1,3,0,0,120,0,1,1,1,0,412,
|
||||
383,groudon,3,,199,8,6,6,-1,3,0,0,120,0,1,1,1,0,413,194
|
||||
384,rayquaza,3,,200,5,2,5,-1,45,0,0,120,0,1,1,1,0,414,200
|
||||
385,jirachi,3,,201,10,12,4,-1,3,100,0,120,0,1,0,0,1,415,
|
||||
386,deoxys,3,,202,8,12,5,-1,3,0,0,120,0,1,1,0,1,416,
|
||||
387,turtwig,4,,203,5,8,,1,45,70,0,20,0,4,0,0,0,417,
|
||||
388,grotle,4,387,203,5,8,,1,45,70,0,20,0,4,0,0,0,418,
|
||||
389,torterra,4,388,203,5,8,,1,45,70,0,20,0,4,0,0,0,419,
|
||||
390,chimchar,4,,204,3,6,,1,45,70,0,20,0,4,0,0,0,420,115
|
||||
391,monferno,4,390,204,3,6,,1,45,70,0,20,0,4,0,0,0,421,116
|
||||
392,infernape,4,391,204,3,6,,1,45,70,0,20,0,4,0,0,0,422,117
|
||||
393,piplup,4,,205,2,12,,1,45,70,0,20,0,4,0,0,0,423,133
|
||||
394,prinplup,4,393,205,2,6,,1,45,70,0,20,0,4,0,0,0,424,134
|
||||
395,empoleon,4,394,205,2,6,,1,45,70,0,20,0,4,0,0,0,425,135
|
||||
396,starly,4,,206,3,9,,4,255,70,0,15,1,4,0,0,0,426,26
|
||||
397,staravia,4,396,206,3,9,,4,120,70,0,15,1,4,0,0,0,427,27
|
||||
398,staraptor,4,397,206,3,9,,4,45,70,0,15,1,4,0,0,0,428,28
|
||||
399,bidoof,4,,207,3,8,,4,255,70,0,15,1,2,0,0,0,429,29
|
||||
400,bibarel,4,399,207,3,6,,4,127,70,0,15,1,2,0,0,0,430,30
|
||||
401,kricketot,4,,208,8,12,,4,255,70,0,15,1,4,0,0,0,431,
|
||||
402,kricketune,4,401,208,8,13,,4,45,70,0,15,1,4,0,0,0,432,
|
||||
403,shinx,4,,209,2,8,,4,235,70,0,20,1,4,0,0,0,433,34
|
||||
404,luxio,4,403,209,2,8,,4,120,100,0,20,1,4,0,0,0,434,35
|
||||
405,luxray,4,404,209,2,8,,4,45,70,0,20,1,4,0,0,0,435,36
|
||||
406,budew,4,,158,5,12,,4,255,70,1,20,0,4,0,0,0,341,
|
||||
407,roserade,4,315,158,5,12,,4,75,70,0,20,1,4,0,0,0,343,
|
||||
408,cranidos,4,,211,2,6,,1,45,70,0,30,0,5,0,0,0,436,
|
||||
409,rampardos,4,408,211,2,6,,1,45,70,0,30,0,5,0,0,0,437,
|
||||
410,shieldon,4,,212,4,8,,1,45,70,0,30,0,5,0,0,0,438,163
|
||||
411,bastiodon,4,410,212,4,8,,1,45,70,0,30,0,5,0,0,0,439,164
|
||||
412,burmy,4,,213,5,5,,4,120,70,0,15,0,2,1,0,0,440,
|
||||
413,wormadam,4,412,213,5,5,,8,45,70,0,15,0,2,0,0,0,441,
|
||||
414,mothim,4,412,213,10,13,,0,45,70,0,15,0,2,0,0,0,442,
|
||||
415,combee,4,,214,10,11,,1,120,70,0,15,1,4,0,0,0,443,
|
||||
416,vespiquen,4,415,214,10,13,,8,45,70,0,15,0,4,0,0,0,444,
|
||||
417,pachirisu,4,,215,9,8,,4,200,100,0,10,1,2,0,0,0,445,
|
||||
418,buizel,4,,216,3,8,,4,190,70,0,20,1,2,0,0,0,446,
|
||||
419,floatzel,4,418,216,3,8,,4,75,70,0,20,1,2,0,0,0,447,
|
||||
420,cherubi,4,,217,6,11,,4,190,70,0,20,0,2,0,0,0,448,
|
||||
421,cherrim,4,420,217,7,7,,4,75,70,0,20,0,2,1,0,0,449,
|
||||
422,shellos,4,,218,7,2,,4,190,70,0,20,0,2,0,0,0,450,
|
||||
423,gastrodon,4,422,218,7,2,,4,75,70,0,20,0,2,0,0,0,451,
|
||||
424,ambipom,4,190,93,7,6,,4,45,100,0,20,1,3,0,0,0,220,
|
||||
425,drifloon,4,,219,7,4,,4,125,70,0,30,0,6,0,0,0,452,167
|
||||
426,drifblim,4,425,219,7,4,,4,60,70,0,30,0,6,0,0,0,453,168
|
||||
427,buneary,4,,220,3,6,,4,190,0,0,20,0,2,0,0,0,454,
|
||||
428,lopunny,4,427,220,3,6,,4,60,140,0,20,0,2,1,0,0,455,
|
||||
429,mismagius,4,200,98,7,1,,4,45,35,0,25,0,3,0,0,0,230,184
|
||||
430,honchkrow,4,198,97,1,9,,4,30,35,0,20,0,4,0,0,0,228,
|
||||
431,glameow,4,,221,4,8,,6,190,70,0,20,0,3,0,0,0,456,
|
||||
432,purugly,4,431,221,4,8,,6,75,70,0,20,0,3,0,0,0,457,
|
||||
433,chingling,4,,184,10,12,,4,120,70,1,25,0,3,0,0,0,387,52
|
||||
434,stunky,4,,223,7,8,,4,225,70,0,20,0,2,0,0,0,458,
|
||||
435,skuntank,4,434,223,7,8,,4,60,70,0,20,0,2,0,0,0,459,
|
||||
436,bronzor,4,,224,5,1,,-1,255,70,0,20,0,2,0,0,0,460,
|
||||
437,bronzong,4,436,224,5,4,,-1,90,70,0,20,0,2,0,0,0,461,
|
||||
438,bonsly,4,,91,3,7,,4,255,70,1,20,0,2,0,0,0,214,
|
||||
439,mime-jr,4,,57,6,12,,4,145,70,1,25,0,2,0,0,0,139,
|
||||
440,happiny,4,,51,6,12,,8,130,140,1,40,0,3,0,0,0,126,
|
||||
441,chatot,4,,228,1,9,,4,30,35,0,20,0,4,0,0,0,462,
|
||||
442,spiritomb,4,,229,7,5,,4,100,70,0,30,0,2,0,0,0,463,187
|
||||
443,gible,4,,230,2,6,,4,45,70,0,40,1,1,0,0,0,464,85
|
||||
444,gabite,4,443,230,2,6,,4,45,70,0,40,1,1,0,0,0,465,86
|
||||
445,garchomp,4,444,230,2,6,,4,45,70,0,40,1,1,1,0,0,466,87
|
||||
446,munchlax,4,,72,1,12,,1,50,70,1,40,0,1,0,0,0,174,178
|
||||
447,riolu,4,,232,2,6,,1,75,70,1,25,0,4,0,0,0,467,50
|
||||
448,lucario,4,447,232,2,6,,1,45,70,0,25,0,4,1,0,0,468,51
|
||||
449,hippopotas,4,,233,3,8,,4,140,70,0,30,1,1,0,0,0,469,
|
||||
450,hippowdon,4,449,233,3,8,,4,60,70,0,30,1,1,0,0,0,470,
|
||||
451,skorupi,4,,234,7,14,,4,120,70,0,20,0,1,0,0,0,471,156
|
||||
452,drapion,4,451,234,7,14,,4,45,70,0,20,0,1,0,0,0,472,157
|
||||
453,croagunk,4,,235,2,12,,4,140,100,0,10,1,2,0,0,0,473,88
|
||||
454,toxicroak,4,453,235,2,12,,4,75,70,0,20,1,2,0,0,0,474,89
|
||||
455,carnivine,4,,236,5,10,,4,200,70,0,25,0,1,0,0,0,475,186
|
||||
456,finneon,4,,237,2,3,,4,190,70,0,20,1,5,0,0,0,476,
|
||||
457,lumineon,4,456,237,2,3,,4,75,70,0,20,1,5,0,0,0,477,
|
||||
458,mantyke,4,,116,2,9,,4,25,70,1,25,0,1,0,0,0,258,
|
||||
459,snover,4,,239,9,6,,4,120,70,0,20,1,1,0,0,0,478,
|
||||
460,abomasnow,4,459,239,9,6,,4,60,70,0,20,1,1,1,0,0,479,
|
||||
461,weavile,4,215,109,1,6,,4,45,35,0,20,1,4,0,0,0,246,182
|
||||
462,magnezone,4,82,34,4,4,,-1,30,70,0,20,0,2,0,0,0,90,
|
||||
463,lickilicky,4,108,48,6,12,,4,30,70,0,20,0,2,0,0,0,120,
|
||||
464,rhyperior,4,112,50,4,6,,4,30,70,0,20,1,1,0,0,0,125,162
|
||||
465,tangrowth,4,114,52,2,12,,4,30,70,0,20,1,2,0,0,0,130,
|
||||
466,electivire,4,125,60,10,6,,2,30,70,0,25,0,2,0,0,0,147,
|
||||
467,magmortar,4,126,61,8,6,,2,30,70,0,25,0,2,0,0,0,150,
|
||||
468,togekiss,4,176,87,9,9,,1,30,70,0,10,0,3,0,0,0,205,
|
||||
469,yanmega,4,193,95,5,13,,4,30,70,0,20,0,2,0,0,0,224,
|
||||
470,leafeon,4,133,67,5,8,,1,45,35,0,35,0,2,0,0,0,163,7
|
||||
471,glaceon,4,133,67,2,8,,1,45,35,0,35,0,2,0,0,0,164,8
|
||||
472,gliscor,4,207,104,7,9,,4,30,70,0,20,0,4,0,0,0,239,
|
||||
473,mamoswine,4,221,112,3,8,,4,50,70,0,20,1,1,0,0,0,253,
|
||||
474,porygon-z,4,233,68,8,4,,-1,30,70,0,20,0,2,0,0,0,168,
|
||||
475,gallade,4,281,140,9,12,,0,45,35,0,20,0,1,1,0,0,308,12
|
||||
476,probopass,4,299,147,4,11,,4,60,70,0,20,0,2,0,0,0,325,
|
||||
477,dusknoir,4,356,182,1,4,,4,45,35,0,25,0,3,0,0,0,385,71
|
||||
478,froslass,4,361,186,9,4,,8,75,70,0,20,0,2,0,0,0,392,95
|
||||
479,rotom,4,,240,8,1,,-1,45,70,0,20,0,2,1,0,0,480,
|
||||
480,uxie,4,,241,10,6,,-1,3,140,0,80,0,1,0,1,0,481,
|
||||
481,mesprit,4,,242,6,6,,-1,3,140,0,80,0,1,0,1,0,482,
|
||||
482,azelf,4,,243,2,6,,-1,3,140,0,80,0,1,0,1,0,483,
|
||||
483,dialga,4,,244,9,8,,-1,3,0,0,120,0,1,0,1,0,484,195
|
||||
484,palkia,4,,245,7,6,,-1,3,0,0,120,0,1,0,1,0,485,
|
||||
485,heatran,4,,246,3,8,,4,3,100,0,10,0,1,0,1,0,486,
|
||||
486,regigigas,4,,247,9,12,,-1,3,0,0,120,0,1,0,1,0,487,
|
||||
487,giratina,4,,248,1,10,,-1,3,0,0,120,0,1,1,1,0,488,
|
||||
488,cresselia,4,,249,10,2,,8,3,100,0,120,0,1,0,1,0,489,
|
||||
489,phione,4,,250,2,4,,-1,30,70,0,40,0,1,0,0,1,490,
|
||||
490,manaphy,4,,250,2,12,,-1,3,70,0,10,0,1,0,0,1,491,
|
||||
491,darkrai,4,,252,1,12,,-1,3,0,0,120,0,1,0,0,1,492,
|
||||
492,shaymin,4,,253,5,8,,-1,45,100,0,120,0,4,1,0,1,493,
|
||||
493,arceus,4,,254,9,8,,-1,3,0,0,120,0,1,1,0,1,494,199
|
||||
494,victini,5,,255,10,12,,-1,3,100,0,120,0,1,0,0,1,495,
|
||||
495,snivy,5,,256,5,6,,1,45,70,0,20,0,4,0,0,0,496,118
|
||||
496,servine,5,495,256,5,6,,1,45,70,0,20,0,4,0,0,0,497,119
|
||||
497,serperior,5,496,256,5,2,,1,45,70,0,20,0,4,0,0,0,498,120
|
||||
498,tepig,5,,257,8,8,,1,45,70,0,20,0,4,0,0,0,499,121
|
||||
499,pignite,5,498,257,8,6,,1,45,70,0,20,0,4,0,0,0,500,122
|
||||
500,emboar,5,499,257,8,6,,1,45,70,0,20,0,4,0,0,0,501,123
|
||||
501,oshawott,5,,258,2,6,,1,45,70,0,20,0,4,0,0,0,502,106
|
||||
502,dewott,5,501,258,2,6,,1,45,70,0,20,0,4,0,0,0,503,107
|
||||
503,samurott,5,502,258,2,8,,1,45,70,0,20,0,4,0,0,0,504,108
|
||||
504,patrat,5,,259,3,8,,4,255,70,0,15,0,2,0,0,0,505,
|
||||
505,watchog,5,504,259,3,6,,4,255,70,0,20,0,2,0,0,0,506,
|
||||
506,lillipup,5,,260,3,8,,4,255,70,0,15,0,4,0,0,0,507,
|
||||
507,herdier,5,506,260,4,8,,4,120,70,0,15,0,4,0,0,0,508,
|
||||
508,stoutland,5,507,260,4,8,,4,45,70,0,15,0,4,0,0,0,509,
|
||||
509,purrloin,5,,261,7,8,,4,255,70,0,20,0,2,0,0,0,510,
|
||||
510,liepard,5,509,261,7,8,,4,90,70,0,20,0,2,0,0,0,511,
|
||||
511,pansage,5,,262,5,6,,1,190,70,0,20,0,2,0,0,0,512,136
|
||||
512,simisage,5,511,262,5,6,,1,75,70,0,20,0,2,0,0,0,513,137
|
||||
513,pansear,5,,263,8,6,,1,190,70,0,20,0,2,0,0,0,514,138
|
||||
514,simisear,5,513,263,8,6,,1,75,70,0,20,0,2,0,0,0,515,139
|
||||
515,panpour,5,,264,2,6,,1,190,70,0,20,0,2,0,0,0,516,140
|
||||
516,simipour,5,515,264,2,6,,1,75,70,0,20,0,2,0,0,0,517,141
|
||||
517,munna,5,,265,6,8,,4,190,70,0,10,0,3,0,0,0,518,72
|
||||
518,musharna,5,517,265,6,12,,4,75,70,0,10,0,3,0,0,0,519,73
|
||||
519,pidove,5,,266,4,9,,4,255,70,0,15,0,4,0,0,0,520,
|
||||
520,tranquill,5,519,266,4,9,,4,120,70,0,15,0,4,0,0,0,521,
|
||||
521,unfezant,5,520,266,4,9,,4,45,70,0,15,1,4,0,0,0,522,
|
||||
522,blitzle,5,,267,1,8,,4,190,70,0,20,0,2,0,0,0,523,74
|
||||
523,zebstrika,5,522,267,1,8,,4,75,70,0,20,0,2,0,0,0,524,75
|
||||
524,roggenrola,5,,268,2,7,,4,255,70,0,15,0,4,0,0,0,525,40
|
||||
525,boldore,5,524,268,2,10,,4,120,70,0,15,0,4,0,0,0,526,41
|
||||
526,gigalith,5,525,268,2,10,,4,45,70,0,15,0,4,0,0,0,527,42
|
||||
527,woobat,5,,269,2,9,,4,190,70,0,15,0,2,0,0,0,528,
|
||||
528,swoobat,5,527,269,2,9,,4,45,70,0,15,0,2,0,0,0,529,
|
||||
529,drilbur,5,,270,4,6,,4,120,70,0,20,0,2,0,0,0,530,152
|
||||
530,excadrill,5,529,270,4,12,,4,60,70,0,20,0,2,0,0,0,531,153
|
||||
531,audino,5,,271,6,6,,4,255,70,0,20,0,3,1,0,0,532,185
|
||||
532,timburr,5,,272,4,12,,2,180,70,0,20,0,4,0,0,0,533,101
|
||||
533,gurdurr,5,532,272,4,12,,2,90,70,0,20,0,4,0,0,0,534,102
|
||||
534,conkeldurr,5,533,272,3,12,,2,45,70,0,20,0,4,0,0,0,535,103
|
||||
535,tympole,5,,273,2,3,,4,255,70,0,20,0,4,0,0,0,536,
|
||||
536,palpitoad,5,535,273,2,6,,4,120,70,0,20,0,4,0,0,0,537,
|
||||
537,seismitoad,5,536,273,2,12,,4,45,70,0,20,0,4,0,0,0,538,
|
||||
538,throh,5,,274,8,12,,0,45,70,0,20,0,2,0,0,0,539,
|
||||
539,sawk,5,,275,2,12,,0,45,70,0,20,0,2,0,0,0,540,
|
||||
540,sewaddle,5,,276,10,14,,4,255,70,0,15,0,4,0,0,0,541,124
|
||||
541,swadloon,5,540,276,5,4,,4,120,70,0,15,0,4,0,0,0,542,125
|
||||
542,leavanny,5,541,276,10,12,,4,45,70,0,15,0,4,0,0,0,543,126
|
||||
543,venipede,5,,277,8,14,,4,255,70,0,15,0,4,0,0,0,544,31
|
||||
544,whirlipede,5,543,277,4,1,,4,120,70,0,15,0,4,0,0,0,545,32
|
||||
545,scolipede,5,544,277,8,14,,4,45,70,0,20,0,4,0,0,0,546,33
|
||||
546,cottonee,5,,278,5,1,,4,190,70,0,20,0,2,0,0,0,547,48
|
||||
547,whimsicott,5,546,278,5,12,,4,75,70,0,20,0,2,0,0,0,548,49
|
||||
548,petilil,5,,279,5,5,,8,190,70,0,20,0,2,0,0,0,549,43
|
||||
549,lilligant,5,548,279,5,5,,8,75,70,0,20,0,2,0,0,0,550,44
|
||||
550,basculin,5,,280,5,3,,4,25,70,0,40,0,2,0,0,0,551,
|
||||
551,sandile,5,,281,3,8,,4,180,70,0,20,0,4,0,0,0,552,66
|
||||
552,krokorok,5,551,281,3,8,,4,90,70,0,20,0,4,0,0,0,553,67
|
||||
553,krookodile,5,552,281,8,6,,4,45,70,0,20,0,4,0,0,0,554,68
|
||||
554,darumaka,5,,282,8,12,,4,120,70,0,20,0,4,0,0,0,555,142
|
||||
555,darmanitan,5,554,282,8,8,,4,60,70,0,20,0,4,1,0,0,556,143
|
||||
556,maractus,5,,283,5,5,,4,255,70,0,20,0,2,0,0,0,557,
|
||||
557,dwebble,5,,284,8,14,,4,190,70,0,20,0,2,0,0,0,558,
|
||||
558,crustle,5,557,284,8,14,,4,75,70,0,20,0,2,0,0,0,559,
|
||||
559,scraggy,5,,285,10,6,,4,180,35,0,15,0,2,0,0,0,560,165
|
||||
560,scrafty,5,559,285,8,6,,4,90,70,0,15,0,2,0,0,0,561,166
|
||||
561,sigilyph,5,,286,1,9,,4,45,70,0,20,0,2,0,0,0,562,
|
||||
562,yamask,5,,287,1,4,,4,190,70,0,25,0,2,0,0,0,563,
|
||||
563,cofagrigus,5,562,287,10,5,,4,90,70,0,25,0,2,0,0,0,564,
|
||||
564,tirtouga,5,,288,2,8,,1,45,70,0,30,0,2,0,0,0,565,
|
||||
565,carracosta,5,564,288,2,6,,1,45,70,0,30,0,2,0,0,0,566,
|
||||
566,archen,5,,289,10,9,,1,45,70,0,30,0,2,0,0,0,567,
|
||||
567,archeops,5,566,289,10,9,,1,45,70,0,30,0,2,0,0,0,568,
|
||||
568,trubbish,5,,290,5,12,,4,190,70,0,20,0,2,0,0,0,569,
|
||||
569,garbodor,5,568,290,5,12,,4,60,70,0,20,0,2,0,0,0,570,
|
||||
570,zorua,5,,291,4,8,,1,75,70,0,25,0,4,0,0,0,571,154
|
||||
571,zoroark,5,570,291,4,6,,1,45,70,0,20,0,4,0,0,0,572,155
|
||||
572,minccino,5,,292,4,8,,6,255,70,0,15,0,3,0,0,0,573,96
|
||||
573,cinccino,5,572,292,4,8,,6,60,70,0,15,0,3,0,0,0,574,97
|
||||
574,gothita,5,,293,7,12,,6,200,70,0,20,0,4,0,0,0,575,63
|
||||
575,gothorita,5,574,293,7,12,,6,100,70,0,20,0,4,0,0,0,576,64
|
||||
576,gothitelle,5,575,293,7,12,,6,50,70,0,20,0,4,0,0,0,577,65
|
||||
577,solosis,5,,294,5,1,,4,200,70,0,20,0,4,0,0,0,578,
|
||||
578,duosion,5,577,294,5,1,,4,100,70,0,20,0,4,0,0,0,579,
|
||||
579,reuniclus,5,578,294,5,4,,4,50,70,0,20,0,4,0,0,0,580,
|
||||
580,ducklett,5,,295,2,9,,4,190,70,0,20,0,2,0,0,0,581,
|
||||
581,swanna,5,580,295,9,9,,4,45,70,0,20,0,2,0,0,0,582,
|
||||
582,vanillite,5,,296,9,5,,4,255,70,0,20,0,1,0,0,0,583,
|
||||
583,vanillish,5,582,296,9,5,,4,120,70,0,20,0,1,0,0,0,584,
|
||||
584,vanilluxe,5,583,296,9,11,,4,45,70,0,20,0,1,0,0,0,585,
|
||||
585,deerling,5,,297,6,8,,4,190,70,0,20,0,2,1,0,0,586,
|
||||
586,sawsbuck,5,585,297,3,8,,4,75,70,0,20,0,2,1,0,0,587,
|
||||
587,emolga,5,,298,9,8,,4,200,70,0,20,0,2,0,0,0,588,180
|
||||
588,karrablast,5,,299,2,12,,4,200,70,0,15,0,2,0,0,0,589,
|
||||
589,escavalier,5,588,299,4,4,,4,75,70,0,15,0,2,0,0,0,590,
|
||||
590,foongus,5,,300,9,4,,4,190,70,0,20,0,2,0,0,0,591,
|
||||
591,amoonguss,5,590,300,9,4,,4,75,70,0,20,0,2,0,0,0,592,
|
||||
592,frillish,5,,301,9,10,,4,190,70,0,20,1,2,0,0,0,593,
|
||||
593,jellicent,5,592,301,9,10,,4,60,70,0,20,1,2,0,0,0,594,
|
||||
594,alomomola,5,,302,6,3,,4,75,70,0,40,0,3,0,0,0,595,
|
||||
595,joltik,5,,303,10,14,,4,190,70,0,20,0,2,0,0,0,596,147
|
||||
596,galvantula,5,595,303,10,14,,4,75,70,0,20,0,2,0,0,0,597,148
|
||||
597,ferroseed,5,,304,4,1,,4,255,70,0,20,0,2,0,0,0,598,
|
||||
598,ferrothorn,5,597,304,4,10,,4,90,70,0,20,0,2,0,0,0,599,
|
||||
599,klink,5,,305,4,11,,-1,130,70,0,20,0,4,0,0,0,600,
|
||||
600,klang,5,599,305,4,11,,-1,60,70,0,20,0,4,0,0,0,601,
|
||||
601,klinklang,5,600,305,4,11,,-1,30,70,0,20,0,4,0,0,0,602,
|
||||
602,tynamo,5,,306,9,3,,4,190,70,0,20,0,1,0,0,0,603,
|
||||
603,eelektrik,5,602,306,2,3,,4,60,70,0,20,0,1,0,0,0,604,
|
||||
604,eelektross,5,603,306,2,3,,4,30,70,0,20,0,1,0,0,0,605,
|
||||
605,elgyem,5,,307,2,6,,4,255,70,0,20,0,2,0,0,0,606,
|
||||
606,beheeyem,5,605,307,3,12,,4,90,70,0,20,0,2,0,0,0,607,
|
||||
607,litwick,5,,308,9,5,,4,190,70,0,20,0,4,0,0,0,608,37
|
||||
608,lampent,5,607,308,1,4,,4,90,70,0,20,0,4,0,0,0,609,38
|
||||
609,chandelure,5,608,308,1,4,,4,45,70,0,20,0,4,0,0,0,610,39
|
||||
610,axew,5,,309,5,6,,4,75,35,0,40,0,1,0,0,0,611,144
|
||||
611,fraxure,5,610,309,5,6,,4,60,35,0,40,0,1,0,0,0,612,145
|
||||
612,haxorus,5,611,309,10,6,,4,45,35,0,40,0,1,0,0,0,613,146
|
||||
613,cubchoo,5,,310,9,6,,4,120,70,0,20,0,2,0,0,0,614,104
|
||||
614,beartic,5,613,310,9,8,,4,60,70,0,20,0,2,0,0,0,615,105
|
||||
615,cryogonal,5,,311,2,1,,-1,25,70,0,25,0,2,0,0,0,616,
|
||||
616,shelmet,5,,312,8,1,,4,200,70,0,15,0,2,0,0,0,617,
|
||||
617,accelgor,5,616,312,8,4,,4,75,70,0,15,0,2,0,0,0,618,
|
||||
618,stunfisk,5,,313,3,3,,4,75,70,0,20,0,2,0,0,0,619,
|
||||
619,mienfoo,5,,314,10,6,,4,180,70,0,25,0,4,0,0,0,620,
|
||||
620,mienshao,5,619,314,7,6,,4,45,70,0,25,0,4,0,0,0,621,
|
||||
621,druddigon,5,,315,8,6,,4,45,70,0,30,0,2,0,0,0,622,
|
||||
622,golett,5,,316,5,12,,-1,190,70,0,25,0,2,0,0,0,623,
|
||||
623,golurk,5,622,316,5,12,,-1,90,70,0,25,0,2,0,0,0,624,
|
||||
624,pawniard,5,,317,8,12,,4,120,35,0,20,0,2,0,0,0,625,158
|
||||
625,bisharp,5,624,317,8,12,,4,45,35,0,20,0,2,0,0,0,626,159
|
||||
626,bouffalant,5,,318,3,8,,4,45,70,0,20,0,2,0,0,0,627,
|
||||
627,rufflet,5,,319,9,9,,0,190,70,0,20,0,1,0,0,0,628,169
|
||||
628,braviary,5,627,319,8,9,,0,60,70,0,20,0,1,0,0,0,629,170
|
||||
629,vullaby,5,,320,3,9,,8,190,35,0,20,0,1,0,0,0,630,
|
||||
630,mandibuzz,5,629,320,3,9,,8,60,35,0,20,0,1,0,0,0,631,
|
||||
631,heatmor,5,,321,8,6,,4,90,70,0,20,0,2,0,0,0,632,
|
||||
632,durant,5,,322,4,14,,4,90,70,0,20,0,2,0,0,0,633,
|
||||
633,deino,5,,323,2,8,,4,45,35,0,40,0,1,0,0,0,634,90
|
||||
634,zweilous,5,633,323,2,8,,4,45,35,0,40,0,1,0,0,0,635,91
|
||||
635,hydreigon,5,634,323,2,6,,4,45,35,0,40,0,1,0,0,0,636,92
|
||||
636,larvesta,5,,324,9,14,,4,45,70,0,40,0,1,0,0,0,637,173
|
||||
637,volcarona,5,636,324,9,13,,4,15,70,0,40,0,1,0,0,0,638,174
|
||||
638,cobalion,5,,325,2,8,,-1,3,35,0,80,0,1,0,1,0,639,
|
||||
639,terrakion,5,,326,4,8,,-1,3,35,0,80,0,1,0,1,0,640,191
|
||||
640,virizion,5,,327,5,8,,-1,3,35,0,80,0,1,0,1,0,641,
|
||||
641,tornadus,5,,328,5,4,,0,3,90,0,120,0,1,1,1,0,642,
|
||||
642,thundurus,5,,329,2,4,,0,3,90,0,120,0,1,1,1,0,643,
|
||||
643,reshiram,5,,330,9,9,,-1,3,0,0,120,0,1,0,1,0,644,197
|
||||
644,zekrom,5,,331,1,6,,-1,3,0,0,120,0,1,0,1,0,645,198
|
||||
645,landorus,5,,332,3,4,,0,3,90,0,120,0,1,1,1,0,646,
|
||||
646,kyurem,5,,333,4,6,,-1,3,0,0,120,0,1,1,1,0,647,
|
||||
647,keldeo,5,,334,10,8,,-1,3,35,0,80,0,1,1,0,1,648,
|
||||
648,meloetta,5,,335,9,12,,-1,3,100,0,120,0,1,1,0,1,649,
|
||||
649,genesect,5,,336,7,12,,-1,3,0,0,120,0,1,1,0,1,650,
|
||||
650,chespin,6,,337,5,6,,1,45,70,0,20,0,4,0,0,0,651,
|
||||
651,quilladin,6,650,337,5,6,,1,45,70,0,20,0,4,0,0,0,652,
|
||||
652,chesnaught,6,651,337,5,6,,1,45,70,0,20,0,4,0,0,0,653,
|
||||
653,fennekin,6,,338,8,8,,1,45,70,0,20,0,4,0,0,0,654,
|
||||
654,braixen,6,653,338,8,6,,1,45,70,0,20,0,4,0,0,0,655,
|
||||
655,delphox,6,654,338,8,6,,1,45,70,0,20,0,4,0,0,0,656,
|
||||
656,froakie,6,,339,2,8,,1,45,70,0,20,0,4,0,0,0,657,
|
||||
657,frogadier,6,656,339,2,12,,1,45,70,0,20,0,4,0,0,0,658,
|
||||
658,greninja,6,657,339,2,12,,1,45,70,0,20,0,4,0,0,0,659,
|
||||
659,bunnelby,6,,340,3,6,,4,255,70,0,15,0,2,0,0,0,660,
|
||||
660,diggersby,6,659,340,3,6,,4,127,70,0,15,0,2,0,0,0,661,
|
||||
661,fletchling,6,,341,8,9,,4,255,70,0,15,0,4,0,0,0,662,
|
||||
662,fletchinder,6,661,341,8,9,,4,120,70,0,15,0,4,0,0,0,663,
|
||||
663,talonflame,6,662,341,8,9,,4,45,70,0,15,0,4,0,0,0,664,
|
||||
664,scatterbug,6,,342,1,14,,4,255,70,0,15,0,2,0,0,0,665,
|
||||
665,spewpa,6,664,342,1,5,,4,120,70,0,15,0,2,0,0,0,666,
|
||||
666,vivillon,6,665,342,9,13,,4,45,70,0,15,0,2,0,0,0,667,
|
||||
667,litleo,6,,343,3,8,,7,220,70,0,20,0,4,0,0,0,668,
|
||||
668,pyroar,6,667,343,3,8,,7,65,70,0,20,1,4,0,0,0,669,
|
||||
669,flabebe,6,,344,9,4,,8,225,70,0,20,0,2,0,0,0,670,
|
||||
670,floette,6,669,344,9,4,,8,120,70,0,20,0,2,0,0,0,671,
|
||||
671,florges,6,670,344,9,4,,8,45,70,0,20,0,2,0,0,0,672,
|
||||
672,skiddo,6,,345,3,8,,4,200,70,0,20,0,2,0,0,0,673,
|
||||
673,gogoat,6,672,345,3,8,,4,45,70,0,20,0,2,0,0,0,674,
|
||||
674,pancham,6,,346,9,6,,4,220,70,0,25,0,2,0,0,0,675,
|
||||
675,pangoro,6,674,346,9,12,,4,65,70,0,25,0,2,0,0,0,676,
|
||||
676,furfrou,6,,347,9,8,,4,160,70,0,20,0,2,1,0,0,677,
|
||||
677,espurr,6,,348,4,6,,4,190,70,0,20,0,2,0,0,0,678,
|
||||
678,meowstic,6,677,348,2,6,,4,75,70,0,20,1,2,0,0,0,679,
|
||||
679,honedge,6,,349,3,5,,4,180,70,0,20,0,2,0,0,0,680,
|
||||
680,doublade,6,679,349,3,11,,4,90,70,0,20,0,2,0,0,0,681,
|
||||
681,aegislash,6,680,349,3,5,,4,45,70,0,20,0,2,1,0,0,682,
|
||||
682,spritzee,6,,350,6,4,,4,200,70,0,20,0,2,0,0,0,683,
|
||||
683,aromatisse,6,682,350,6,12,,4,140,70,0,20,0,2,0,0,0,684,
|
||||
684,swirlix,6,,351,9,7,,4,200,70,0,20,0,2,0,0,0,685,
|
||||
685,slurpuff,6,684,351,9,12,,4,140,70,0,20,0,2,0,0,0,686,
|
||||
686,inkay,6,,352,2,10,,4,190,70,0,20,0,2,0,0,0,687,
|
||||
687,malamar,6,686,352,2,5,,4,80,70,0,20,0,2,0,0,0,688,
|
||||
688,binacle,6,,353,3,11,,4,120,70,0,20,0,2,0,0,0,689,
|
||||
689,barbaracle,6,688,353,3,11,,4,45,70,0,20,0,2,0,0,0,690,
|
||||
690,skrelp,6,,354,3,5,,4,225,70,0,20,0,2,0,0,0,691,
|
||||
691,dragalge,6,690,354,3,5,,4,55,70,0,20,0,2,0,0,0,692,
|
||||
692,clauncher,6,,355,2,14,,4,225,70,0,15,0,1,0,0,0,693,
|
||||
693,clawitzer,6,692,355,2,2,,4,55,70,0,15,0,1,0,0,0,694,
|
||||
694,helioptile,6,,356,10,6,,4,190,70,0,20,0,2,0,0,0,695,
|
||||
695,heliolisk,6,694,356,10,6,,4,75,70,0,20,0,2,0,0,0,696,
|
||||
696,tyrunt,6,,357,3,6,,1,45,70,0,30,0,2,0,0,0,697,
|
||||
697,tyrantrum,6,696,357,8,6,,1,45,70,0,30,0,2,0,0,0,698,
|
||||
698,amaura,6,,358,2,8,,1,45,70,0,30,0,2,0,0,0,699,
|
||||
699,aurorus,6,698,358,2,8,,1,45,70,0,30,0,2,0,0,0,700,
|
||||
700,sylveon,6,133,67,6,8,,1,45,70,0,35,0,2,0,0,0,165,
|
||||
701,hawlucha,6,,359,5,12,,4,100,70,0,20,0,2,0,0,0,701,
|
||||
702,dedenne,6,,360,10,6,,4,180,70,0,20,0,2,0,0,0,702,
|
||||
703,carbink,6,,361,4,1,,-1,60,70,0,25,0,1,0,0,0,703,
|
||||
704,goomy,6,,362,7,2,,4,45,35,0,40,0,1,0,0,0,704,
|
||||
705,sliggoo,6,704,362,7,2,,4,45,35,0,40,0,1,0,0,0,705,
|
||||
706,goodra,6,705,362,7,6,,4,45,35,0,40,0,1,0,0,0,706,
|
||||
707,klefki,6,,363,4,1,,4,75,70,0,20,0,3,0,0,0,707,
|
||||
708,phantump,6,,364,3,4,,4,120,70,0,20,0,2,0,0,0,708,
|
||||
709,trevenant,6,708,364,3,10,,4,60,70,0,20,0,2,0,0,0,709,
|
||||
710,pumpkaboo,6,,365,3,1,,4,120,70,0,20,0,2,0,0,0,710,
|
||||
711,gourgeist,6,710,365,3,5,,4,60,70,0,20,0,2,0,0,0,711,
|
||||
712,bergmite,6,,366,2,8,,4,190,70,0,20,0,2,0,0,0,712,
|
||||
713,avalugg,6,712,366,2,8,,4,55,70,0,20,0,2,0,0,0,713,
|
||||
714,noibat,6,,367,7,9,,4,190,70,0,20,0,2,0,0,0,714,
|
||||
715,noivern,6,714,367,7,9,,4,45,70,0,20,0,2,0,0,0,715,
|
||||
716,xerneas,6,,368,2,8,,-1,45,0,0,120,0,1,1,1,0,716,
|
||||
717,yveltal,6,,369,8,9,,-1,45,0,0,120,0,1,0,1,0,717,
|
||||
718,zygarde,6,,370,5,2,,-1,3,0,0,120,0,1,0,1,0,718,
|
||||
719,diancie,6,,371,6,4,,-1,3,70,0,25,0,1,1,0,1,719,
|
||||
720,hoopa,6,,372,7,4,,-1,3,100,0,120,0,1,0,0,1,720,
|
||||
721,volcanion,6,,373,3,8,,-1,3,100,0,120,0,1,0,0,1,721,
|
||||
722,rowlet,7,,374,3,9,,1,45,70,0,15,0,4,0,0,0,722,
|
||||
723,dartrix,7,722,374,3,9,,1,45,70,0,15,0,4,0,0,0,723,
|
||||
724,decidueye,7,723,374,3,9,,1,45,70,0,15,0,4,0,0,0,724,
|
||||
725,litten,7,,375,8,8,,1,45,70,0,15,0,4,0,0,0,725,
|
||||
726,torracat,7,725,375,8,8,,1,45,70,0,15,0,4,0,0,0,726,
|
||||
727,incineroar,7,726,375,8,6,,1,45,70,0,15,0,4,0,0,0,727,
|
||||
728,popplio,7,,376,2,3,,1,45,70,0,15,0,4,0,0,0,728,
|
||||
729,brionne,7,728,376,2,3,,1,45,70,0,15,0,4,0,0,0,729,
|
||||
730,primarina,7,729,376,2,3,,1,45,70,0,15,0,4,0,0,0,730,
|
||||
731,pikipek,7,,377,1,9,,4,255,70,0,15,0,2,0,0,0,731,
|
||||
732,trumbeak,7,731,377,1,9,,4,120,70,0,15,0,2,0,0,0,732,
|
||||
733,toucannon,7,732,377,1,9,,4,45,70,0,15,0,2,0,0,0,733,
|
||||
734,yungoos,7,,378,3,8,,4,255,70,0,15,0,2,0,0,0,734,
|
||||
735,gumshoos,7,734,378,3,8,,4,127,70,0,15,0,2,0,0,0,735,
|
||||
736,grubbin,7,,379,4,14,,4,255,70,0,15,0,2,0,0,0,736,
|
||||
737,charjabug,7,736,379,5,2,,4,120,70,0,15,0,2,0,0,0,737,
|
||||
738,vikavolt,7,737,379,2,14,,4,45,70,0,15,0,2,0,0,0,738,
|
||||
739,crabrawler,7,,380,7,14,,4,225,70,0,20,0,2,0,0,0,739,
|
||||
740,crabominable,7,739,380,9,14,,4,60,70,0,20,0,2,0,0,0,740,
|
||||
741,oricorio,7,,381,8,9,,6,45,70,0,20,0,2,0,0,0,741,
|
||||
742,cutiefly,7,,382,10,14,,4,190,70,0,20,0,2,0,0,0,742,
|
||||
743,ribombee,7,742,382,10,13,,4,75,70,0,20,0,2,0,0,0,743,
|
||||
744,rockruff,7,,383,3,8,,4,190,70,0,15,0,2,0,0,0,744,
|
||||
745,lycanroc,7,744,383,3,8,,4,90,70,0,15,0,2,0,0,0,745,
|
||||
746,wishiwashi,7,,384,2,3,,4,60,70,0,15,0,3,0,0,0,746,
|
||||
747,mareanie,7,,385,2,5,,4,190,70,0,20,0,2,0,0,0,747,
|
||||
748,toxapex,7,747,385,2,10,,4,75,70,0,20,0,2,0,0,0,748,
|
||||
749,mudbray,7,,386,3,8,,4,190,70,0,20,0,2,0,0,0,749,
|
||||
750,mudsdale,7,749,386,3,8,,4,60,70,0,20,0,2,0,0,0,750,
|
||||
751,dewpider,7,,387,5,7,,4,200,70,0,15,0,2,0,0,0,751,
|
||||
752,araquanid,7,751,387,5,14,,4,100,70,0,15,0,2,0,0,0,752,
|
||||
753,fomantis,7,,388,6,6,,4,190,70,0,20,0,2,0,0,0,753,
|
||||
754,lurantis,7,753,388,6,12,,4,75,70,0,20,0,2,0,0,0,754,
|
||||
755,morelull,7,,389,7,5,,4,190,70,0,20,0,2,0,0,0,755,
|
||||
756,shiinotic,7,755,389,7,12,,4,75,70,0,20,0,2,0,0,0,756,
|
||||
757,salandit,7,,390,1,8,,1,120,70,0,20,0,2,0,0,0,757,
|
||||
758,salazzle,7,757,390,1,8,,8,45,70,0,20,0,2,0,0,0,758,
|
||||
759,stufful,7,,391,6,8,,4,140,70,0,15,0,2,0,0,0,759,
|
||||
760,bewear,7,759,391,6,6,,4,70,70,0,15,0,2,0,0,0,760,
|
||||
761,bounsweet,7,,392,7,7,,8,235,70,0,20,0,4,0,0,0,761,
|
||||
762,steenee,7,761,392,7,12,,8,120,70,0,20,0,4,0,0,0,762,
|
||||
763,tsareena,7,762,392,7,12,,8,45,70,0,20,0,4,0,0,0,763,
|
||||
764,comfey,7,,393,5,1,,6,60,70,0,20,0,3,0,0,0,764,
|
||||
765,oranguru,7,,394,9,12,,4,45,70,0,20,0,1,0,0,0,765,
|
||||
766,passimian,7,,395,9,6,,4,45,70,0,20,0,1,0,0,0,766,
|
||||
767,wimpod,7,,396,4,10,,4,90,70,0,20,0,2,0,0,0,767,
|
||||
768,golisopod,7,767,396,4,12,,4,45,70,0,20,0,2,0,0,0,768,
|
||||
769,sandygast,7,,397,3,2,,4,140,70,0,15,0,2,0,0,0,769,
|
||||
770,palossand,7,769,397,3,2,,4,60,70,0,15,0,2,0,0,0,770,
|
||||
771,pyukumuku,7,,398,1,2,,4,60,70,0,15,0,3,0,0,0,771,
|
||||
772,type-null,7,,399,4,8,,-1,3,0,0,120,0,1,0,0,0,772,
|
||||
773,silvally,7,772,399,4,8,,-1,3,0,0,120,0,1,0,0,0,773,
|
||||
774,minior,7,,400,3,1,,-1,30,70,0,25,0,4,0,0,0,774,
|
||||
775,komala,7,,401,2,12,,4,45,70,0,20,0,1,0,0,0,775,
|
||||
776,turtonator,7,,402,8,6,,4,70,70,0,20,0,2,0,0,0,776,
|
||||
777,togedemaru,7,,403,4,6,,4,180,70,0,10,0,2,0,0,0,777,
|
||||
778,mimikyu,7,,404,10,2,,4,45,70,0,20,0,2,0,0,0,778,
|
||||
779,bruxish,7,,405,6,3,,4,80,70,0,15,0,2,0,0,0,779,
|
||||
780,drampa,7,,406,9,2,,4,70,70,0,20,0,2,0,0,0,780,
|
||||
781,dhelmise,7,,407,5,5,,-1,25,70,0,25,0,2,0,0,0,781,
|
||||
782,jangmo-o,7,,408,4,8,,4,45,70,0,40,0,1,0,0,0,782,
|
||||
783,hakamo-o,7,782,408,4,6,,4,45,70,0,40,0,1,0,0,0,783,
|
||||
784,kommo-o,7,783,408,4,6,,4,45,70,0,40,0,1,0,0,0,784,
|
||||
785,tapu-koko,7,,409,10,4,,-1,3,70,0,15,0,1,0,1,0,785,
|
||||
786,tapu-lele,7,,410,6,4,,-1,3,70,0,15,0,1,0,1,0,786,
|
||||
787,tapu-bulu,7,,411,8,4,,-1,3,70,0,15,0,1,0,1,0,787,
|
||||
788,tapu-fini,7,,412,7,4,,-1,3,70,0,15,0,1,0,1,0,788,
|
||||
789,cosmog,7,,413,2,1,,-1,45,0,0,120,0,1,0,1,0,789,
|
||||
790,cosmoem,7,789,413,2,1,,-1,45,0,0,120,0,1,0,1,0,790,
|
||||
791,solgaleo,7,790,413,9,8,,-1,45,0,0,120,0,1,0,1,0,791,
|
||||
792,lunala,7,790,413,7,9,,-1,45,0,0,120,0,1,0,1,0,792,
|
||||
793,nihilego,7,,414,9,10,,-1,45,0,0,120,0,1,0,0,0,793,
|
||||
794,buzzwole,7,,415,8,10,,-1,45,0,0,120,0,1,0,0,0,794,
|
||||
795,pheromosa,7,,416,9,12,,-1,45,0,0,120,0,1,0,0,0,795,
|
||||
796,xurkitree,7,,417,1,6,,-1,45,0,0,120,0,1,0,0,0,796,
|
||||
797,celesteela,7,,418,5,12,,-1,45,0,0,120,0,1,0,0,0,797,
|
||||
798,kartana,7,,419,9,12,,-1,45,0,0,120,0,1,0,0,0,798,
|
||||
799,guzzlord,7,,420,1,6,,-1,45,0,0,120,0,1,0,0,0,799,
|
||||
800,necrozma,7,,421,1,4,,-1,255,0,0,120,0,1,0,1,0,800,
|
||||
801,magearna,7,,422,4,12,,-1,3,0,0,120,0,1,0,0,1,801,
|
||||
802,marshadow,7,,423,4,12,,-1,3,0,0,120,0,1,0,0,1,802,
|
||||
803,poipole,7,,424,7,6,,-1,45,0,0,120,0,1,0,0,0,803,
|
||||
804,naganadel,7,803,424,7,9,,-1,45,0,0,120,0,1,0,0,0,804,
|
||||
805,stakataka,7,,425,4,8,,-1,30,0,0,120,0,1,0,0,0,805,
|
||||
806,blacephalon,7,,426,9,12,,-1,30,0,0,120,0,1,0,0,0,806,
|
||||
807,zeraora,7,,427,10,12,,-1,3,0,0,120,0,1,0,0,1,807,
|
|
8
Resources/scripts/data/scraper_go/go.mod
Normal file
8
Resources/scripts/data/scraper_go/go.mod
Normal file
|
@ -0,0 +1,8 @@
|
|||
module scraper
|
||||
|
||||
go 1.15
|
||||
|
||||
require (
|
||||
github.com/anaskhan96/soup v1.1.1
|
||||
github.com/rs/zerolog v1.19.0
|
||||
)
|
15
Resources/scripts/data/scraper_go/go.sum
Normal file
15
Resources/scripts/data/scraper_go/go.sum
Normal file
|
@ -0,0 +1,15 @@
|
|||
github.com/anaskhan96/soup v1.1.1 h1:Duux/0htS2Va7XLJ9qIakCSey790hg9OFRm2FwlMTy0=
|
||||
github.com/anaskhan96/soup v1.1.1/go.mod h1:pT5vs4HXDwA5y4KQCsKvnkpQd3D+joP7IqpiGskfWW0=
|
||||
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
|
||||
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=
|
||||
github.com/rs/zerolog v1.19.0 h1:hYz4ZVdUgjXTBUmrkrw55j1nHx68LfOKIQk5IYtyScg=
|
||||
github.com/rs/zerolog v1.19.0/go.mod h1:IzD0RJ65iWH0w97OQQebJEvTZYvsCUm9WVLWBQrJRjo=
|
||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI=
|
||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/tools v0.0.0-20190828213141-aed303cbaa74/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
10
Resources/scripts/data/scraper_go/main.go
Normal file
10
Resources/scripts/data/scraper_go/main.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"scraper/pkg/bulbapedia"
|
||||
)
|
||||
|
||||
func main() {
|
||||
bulbapedia.Scrape(&bulbapedia.PokemonScrapper{}, "data/pokemon.csv", "data/new_pokemon.txt", "out/pokemon.csv")
|
||||
bulbapedia.Scrape(&bulbapedia.SpeciesScrapper{}, "data/pokemon_species.csv", "data/new_pokemon.txt", "out/pokemon_species.csv")
|
||||
}
|
1050
Resources/scripts/data/scraper_go/out/pokemon.csv
Normal file
1050
Resources/scripts/data/scraper_go/out/pokemon.csv
Normal file
File diff suppressed because it is too large
Load diff
893
Resources/scripts/data/scraper_go/out/pokemon_species.csv
Normal file
893
Resources/scripts/data/scraper_go/out/pokemon_species.csv
Normal file
|
@ -0,0 +1,893 @@
|
|||
id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id,shape_id,habitat_id,gender_rate,capture_rate,base_happiness,is_baby,hatch_counter,has_gender_differences,growth_rate_id,forms_switchable,is_legendary,is_mythical,order,conquest_order
|
||||
1,bulbasaur,1,,1,5,8,3,1,45,70,0,20,0,4,0,0,0,1,
|
||||
2,ivysaur,1,1,1,5,8,3,1,45,70,0,20,0,4,0,0,0,2,
|
||||
3,venusaur,1,2,1,5,8,3,1,45,70,0,20,1,4,1,0,0,3,
|
||||
4,charmander,1,,2,8,6,4,1,45,70,0,20,0,4,0,0,0,4,109
|
||||
5,charmeleon,1,4,2,8,6,4,1,45,70,0,20,0,4,0,0,0,5,110
|
||||
6,charizard,1,5,2,8,6,4,1,45,70,0,20,0,4,1,0,0,6,111
|
||||
7,squirtle,1,,3,2,6,9,1,45,70,0,20,0,4,0,0,0,7,
|
||||
8,wartortle,1,7,3,2,6,9,1,45,70,0,20,0,4,0,0,0,8,
|
||||
9,blastoise,1,8,3,2,6,9,1,45,70,0,20,0,4,1,0,0,9,
|
||||
10,caterpie,1,,4,5,14,2,4,255,70,0,15,0,2,0,0,0,10,
|
||||
11,metapod,1,10,4,5,2,2,4,120,70,0,15,0,2,0,0,0,11,
|
||||
12,butterfree,1,11,4,9,13,2,4,45,70,0,15,1,2,0,0,0,12,
|
||||
13,weedle,1,,5,3,14,2,4,255,70,0,15,0,2,0,0,0,13,
|
||||
14,kakuna,1,13,5,10,2,2,4,120,70,0,15,0,2,0,0,0,14,
|
||||
15,beedrill,1,14,5,10,13,2,4,45,70,0,15,0,2,1,0,0,15,177
|
||||
16,pidgey,1,,6,3,9,2,4,255,70,0,15,0,4,0,0,0,16,
|
||||
17,pidgeotto,1,16,6,3,9,2,4,120,70,0,15,0,4,0,0,0,17,
|
||||
18,pidgeot,1,17,6,3,9,2,4,45,70,0,15,0,4,1,0,0,18,
|
||||
19,rattata,1,,7,7,8,3,4,255,70,0,15,1,2,0,0,0,19,
|
||||
20,raticate,1,19,7,3,8,3,4,127,70,0,15,1,2,0,0,0,20,
|
||||
21,spearow,1,,8,3,9,6,4,255,70,0,15,0,2,0,0,0,21,
|
||||
22,fearow,1,21,8,3,9,6,4,90,70,0,15,0,2,0,0,0,22,
|
||||
23,ekans,1,,9,7,2,3,4,255,70,0,20,0,2,0,0,0,23,54
|
||||
24,arbok,1,23,9,7,2,3,4,90,70,0,20,0,2,0,0,0,24,55
|
||||
25,pikachu,1,172,10,10,8,2,4,190,70,0,10,1,2,0,0,0,26,16
|
||||
26,raichu,1,25,10,10,6,2,4,75,70,0,10,1,2,0,0,0,27,17
|
||||
27,sandshrew,1,,11,10,6,6,4,255,70,0,20,0,2,0,0,0,28,
|
||||
28,sandslash,1,27,11,10,6,6,4,90,70,0,20,0,2,0,0,0,29,
|
||||
29,nidoran-f,1,,12,2,8,3,8,235,70,0,20,0,4,0,0,0,30,
|
||||
30,nidorina,1,29,12,2,8,3,8,120,70,0,20,0,4,0,0,0,31,
|
||||
31,nidoqueen,1,30,12,2,6,3,8,45,70,0,20,0,4,0,0,0,32,
|
||||
32,nidoran-m,1,,13,7,8,3,0,235,70,0,20,0,4,0,0,0,33,
|
||||
33,nidorino,1,32,13,7,8,3,0,120,70,0,20,0,4,0,0,0,34,
|
||||
34,nidoking,1,33,13,7,6,3,0,45,70,0,20,0,4,0,0,0,35,
|
||||
35,clefairy,1,173,14,6,6,4,6,150,140,0,10,0,3,0,0,0,37,
|
||||
36,clefable,1,35,14,6,6,4,6,25,140,0,10,0,3,0,0,0,38,
|
||||
37,vulpix,1,,15,3,8,3,6,190,70,0,20,0,2,0,0,0,39,
|
||||
38,ninetales,1,37,15,10,8,3,6,75,70,0,20,0,2,0,0,0,40,
|
||||
39,jigglypuff,1,174,16,6,12,3,6,170,70,0,10,0,3,0,0,0,42,21
|
||||
40,wigglytuff,1,39,16,6,12,3,6,50,70,0,10,0,3,0,0,0,43,22
|
||||
41,zubat,1,,17,7,9,1,4,255,70,0,15,1,2,0,0,0,44,23
|
||||
42,golbat,1,41,17,7,9,1,4,90,70,0,15,1,2,0,0,0,45,24
|
||||
43,oddish,1,,18,2,7,3,4,255,70,0,20,0,4,0,0,0,47,
|
||||
44,gloom,1,43,18,2,12,3,4,120,70,0,20,1,4,0,0,0,48,
|
||||
45,vileplume,1,44,18,8,12,3,4,45,70,0,20,1,4,0,0,0,49,
|
||||
46,paras,1,,19,8,14,2,4,190,70,0,20,0,2,0,0,0,51,
|
||||
47,parasect,1,46,19,8,14,2,4,75,70,0,20,0,2,0,0,0,52,
|
||||
48,venonat,1,,20,7,12,2,4,190,70,0,20,0,2,0,0,0,53,
|
||||
49,venomoth,1,48,20,7,13,2,4,75,70,0,20,0,2,0,0,0,54,
|
||||
50,diglett,1,,21,3,5,1,4,255,70,0,20,0,2,0,0,0,55,
|
||||
51,dugtrio,1,50,21,3,11,1,4,50,70,0,20,0,2,0,0,0,56,
|
||||
52,meowth,1,,22,10,8,8,4,255,70,0,20,0,2,0,0,0,57,58
|
||||
53,persian,1,52,22,10,8,8,4,90,70,0,20,0,2,0,0,0,58,59
|
||||
54,psyduck,1,,23,10,6,9,4,190,70,0,20,0,2,0,0,0,59,
|
||||
55,golduck,1,54,23,2,6,9,4,75,70,0,20,0,2,0,0,0,60,
|
||||
56,mankey,1,,24,3,6,4,4,190,70,0,20,0,2,0,0,0,61,
|
||||
57,primeape,1,56,24,3,6,4,4,75,70,0,20,0,2,0,0,0,62,
|
||||
58,growlithe,1,,25,3,8,3,2,190,70,0,20,0,1,0,0,0,63,
|
||||
59,arcanine,1,58,25,3,8,3,2,75,70,0,20,0,1,0,0,0,64,
|
||||
60,poliwag,1,,26,2,7,9,4,255,70,0,20,0,4,0,0,0,65,
|
||||
61,poliwhirl,1,60,26,2,12,9,4,120,70,0,20,0,4,0,0,0,66,
|
||||
62,poliwrath,1,61,26,2,12,9,4,45,70,0,20,0,4,0,0,0,67,
|
||||
63,abra,1,,27,3,6,8,2,200,70,0,20,0,4,0,0,0,69,127
|
||||
64,kadabra,1,63,27,3,6,8,2,100,70,0,20,1,4,0,0,0,70,128
|
||||
65,alakazam,1,64,27,3,12,8,2,50,70,0,20,1,4,1,0,0,71,129
|
||||
66,machop,1,,28,4,6,4,2,180,70,0,20,0,4,0,0,0,72,98
|
||||
67,machoke,1,66,28,4,12,4,2,90,70,0,20,0,4,0,0,0,73,99
|
||||
68,machamp,1,67,28,4,12,4,2,45,70,0,20,0,4,0,0,0,74,100
|
||||
69,bellsprout,1,,29,5,12,2,4,255,70,0,20,0,4,0,0,0,75,
|
||||
70,weepinbell,1,69,29,5,5,2,4,120,70,0,20,0,4,0,0,0,76,
|
||||
71,victreebel,1,70,29,5,5,2,4,45,70,0,20,0,4,0,0,0,77,
|
||||
72,tentacool,1,,30,2,10,7,4,190,70,0,20,0,1,0,0,0,78,
|
||||
73,tentacruel,1,72,30,2,10,7,4,60,70,0,20,0,1,0,0,0,79,
|
||||
74,geodude,1,,31,3,4,4,4,255,70,0,15,0,4,0,0,0,80,
|
||||
75,graveler,1,74,31,3,12,4,4,120,70,0,15,0,4,0,0,0,81,
|
||||
76,golem,1,75,31,3,12,4,4,45,70,0,15,0,4,0,0,0,82,
|
||||
77,ponyta,1,,32,10,8,3,4,190,70,0,20,0,2,0,0,0,83,
|
||||
78,rapidash,1,77,32,10,8,3,4,60,70,0,20,0,2,0,0,0,84,
|
||||
79,slowpoke,1,,33,6,8,9,4,190,70,0,20,0,2,0,0,0,85,
|
||||
80,slowbro,1,79,33,6,6,9,4,75,70,0,20,0,2,1,0,0,86,
|
||||
81,magnemite,1,,34,4,4,6,-1,190,70,0,20,0,2,0,0,0,88,
|
||||
82,magneton,1,81,34,4,11,6,-1,60,70,0,20,0,2,0,0,0,89,
|
||||
83,farfetchd,1,,35,3,9,3,4,45,70,0,20,0,2,0,0,0,91,
|
||||
84,doduo,1,,36,3,7,3,4,190,70,0,20,1,2,0,0,0,92,
|
||||
85,dodrio,1,84,36,3,7,3,4,45,70,0,20,1,2,0,0,0,93,
|
||||
86,seel,1,,37,9,3,7,4,190,70,0,20,0,2,0,0,0,94,
|
||||
87,dewgong,1,86,37,9,3,7,4,75,70,0,20,0,2,0,0,0,95,
|
||||
88,grimer,1,,38,7,4,8,4,190,70,0,20,0,2,0,0,0,96,
|
||||
89,muk,1,88,38,7,4,8,4,75,70,0,20,0,2,0,0,0,97,
|
||||
90,shellder,1,,39,7,1,7,4,190,70,0,20,0,1,0,0,0,98,
|
||||
91,cloyster,1,90,39,7,1,7,4,60,70,0,20,0,1,0,0,0,99,
|
||||
92,gastly,1,,40,7,1,1,4,190,70,0,20,0,4,0,0,0,100,112
|
||||
93,haunter,1,92,40,7,4,1,4,90,70,0,20,0,4,0,0,0,101,113
|
||||
94,gengar,1,93,40,7,6,1,4,45,70,0,20,0,4,1,0,0,102,114
|
||||
95,onix,1,,41,4,2,1,4,45,70,0,25,0,2,0,0,0,103,175
|
||||
96,drowzee,1,,42,10,12,3,4,190,70,0,20,0,2,0,0,0,105,
|
||||
97,hypno,1,96,42,10,12,3,4,75,70,0,20,1,2,0,0,0,106,
|
||||
98,krabby,1,,43,8,14,9,4,225,70,0,20,0,2,0,0,0,107,
|
||||
99,kingler,1,98,43,8,14,9,4,60,70,0,20,0,2,0,0,0,108,
|
||||
100,voltorb,1,,44,8,1,8,-1,190,70,0,20,0,2,0,0,0,109,
|
||||
101,electrode,1,100,44,8,1,8,-1,60,70,0,20,0,2,0,0,0,110,
|
||||
102,exeggcute,1,,45,6,11,2,4,90,70,0,20,0,1,0,0,0,111,
|
||||
103,exeggutor,1,102,45,10,7,2,4,45,70,0,20,0,1,0,0,0,112,
|
||||
104,cubone,1,,46,3,6,4,4,190,70,0,20,0,2,0,0,0,113,
|
||||
105,marowak,1,104,46,3,6,4,4,75,70,0,20,0,2,0,0,0,114,
|
||||
106,hitmonlee,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,116,
|
||||
107,hitmonchan,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,117,
|
||||
108,lickitung,1,,48,6,6,3,4,45,70,0,20,0,2,0,0,0,119,
|
||||
109,koffing,1,,49,7,1,8,4,190,70,0,20,0,2,0,0,0,121,
|
||||
110,weezing,1,109,49,7,11,8,4,60,70,0,20,0,2,0,0,0,122,
|
||||
111,rhyhorn,1,,50,4,8,6,4,120,70,0,20,1,1,0,0,0,123,160
|
||||
112,rhydon,1,111,50,4,6,6,4,60,70,0,20,1,1,0,0,0,124,161
|
||||
113,chansey,1,440,51,6,6,8,8,30,140,0,40,0,3,0,0,0,127,
|
||||
114,tangela,1,,52,2,7,3,4,45,70,0,20,0,2,0,0,0,129,
|
||||
115,kangaskhan,1,,53,3,6,3,8,45,70,0,20,0,2,1,0,0,131,
|
||||
116,horsea,1,,54,2,5,7,4,225,70,0,20,0,2,0,0,0,132,
|
||||
117,seadra,1,116,54,2,5,7,4,75,70,0,20,0,2,0,0,0,133,
|
||||
118,goldeen,1,,55,8,3,9,4,225,70,0,20,1,2,0,0,0,135,
|
||||
119,seaking,1,118,55,8,3,9,4,60,70,0,20,1,2,0,0,0,136,
|
||||
120,staryu,1,,56,3,5,7,-1,225,70,0,20,0,1,0,0,0,137,
|
||||
121,starmie,1,120,56,7,5,7,-1,60,70,0,20,0,1,0,0,0,138,
|
||||
122,mr-mime,1,439,57,6,12,8,4,45,70,0,25,0,2,0,0,0,140,
|
||||
123,scyther,1,,58,5,13,3,4,45,70,0,25,1,2,0,0,0,141,188
|
||||
124,jynx,1,238,59,8,12,8,8,45,70,0,25,0,2,0,0,0,144,
|
||||
125,electabuzz,1,239,60,10,6,3,2,45,70,0,25,0,2,0,0,0,146,
|
||||
126,magmar,1,240,61,8,6,4,2,45,70,0,25,0,2,0,0,0,149,
|
||||
127,pinsir,1,,62,3,12,2,4,45,70,0,25,0,1,1,0,0,151,
|
||||
128,tauros,1,,63,3,8,3,0,45,70,0,20,0,1,0,0,0,152,
|
||||
129,magikarp,1,,64,8,3,9,4,255,70,0,5,1,1,0,0,0,153,13
|
||||
130,gyarados,1,129,64,2,2,9,4,45,70,0,5,1,1,1,0,0,154,14
|
||||
131,lapras,1,,65,2,3,7,4,45,70,0,40,0,1,0,0,0,155,190
|
||||
132,ditto,1,,66,7,1,8,-1,35,70,0,20,0,2,0,0,0,156,
|
||||
133,eevee,1,,67,3,8,8,1,45,70,0,35,0,2,0,0,0,157,1
|
||||
134,vaporeon,1,133,67,2,8,8,1,45,70,0,35,0,2,0,0,0,158,2
|
||||
135,jolteon,1,133,67,10,8,8,1,45,70,0,35,0,2,0,0,0,159,3
|
||||
136,flareon,1,133,67,8,8,8,1,45,70,0,35,0,2,0,0,0,160,4
|
||||
137,porygon,1,,68,6,7,8,-1,45,70,0,20,0,2,0,0,0,166,
|
||||
138,omanyte,1,,69,2,10,7,1,45,70,0,30,0,2,0,0,0,169,
|
||||
139,omastar,1,138,69,2,10,7,1,45,70,0,30,0,2,0,0,0,170,
|
||||
140,kabuto,1,,70,3,14,7,1,45,70,0,30,0,2,0,0,0,171,
|
||||
141,kabutops,1,140,70,3,6,7,1,45,70,0,30,0,2,0,0,0,172,
|
||||
142,aerodactyl,1,,71,7,9,4,1,45,70,0,35,0,1,1,0,0,173,
|
||||
143,snorlax,1,446,72,1,12,4,1,25,70,0,40,0,1,0,0,0,175,179
|
||||
144,articuno,1,,73,2,9,5,-1,3,35,0,80,0,1,0,1,0,176,192
|
||||
145,zapdos,1,,74,10,9,5,-1,3,35,0,80,0,1,0,1,0,177,
|
||||
146,moltres,1,,75,10,9,5,-1,3,35,0,80,0,1,0,1,0,178,
|
||||
147,dratini,1,,76,2,2,9,4,45,35,0,40,0,1,0,0,0,179,76
|
||||
148,dragonair,1,147,76,2,2,9,4,45,35,0,40,0,1,0,0,0,180,77
|
||||
149,dragonite,1,148,76,3,6,9,4,45,35,0,40,0,1,0,0,0,181,78
|
||||
150,mewtwo,1,,77,7,6,5,-1,3,0,0,120,0,1,1,1,0,182,196
|
||||
151,mew,1,,78,6,6,5,-1,45,100,0,120,0,4,0,0,1,183,
|
||||
152,chikorita,2,,79,5,8,3,1,45,70,0,20,0,4,0,0,0,184,
|
||||
153,bayleef,2,152,79,5,8,3,1,45,70,0,20,0,4,0,0,0,185,
|
||||
154,meganium,2,153,79,5,8,3,1,45,70,0,20,1,4,0,0,0,186,
|
||||
155,cyndaquil,2,,80,10,12,3,1,45,70,0,20,0,4,0,0,0,187,
|
||||
156,quilava,2,155,80,10,8,3,1,45,70,0,20,0,4,0,0,0,188,
|
||||
157,typhlosion,2,156,80,10,8,3,1,45,70,0,20,0,4,0,0,0,189,
|
||||
158,totodile,2,,81,2,6,9,1,45,70,0,20,0,4,0,0,0,190,
|
||||
159,croconaw,2,158,81,2,6,9,1,45,70,0,20,0,4,0,0,0,191,
|
||||
160,feraligatr,2,159,81,2,6,9,1,45,70,0,20,0,4,0,0,0,192,
|
||||
161,sentret,2,,82,3,8,3,4,255,70,0,15,0,2,0,0,0,193,
|
||||
162,furret,2,161,82,3,8,3,4,90,70,0,15,0,2,0,0,0,194,
|
||||
163,hoothoot,2,,83,3,9,2,4,255,70,0,15,0,2,0,0,0,195,
|
||||
164,noctowl,2,163,83,3,9,2,4,90,70,0,15,0,2,0,0,0,196,
|
||||
165,ledyba,2,,84,8,9,2,4,255,70,0,15,1,3,0,0,0,197,
|
||||
166,ledian,2,165,84,8,9,2,4,90,70,0,15,1,3,0,0,0,198,
|
||||
167,spinarak,2,,85,5,14,2,4,255,70,0,15,0,3,0,0,0,199,
|
||||
168,ariados,2,167,85,8,14,2,4,90,70,0,15,0,3,0,0,0,200,
|
||||
169,crobat,2,42,17,7,13,1,4,90,70,0,15,0,2,0,0,0,46,25
|
||||
170,chinchou,2,,86,2,3,7,4,190,70,0,20,0,1,0,0,0,201,
|
||||
171,lanturn,2,170,86,2,3,7,4,75,70,0,20,0,1,0,0,0,202,
|
||||
172,pichu,2,,10,10,8,2,4,190,70,1,10,0,2,0,0,0,25,15
|
||||
173,cleffa,2,,14,6,6,4,6,150,140,1,10,0,3,0,0,0,36,
|
||||
174,igglybuff,2,,16,6,12,3,6,170,70,1,10,0,3,0,0,0,41,20
|
||||
175,togepi,2,,87,9,12,2,1,190,70,1,10,0,3,0,0,0,203,
|
||||
176,togetic,2,175,87,9,12,2,1,75,70,0,10,0,3,0,0,0,204,
|
||||
177,natu,2,,88,5,9,2,4,190,70,0,20,0,2,0,0,0,206,
|
||||
178,xatu,2,177,88,5,9,2,4,75,70,0,20,1,2,0,0,0,207,
|
||||
179,mareep,2,,89,9,8,3,4,235,70,0,20,0,4,0,0,0,208,45
|
||||
180,flaaffy,2,179,89,6,6,3,4,120,70,0,20,0,4,0,0,0,209,46
|
||||
181,ampharos,2,180,89,10,6,3,4,45,70,0,20,0,4,1,0,0,210,47
|
||||
182,bellossom,2,44,18,5,12,3,4,45,70,0,20,0,4,0,0,0,50,
|
||||
183,marill,2,298,90,2,6,9,4,190,70,0,10,0,3,0,0,0,212,
|
||||
184,azumarill,2,183,90,2,6,9,4,75,70,0,10,0,3,0,0,0,213,
|
||||
185,sudowoodo,2,438,91,3,12,2,4,65,70,0,20,1,2,0,0,0,215,
|
||||
186,politoed,2,61,26,5,12,9,4,45,70,0,20,1,4,0,0,0,68,
|
||||
187,hoppip,2,,92,6,6,3,4,255,70,0,20,0,4,0,0,0,216,
|
||||
188,skiploom,2,187,92,5,6,3,4,120,70,0,20,0,4,0,0,0,217,
|
||||
189,jumpluff,2,188,92,2,6,3,4,45,70,0,20,0,4,0,0,0,218,
|
||||
190,aipom,2,,93,7,6,2,4,45,70,0,20,1,3,0,0,0,219,
|
||||
191,sunkern,2,,94,10,1,3,4,235,70,0,20,0,4,0,0,0,221,
|
||||
192,sunflora,2,191,94,10,12,3,4,120,70,0,20,0,4,0,0,0,222,
|
||||
193,yanma,2,,95,8,13,2,4,75,70,0,20,0,2,0,0,0,223,
|
||||
194,wooper,2,,96,2,7,9,4,255,70,0,20,1,2,0,0,0,225,18
|
||||
195,quagsire,2,194,96,2,6,9,4,90,70,0,20,1,2,0,0,0,226,19
|
||||
196,espeon,2,133,67,7,8,8,1,45,70,0,35,0,2,0,0,0,161,5
|
||||
197,umbreon,2,133,67,1,8,8,1,45,35,0,35,0,2,0,0,0,162,6
|
||||
198,murkrow,2,,97,1,9,2,4,30,35,0,20,1,4,0,0,0,227,
|
||||
199,slowking,2,79,33,6,6,9,4,70,70,0,20,0,2,0,0,0,87,
|
||||
200,misdreavus,2,,98,4,1,1,4,45,35,0,25,0,3,0,0,0,229,183
|
||||
201,unown,2,,99,1,1,5,-1,225,70,0,40,0,2,0,0,0,231,
|
||||
202,wobbuffet,2,360,100,2,5,1,4,45,70,0,20,1,2,0,0,0,233,
|
||||
203,girafarig,2,,101,10,8,3,4,60,70,0,20,1,2,0,0,0,234,
|
||||
204,pineco,2,,102,4,1,2,4,190,70,0,20,0,2,0,0,0,235,56
|
||||
205,forretress,2,204,102,7,1,2,4,75,70,0,20,0,2,0,0,0,236,57
|
||||
206,dunsparce,2,,103,10,2,1,4,190,70,0,20,0,2,0,0,0,237,
|
||||
207,gligar,2,,104,7,9,4,4,60,70,0,20,1,4,0,0,0,238,
|
||||
208,steelix,2,95,41,4,2,1,4,25,70,0,25,1,2,1,0,0,104,176
|
||||
209,snubbull,2,,105,6,12,8,6,190,70,0,20,0,3,0,0,0,240,
|
||||
210,granbull,2,209,105,7,6,8,6,75,70,0,20,0,3,0,0,0,241,
|
||||
211,qwilfish,2,,106,4,3,7,4,45,70,0,20,0,2,0,0,0,242,
|
||||
212,scizor,2,123,58,8,13,3,4,25,70,0,25,1,2,1,0,0,142,189
|
||||
213,shuckle,2,,107,10,14,4,4,190,70,0,20,0,4,0,0,0,243,
|
||||
214,heracross,2,,108,2,12,2,4,45,70,0,25,1,1,1,0,0,244,
|
||||
215,sneasel,2,,109,1,6,2,4,60,35,0,20,1,4,0,0,0,245,181
|
||||
216,teddiursa,2,,110,3,6,4,4,120,70,0,20,0,2,0,0,0,247,
|
||||
217,ursaring,2,216,110,3,6,4,4,60,70,0,20,1,2,0,0,0,248,
|
||||
218,slugma,2,,111,8,2,4,4,190,70,0,20,0,2,0,0,0,249,
|
||||
219,magcargo,2,218,111,8,2,4,4,75,70,0,20,0,2,0,0,0,250,
|
||||
220,swinub,2,,112,3,8,1,4,225,70,0,20,0,1,0,0,0,251,
|
||||
221,piloswine,2,220,112,3,8,1,4,75,70,0,20,1,1,0,0,0,252,
|
||||
222,corsola,2,,113,6,14,7,6,60,70,0,20,0,3,0,0,0,254,
|
||||
223,remoraid,2,,114,4,3,7,4,190,70,0,20,0,2,0,0,0,255,
|
||||
224,octillery,2,223,114,8,10,7,4,75,70,0,20,1,2,0,0,0,256,
|
||||
225,delibird,2,,115,8,9,4,4,45,70,0,20,0,3,0,0,0,257,
|
||||
226,mantine,2,458,116,7,9,7,4,25,70,0,25,0,1,0,0,0,259,
|
||||
227,skarmory,2,,117,4,9,6,4,25,70,0,25,0,1,0,0,0,260,
|
||||
228,houndour,2,,118,1,8,6,4,120,35,0,20,0,1,0,0,0,261,
|
||||
229,houndoom,2,228,118,1,8,6,4,45,35,0,20,1,1,1,0,0,262,
|
||||
230,kingdra,2,117,54,2,5,7,4,45,70,0,20,0,2,0,0,0,134,
|
||||
231,phanpy,2,,119,2,8,6,4,120,70,0,20,0,2,0,0,0,263,
|
||||
232,donphan,2,231,119,4,8,6,4,60,70,0,20,1,2,0,0,0,264,
|
||||
233,porygon2,2,137,68,8,7,8,-1,45,70,0,20,0,2,0,0,0,167,
|
||||
234,stantler,2,,120,3,8,2,4,45,70,0,20,0,1,0,0,0,265,
|
||||
235,smeargle,2,,121,9,6,8,4,45,70,0,20,0,3,0,0,0,266,
|
||||
236,tyrogue,2,,47,7,12,8,0,75,70,1,25,0,2,0,0,0,115,
|
||||
237,hitmontop,2,236,47,3,6,8,0,45,70,0,25,0,2,0,0,0,118,
|
||||
238,smoochum,2,,59,6,12,8,8,45,70,1,25,0,2,0,0,0,143,
|
||||
239,elekid,2,,60,10,12,3,2,45,70,1,25,0,2,0,0,0,145,
|
||||
240,magby,2,,61,8,6,4,2,45,70,1,25,0,2,0,0,0,148,
|
||||
241,miltank,2,,122,6,6,3,8,45,70,0,20,0,1,0,0,0,267,
|
||||
242,blissey,2,113,51,6,12,8,8,30,140,0,40,0,3,0,0,0,128,
|
||||
243,raikou,2,,123,10,8,3,-1,3,35,0,80,0,1,0,1,0,268,
|
||||
244,entei,2,,124,3,8,3,-1,3,35,0,80,0,1,0,1,0,269,
|
||||
245,suicune,2,,125,2,8,3,-1,3,35,0,80,0,1,0,1,0,270,
|
||||
246,larvitar,2,,126,5,6,4,4,45,35,0,40,0,1,0,0,0,271,79
|
||||
247,pupitar,2,246,126,4,2,4,4,45,35,0,40,0,1,0,0,0,272,80
|
||||
248,tyranitar,2,247,126,5,6,4,4,45,35,0,40,0,1,1,0,0,273,81
|
||||
249,lugia,2,,127,9,9,5,-1,3,0,0,120,0,1,0,1,0,274,
|
||||
250,ho-oh,2,,128,8,9,5,-1,3,0,0,120,0,1,0,1,0,275,
|
||||
251,celebi,2,,129,5,12,2,-1,45,100,0,120,0,4,0,0,1,276,
|
||||
252,treecko,3,,130,5,6,2,1,45,70,0,20,0,4,0,0,0,277,130
|
||||
253,grovyle,3,252,130,5,6,2,1,45,70,0,20,0,4,0,0,0,278,131
|
||||
254,sceptile,3,253,130,5,6,2,1,45,70,0,20,0,4,1,0,0,279,132
|
||||
255,torchic,3,,131,8,7,3,1,45,70,0,20,1,4,0,0,0,280,
|
||||
256,combusken,3,255,131,8,6,3,1,45,70,0,20,1,4,0,0,0,281,
|
||||
257,blaziken,3,256,131,8,6,3,1,45,70,0,20,1,4,1,0,0,282,
|
||||
258,mudkip,3,,132,2,8,9,1,45,70,0,20,0,4,0,0,0,283,
|
||||
259,marshtomp,3,258,132,2,6,9,1,45,70,0,20,0,4,0,0,0,284,
|
||||
260,swampert,3,259,132,2,6,9,1,45,70,0,20,0,4,1,0,0,285,
|
||||
261,poochyena,3,,133,4,8,3,4,255,70,0,15,0,2,0,0,0,286,
|
||||
262,mightyena,3,261,133,4,8,3,4,127,70,0,15,0,2,0,0,0,287,
|
||||
263,zigzagoon,3,,134,3,8,3,4,255,70,0,15,0,2,0,0,0,288,
|
||||
264,linoone,3,263,134,9,8,3,4,90,70,0,15,0,2,0,0,0,289,
|
||||
265,wurmple,3,,135,8,14,2,4,255,70,0,15,0,2,0,0,0,290,
|
||||
266,silcoon,3,265,135,9,1,2,4,120,70,0,15,0,2,0,0,0,291,
|
||||
267,beautifly,3,266,135,10,13,2,4,45,70,0,15,1,2,0,0,0,292,
|
||||
268,cascoon,3,265,135,7,1,2,4,120,70,0,15,0,2,0,0,0,293,
|
||||
269,dustox,3,268,135,5,13,2,4,45,70,0,15,1,2,0,0,0,294,
|
||||
270,lotad,3,,136,5,14,9,4,255,70,0,15,0,4,0,0,0,295,
|
||||
271,lombre,3,270,136,5,12,9,4,120,70,0,15,0,4,0,0,0,296,
|
||||
272,ludicolo,3,271,136,5,12,9,4,45,70,0,15,1,4,0,0,0,297,
|
||||
273,seedot,3,,137,3,7,2,4,255,70,0,15,0,4,0,0,0,298,
|
||||
274,nuzleaf,3,273,137,3,12,2,4,120,70,0,15,1,4,0,0,0,299,
|
||||
275,shiftry,3,274,137,3,12,2,4,45,70,0,15,1,4,0,0,0,300,
|
||||
276,taillow,3,,138,2,9,3,4,200,70,0,15,0,4,0,0,0,301,
|
||||
277,swellow,3,276,138,2,9,3,4,45,70,0,15,0,4,0,0,0,302,
|
||||
278,wingull,3,,139,9,9,7,4,190,70,0,20,0,2,0,0,0,303,
|
||||
279,pelipper,3,278,139,10,9,7,4,45,70,0,20,0,2,0,0,0,304,
|
||||
280,ralts,3,,140,9,12,8,4,235,35,0,20,0,1,0,0,0,305,9
|
||||
281,kirlia,3,280,140,9,12,8,4,120,35,0,20,0,1,0,0,0,306,10
|
||||
282,gardevoir,3,281,140,9,12,8,4,45,35,0,20,0,1,1,0,0,307,11
|
||||
283,surskit,3,,141,2,14,9,4,200,70,0,15,0,2,0,0,0,309,
|
||||
284,masquerain,3,283,141,2,13,9,4,75,70,0,15,0,2,0,0,0,310,
|
||||
285,shroomish,3,,142,3,7,2,4,255,70,0,15,0,6,0,0,0,311,
|
||||
286,breloom,3,285,142,5,6,2,4,90,70,0,15,0,6,0,0,0,312,
|
||||
287,slakoth,3,,143,3,8,2,4,255,70,0,15,0,1,0,0,0,313,
|
||||
288,vigoroth,3,287,143,9,6,2,4,120,70,0,15,0,1,0,0,0,314,
|
||||
289,slaking,3,288,143,3,12,2,4,45,70,0,15,0,1,0,0,0,315,
|
||||
290,nincada,3,,144,4,14,2,4,255,70,0,15,0,5,0,0,0,316,
|
||||
291,ninjask,3,290,144,10,13,2,4,120,70,0,15,0,5,0,0,0,317,
|
||||
292,shedinja,3,290,144,3,5,2,-1,45,70,0,15,0,5,0,0,0,318,
|
||||
293,whismur,3,,145,6,6,1,4,190,70,0,20,0,4,0,0,0,319,
|
||||
294,loudred,3,293,145,2,6,1,4,120,70,0,20,0,4,0,0,0,320,
|
||||
295,exploud,3,294,145,2,6,1,4,45,70,0,20,0,4,0,0,0,321,
|
||||
296,makuhita,3,,146,10,12,4,2,180,70,0,20,0,6,0,0,0,322,
|
||||
297,hariyama,3,296,146,3,12,4,2,200,70,0,20,0,6,0,0,0,323,
|
||||
298,azurill,3,,90,2,7,9,6,150,70,1,10,0,3,0,0,0,211,
|
||||
299,nosepass,3,,147,4,12,1,4,255,70,0,20,0,2,0,0,0,324,
|
||||
300,skitty,3,,148,6,8,2,6,255,70,0,15,0,3,0,0,0,326,
|
||||
301,delcatty,3,300,148,7,8,2,6,60,70,0,15,0,3,0,0,0,327,
|
||||
302,sableye,3,,149,7,12,1,4,45,35,0,25,0,4,1,0,0,328,
|
||||
303,mawile,3,,150,1,12,1,4,45,70,0,20,0,3,1,0,0,329,
|
||||
304,aron,3,,151,4,8,4,4,180,35,0,35,0,1,0,0,0,330,149
|
||||
305,lairon,3,304,151,4,8,4,4,90,35,0,35,0,1,0,0,0,331,150
|
||||
306,aggron,3,305,151,4,6,4,4,45,35,0,35,0,1,1,0,0,332,151
|
||||
307,meditite,3,,152,2,12,4,4,180,70,0,20,1,2,0,0,0,333,
|
||||
308,medicham,3,307,152,8,12,4,4,90,70,0,20,1,2,1,0,0,334,
|
||||
309,electrike,3,,153,5,8,3,4,120,70,0,20,0,1,0,0,0,335,
|
||||
310,manectric,3,309,153,10,8,3,4,45,70,0,20,0,1,1,0,0,336,
|
||||
311,plusle,3,,154,10,6,3,4,200,70,0,20,0,2,0,0,0,337,
|
||||
312,minun,3,,155,10,6,3,4,200,70,0,20,0,2,0,0,0,338,
|
||||
313,volbeat,3,,156,4,6,2,0,150,70,0,15,0,5,0,0,0,339,
|
||||
314,illumise,3,,157,7,12,2,8,150,70,0,15,0,6,0,0,0,340,
|
||||
315,roselia,3,406,158,5,12,3,4,150,70,0,20,1,4,0,0,0,342,
|
||||
316,gulpin,3,,159,5,4,3,4,225,70,0,20,1,6,0,0,0,344,
|
||||
317,swalot,3,316,159,7,4,3,4,75,70,0,20,1,6,0,0,0,345,
|
||||
318,carvanha,3,,160,8,3,7,4,225,35,0,20,0,1,0,0,0,346,
|
||||
319,sharpedo,3,318,160,2,3,7,4,60,35,0,20,0,1,1,0,0,347,
|
||||
320,wailmer,3,,161,2,3,7,4,125,70,0,40,0,6,0,0,0,348,
|
||||
321,wailord,3,320,161,2,3,7,4,60,70,0,40,0,6,0,0,0,349,
|
||||
322,numel,3,,162,10,8,4,4,255,70,0,20,1,2,0,0,0,350,
|
||||
323,camerupt,3,322,162,8,8,4,4,150,70,0,20,1,2,1,0,0,351,
|
||||
324,torkoal,3,,163,3,8,4,4,90,70,0,20,0,2,0,0,0,352,
|
||||
325,spoink,3,,164,1,4,4,4,255,70,0,20,0,3,0,0,0,353,
|
||||
326,grumpig,3,325,164,7,6,4,4,60,70,0,20,0,3,0,0,0,354,
|
||||
327,spinda,3,,165,3,6,4,4,255,70,0,15,0,3,0,0,0,355,
|
||||
328,trapinch,3,,166,3,14,6,4,255,70,0,20,0,4,0,0,0,356,
|
||||
329,vibrava,3,328,166,5,13,6,4,120,70,0,20,0,4,0,0,0,357,
|
||||
330,flygon,3,329,166,5,9,6,4,45,70,0,20,0,4,0,0,0,358,
|
||||
331,cacnea,3,,167,5,12,6,4,190,35,0,20,0,4,0,0,0,359,
|
||||
332,cacturne,3,331,167,5,12,6,4,60,35,0,20,1,4,0,0,0,360,
|
||||
333,swablu,3,,168,2,9,2,4,255,70,0,20,0,5,0,0,0,361,
|
||||
334,altaria,3,333,168,2,9,2,4,45,70,0,20,0,5,1,0,0,362,
|
||||
335,zangoose,3,,169,9,6,3,4,90,70,0,20,0,5,0,0,0,363,
|
||||
336,seviper,3,,170,1,2,3,4,90,70,0,20,0,6,0,0,0,364,
|
||||
337,lunatone,3,,171,10,1,1,-1,45,70,0,25,0,3,0,0,0,365,
|
||||
338,solrock,3,,172,8,1,1,-1,45,70,0,25,0,3,0,0,0,366,
|
||||
339,barboach,3,,173,4,3,9,4,190,70,0,20,0,2,0,0,0,367,
|
||||
340,whiscash,3,339,173,2,3,9,4,75,70,0,20,0,2,0,0,0,368,
|
||||
341,corphish,3,,174,8,14,9,4,205,70,0,15,0,6,0,0,0,369,
|
||||
342,crawdaunt,3,341,174,8,14,9,4,155,70,0,15,0,6,0,0,0,370,
|
||||
343,baltoy,3,,175,3,4,6,-1,255,70,0,20,0,2,0,0,0,371,
|
||||
344,claydol,3,343,175,1,4,6,-1,90,70,0,20,0,2,0,0,0,372,
|
||||
345,lileep,3,,176,7,5,7,1,45,70,0,30,0,5,0,0,0,373,
|
||||
346,cradily,3,345,176,5,5,7,1,45,70,0,30,0,5,0,0,0,374,
|
||||
347,anorith,3,,177,4,14,9,1,45,70,0,30,0,5,0,0,0,375,171
|
||||
348,armaldo,3,347,177,4,6,9,1,45,70,0,30,0,5,0,0,0,376,172
|
||||
349,feebas,3,,178,3,3,9,4,255,70,0,20,0,5,0,0,0,377,
|
||||
350,milotic,3,349,178,6,2,9,4,60,70,0,20,1,5,0,0,0,378,
|
||||
351,castform,3,,179,4,1,3,4,45,70,0,25,0,2,1,0,0,379,
|
||||
352,kecleon,3,,180,5,6,2,4,200,70,0,20,0,4,0,0,0,380,
|
||||
353,shuppet,3,,181,1,1,8,4,225,35,0,25,0,3,0,0,0,381,
|
||||
354,banette,3,353,181,1,6,8,4,45,35,0,25,0,3,1,0,0,382,
|
||||
355,duskull,3,,182,1,4,2,4,190,35,0,25,0,3,0,0,0,383,69
|
||||
356,dusclops,3,355,182,1,12,2,4,90,35,0,25,0,3,0,0,0,384,70
|
||||
357,tropius,3,,183,5,8,2,4,200,70,0,25,0,1,0,0,0,386,
|
||||
358,chimecho,3,433,184,2,4,3,4,45,70,0,25,0,3,0,0,0,388,53
|
||||
359,absol,3,,185,9,8,4,4,30,35,0,25,0,4,1,0,0,389,
|
||||
360,wynaut,3,,100,2,6,1,4,125,70,1,20,0,2,0,0,0,232,
|
||||
361,snorunt,3,,186,4,12,1,4,190,70,0,20,0,2,0,0,0,390,93
|
||||
362,glalie,3,361,186,4,1,1,4,75,70,0,20,0,2,1,0,0,391,94
|
||||
363,spheal,3,,187,2,3,7,4,255,70,0,20,0,4,0,0,0,393,60
|
||||
364,sealeo,3,363,187,2,3,7,4,120,70,0,20,0,4,0,0,0,394,61
|
||||
365,walrein,3,364,187,2,8,7,4,45,70,0,20,0,4,0,0,0,395,62
|
||||
366,clamperl,3,,188,2,1,7,4,255,70,0,20,0,5,0,0,0,396,
|
||||
367,huntail,3,366,188,2,2,7,4,60,70,0,20,0,5,0,0,0,397,
|
||||
368,gorebyss,3,366,188,6,2,7,4,60,70,0,20,0,5,0,0,0,398,
|
||||
369,relicanth,3,,189,4,3,7,1,25,70,0,40,1,1,0,0,0,399,
|
||||
370,luvdisc,3,,190,6,3,7,6,225,70,0,20,0,3,0,0,0,400,
|
||||
371,bagon,3,,191,2,12,6,4,45,35,0,40,0,1,0,0,0,401,
|
||||
372,shelgon,3,371,191,9,8,6,4,45,35,0,40,0,1,0,0,0,402,
|
||||
373,salamence,3,372,191,2,8,6,4,45,35,0,40,0,1,1,0,0,403,
|
||||
374,beldum,3,,192,2,5,6,-1,3,35,0,40,0,1,0,0,0,404,82
|
||||
375,metang,3,374,192,2,4,6,-1,3,35,0,40,0,1,0,0,0,405,83
|
||||
376,metagross,3,375,192,2,11,6,-1,3,35,0,40,0,1,1,0,0,406,84
|
||||
377,regirock,3,,193,3,12,1,-1,3,35,0,80,0,1,0,1,0,407,
|
||||
378,regice,3,,194,2,12,1,-1,3,35,0,80,0,1,0,1,0,408,
|
||||
379,registeel,3,,195,4,12,1,-1,3,35,0,80,0,1,0,1,0,409,193
|
||||
380,latias,3,,196,8,9,9,8,3,90,0,120,0,1,1,1,0,410,
|
||||
381,latios,3,,197,2,9,9,0,3,90,0,120,0,1,1,1,0,411,
|
||||
382,kyogre,3,,198,2,3,7,-1,3,0,0,120,0,1,1,1,0,412,
|
||||
383,groudon,3,,199,8,6,6,-1,3,0,0,120,0,1,1,1,0,413,194
|
||||
384,rayquaza,3,,200,5,2,5,-1,45,0,0,120,0,1,1,1,0,414,200
|
||||
385,jirachi,3,,201,10,12,4,-1,3,100,0,120,0,1,0,0,1,415,
|
||||
386,deoxys,3,,202,8,12,5,-1,3,0,0,120,0,1,1,0,1,416,
|
||||
387,turtwig,4,,203,5,8,,1,45,70,0,20,0,4,0,0,0,417,
|
||||
388,grotle,4,387,203,5,8,,1,45,70,0,20,0,4,0,0,0,418,
|
||||
389,torterra,4,388,203,5,8,,1,45,70,0,20,0,4,0,0,0,419,
|
||||
390,chimchar,4,,204,3,6,,1,45,70,0,20,0,4,0,0,0,420,115
|
||||
391,monferno,4,390,204,3,6,,1,45,70,0,20,0,4,0,0,0,421,116
|
||||
392,infernape,4,391,204,3,6,,1,45,70,0,20,0,4,0,0,0,422,117
|
||||
393,piplup,4,,205,2,12,,1,45,70,0,20,0,4,0,0,0,423,133
|
||||
394,prinplup,4,393,205,2,6,,1,45,70,0,20,0,4,0,0,0,424,134
|
||||
395,empoleon,4,394,205,2,6,,1,45,70,0,20,0,4,0,0,0,425,135
|
||||
396,starly,4,,206,3,9,,4,255,70,0,15,1,4,0,0,0,426,26
|
||||
397,staravia,4,396,206,3,9,,4,120,70,0,15,1,4,0,0,0,427,27
|
||||
398,staraptor,4,397,206,3,9,,4,45,70,0,15,1,4,0,0,0,428,28
|
||||
399,bidoof,4,,207,3,8,,4,255,70,0,15,1,2,0,0,0,429,29
|
||||
400,bibarel,4,399,207,3,6,,4,127,70,0,15,1,2,0,0,0,430,30
|
||||
401,kricketot,4,,208,8,12,,4,255,70,0,15,1,4,0,0,0,431,
|
||||
402,kricketune,4,401,208,8,13,,4,45,70,0,15,1,4,0,0,0,432,
|
||||
403,shinx,4,,209,2,8,,4,235,70,0,20,1,4,0,0,0,433,34
|
||||
404,luxio,4,403,209,2,8,,4,120,100,0,20,1,4,0,0,0,434,35
|
||||
405,luxray,4,404,209,2,8,,4,45,70,0,20,1,4,0,0,0,435,36
|
||||
406,budew,4,,158,5,12,,4,255,70,1,20,0,4,0,0,0,341,
|
||||
407,roserade,4,315,158,5,12,,4,75,70,0,20,1,4,0,0,0,343,
|
||||
408,cranidos,4,,211,2,6,,1,45,70,0,30,0,5,0,0,0,436,
|
||||
409,rampardos,4,408,211,2,6,,1,45,70,0,30,0,5,0,0,0,437,
|
||||
410,shieldon,4,,212,4,8,,1,45,70,0,30,0,5,0,0,0,438,163
|
||||
411,bastiodon,4,410,212,4,8,,1,45,70,0,30,0,5,0,0,0,439,164
|
||||
412,burmy,4,,213,5,5,,4,120,70,0,15,0,2,1,0,0,440,
|
||||
413,wormadam,4,412,213,5,5,,8,45,70,0,15,0,2,0,0,0,441,
|
||||
414,mothim,4,412,213,10,13,,0,45,70,0,15,0,2,0,0,0,442,
|
||||
415,combee,4,,214,10,11,,1,120,70,0,15,1,4,0,0,0,443,
|
||||
416,vespiquen,4,415,214,10,13,,8,45,70,0,15,0,4,0,0,0,444,
|
||||
417,pachirisu,4,,215,9,8,,4,200,100,0,10,1,2,0,0,0,445,
|
||||
418,buizel,4,,216,3,8,,4,190,70,0,20,1,2,0,0,0,446,
|
||||
419,floatzel,4,418,216,3,8,,4,75,70,0,20,1,2,0,0,0,447,
|
||||
420,cherubi,4,,217,6,11,,4,190,70,0,20,0,2,0,0,0,448,
|
||||
421,cherrim,4,420,217,7,7,,4,75,70,0,20,0,2,1,0,0,449,
|
||||
422,shellos,4,,218,7,2,,4,190,70,0,20,0,2,0,0,0,450,
|
||||
423,gastrodon,4,422,218,7,2,,4,75,70,0,20,0,2,0,0,0,451,
|
||||
424,ambipom,4,190,93,7,6,,4,45,100,0,20,1,3,0,0,0,220,
|
||||
425,drifloon,4,,219,7,4,,4,125,70,0,30,0,6,0,0,0,452,167
|
||||
426,drifblim,4,425,219,7,4,,4,60,70,0,30,0,6,0,0,0,453,168
|
||||
427,buneary,4,,220,3,6,,4,190,0,0,20,0,2,0,0,0,454,
|
||||
428,lopunny,4,427,220,3,6,,4,60,140,0,20,0,2,1,0,0,455,
|
||||
429,mismagius,4,200,98,7,1,,4,45,35,0,25,0,3,0,0,0,230,184
|
||||
430,honchkrow,4,198,97,1,9,,4,30,35,0,20,0,4,0,0,0,228,
|
||||
431,glameow,4,,221,4,8,,6,190,70,0,20,0,3,0,0,0,456,
|
||||
432,purugly,4,431,221,4,8,,6,75,70,0,20,0,3,0,0,0,457,
|
||||
433,chingling,4,,184,10,12,,4,120,70,1,25,0,3,0,0,0,387,52
|
||||
434,stunky,4,,223,7,8,,4,225,70,0,20,0,2,0,0,0,458,
|
||||
435,skuntank,4,434,223,7,8,,4,60,70,0,20,0,2,0,0,0,459,
|
||||
436,bronzor,4,,224,5,1,,-1,255,70,0,20,0,2,0,0,0,460,
|
||||
437,bronzong,4,436,224,5,4,,-1,90,70,0,20,0,2,0,0,0,461,
|
||||
438,bonsly,4,,91,3,7,,4,255,70,1,20,0,2,0,0,0,214,
|
||||
439,mime-jr,4,,57,6,12,,4,145,70,1,25,0,2,0,0,0,139,
|
||||
440,happiny,4,,51,6,12,,8,130,140,1,40,0,3,0,0,0,126,
|
||||
441,chatot,4,,228,1,9,,4,30,35,0,20,0,4,0,0,0,462,
|
||||
442,spiritomb,4,,229,7,5,,4,100,70,0,30,0,2,0,0,0,463,187
|
||||
443,gible,4,,230,2,6,,4,45,70,0,40,1,1,0,0,0,464,85
|
||||
444,gabite,4,443,230,2,6,,4,45,70,0,40,1,1,0,0,0,465,86
|
||||
445,garchomp,4,444,230,2,6,,4,45,70,0,40,1,1,1,0,0,466,87
|
||||
446,munchlax,4,,72,1,12,,1,50,70,1,40,0,1,0,0,0,174,178
|
||||
447,riolu,4,,232,2,6,,1,75,70,1,25,0,4,0,0,0,467,50
|
||||
448,lucario,4,447,232,2,6,,1,45,70,0,25,0,4,1,0,0,468,51
|
||||
449,hippopotas,4,,233,3,8,,4,140,70,0,30,1,1,0,0,0,469,
|
||||
450,hippowdon,4,449,233,3,8,,4,60,70,0,30,1,1,0,0,0,470,
|
||||
451,skorupi,4,,234,7,14,,4,120,70,0,20,0,1,0,0,0,471,156
|
||||
452,drapion,4,451,234,7,14,,4,45,70,0,20,0,1,0,0,0,472,157
|
||||
453,croagunk,4,,235,2,12,,4,140,100,0,10,1,2,0,0,0,473,88
|
||||
454,toxicroak,4,453,235,2,12,,4,75,70,0,20,1,2,0,0,0,474,89
|
||||
455,carnivine,4,,236,5,10,,4,200,70,0,25,0,1,0,0,0,475,186
|
||||
456,finneon,4,,237,2,3,,4,190,70,0,20,1,5,0,0,0,476,
|
||||
457,lumineon,4,456,237,2,3,,4,75,70,0,20,1,5,0,0,0,477,
|
||||
458,mantyke,4,,116,2,9,,4,25,70,1,25,0,1,0,0,0,258,
|
||||
459,snover,4,,239,9,6,,4,120,70,0,20,1,1,0,0,0,478,
|
||||
460,abomasnow,4,459,239,9,6,,4,60,70,0,20,1,1,1,0,0,479,
|
||||
461,weavile,4,215,109,1,6,,4,45,35,0,20,1,4,0,0,0,246,182
|
||||
462,magnezone,4,82,34,4,4,,-1,30,70,0,20,0,2,0,0,0,90,
|
||||
463,lickilicky,4,108,48,6,12,,4,30,70,0,20,0,2,0,0,0,120,
|
||||
464,rhyperior,4,112,50,4,6,,4,30,70,0,20,1,1,0,0,0,125,162
|
||||
465,tangrowth,4,114,52,2,12,,4,30,70,0,20,1,2,0,0,0,130,
|
||||
466,electivire,4,125,60,10,6,,2,30,70,0,25,0,2,0,0,0,147,
|
||||
467,magmortar,4,126,61,8,6,,2,30,70,0,25,0,2,0,0,0,150,
|
||||
468,togekiss,4,176,87,9,9,,1,30,70,0,10,0,3,0,0,0,205,
|
||||
469,yanmega,4,193,95,5,13,,4,30,70,0,20,0,2,0,0,0,224,
|
||||
470,leafeon,4,133,67,5,8,,1,45,35,0,35,0,2,0,0,0,163,7
|
||||
471,glaceon,4,133,67,2,8,,1,45,35,0,35,0,2,0,0,0,164,8
|
||||
472,gliscor,4,207,104,7,9,,4,30,70,0,20,0,4,0,0,0,239,
|
||||
473,mamoswine,4,221,112,3,8,,4,50,70,0,20,1,1,0,0,0,253,
|
||||
474,porygon-z,4,233,68,8,4,,-1,30,70,0,20,0,2,0,0,0,168,
|
||||
475,gallade,4,281,140,9,12,,0,45,35,0,20,0,1,1,0,0,308,12
|
||||
476,probopass,4,299,147,4,11,,4,60,70,0,20,0,2,0,0,0,325,
|
||||
477,dusknoir,4,356,182,1,4,,4,45,35,0,25,0,3,0,0,0,385,71
|
||||
478,froslass,4,361,186,9,4,,8,75,70,0,20,0,2,0,0,0,392,95
|
||||
479,rotom,4,,240,8,1,,-1,45,70,0,20,0,2,1,0,0,480,
|
||||
480,uxie,4,,241,10,6,,-1,3,140,0,80,0,1,0,1,0,481,
|
||||
481,mesprit,4,,242,6,6,,-1,3,140,0,80,0,1,0,1,0,482,
|
||||
482,azelf,4,,243,2,6,,-1,3,140,0,80,0,1,0,1,0,483,
|
||||
483,dialga,4,,244,9,8,,-1,3,0,0,120,0,1,0,1,0,484,195
|
||||
484,palkia,4,,245,7,6,,-1,3,0,0,120,0,1,0,1,0,485,
|
||||
485,heatran,4,,246,3,8,,4,3,100,0,10,0,1,0,1,0,486,
|
||||
486,regigigas,4,,247,9,12,,-1,3,0,0,120,0,1,0,1,0,487,
|
||||
487,giratina,4,,248,1,10,,-1,3,0,0,120,0,1,1,1,0,488,
|
||||
488,cresselia,4,,249,10,2,,8,3,100,0,120,0,1,0,1,0,489,
|
||||
489,phione,4,,250,2,4,,-1,30,70,0,40,0,1,0,0,1,490,
|
||||
490,manaphy,4,,250,2,12,,-1,3,70,0,10,0,1,0,0,1,491,
|
||||
491,darkrai,4,,252,1,12,,-1,3,0,0,120,0,1,0,0,1,492,
|
||||
492,shaymin,4,,253,5,8,,-1,45,100,0,120,0,4,1,0,1,493,
|
||||
493,arceus,4,,254,9,8,,-1,3,0,0,120,0,1,1,0,1,494,199
|
||||
494,victini,5,,255,10,12,,-1,3,100,0,120,0,1,0,0,1,495,
|
||||
495,snivy,5,,256,5,6,,1,45,70,0,20,0,4,0,0,0,496,118
|
||||
496,servine,5,495,256,5,6,,1,45,70,0,20,0,4,0,0,0,497,119
|
||||
497,serperior,5,496,256,5,2,,1,45,70,0,20,0,4,0,0,0,498,120
|
||||
498,tepig,5,,257,8,8,,1,45,70,0,20,0,4,0,0,0,499,121
|
||||
499,pignite,5,498,257,8,6,,1,45,70,0,20,0,4,0,0,0,500,122
|
||||
500,emboar,5,499,257,8,6,,1,45,70,0,20,0,4,0,0,0,501,123
|
||||
501,oshawott,5,,258,2,6,,1,45,70,0,20,0,4,0,0,0,502,106
|
||||
502,dewott,5,501,258,2,6,,1,45,70,0,20,0,4,0,0,0,503,107
|
||||
503,samurott,5,502,258,2,8,,1,45,70,0,20,0,4,0,0,0,504,108
|
||||
504,patrat,5,,259,3,8,,4,255,70,0,15,0,2,0,0,0,505,
|
||||
505,watchog,5,504,259,3,6,,4,255,70,0,20,0,2,0,0,0,506,
|
||||
506,lillipup,5,,260,3,8,,4,255,70,0,15,0,4,0,0,0,507,
|
||||
507,herdier,5,506,260,4,8,,4,120,70,0,15,0,4,0,0,0,508,
|
||||
508,stoutland,5,507,260,4,8,,4,45,70,0,15,0,4,0,0,0,509,
|
||||
509,purrloin,5,,261,7,8,,4,255,70,0,20,0,2,0,0,0,510,
|
||||
510,liepard,5,509,261,7,8,,4,90,70,0,20,0,2,0,0,0,511,
|
||||
511,pansage,5,,262,5,6,,1,190,70,0,20,0,2,0,0,0,512,136
|
||||
512,simisage,5,511,262,5,6,,1,75,70,0,20,0,2,0,0,0,513,137
|
||||
513,pansear,5,,263,8,6,,1,190,70,0,20,0,2,0,0,0,514,138
|
||||
514,simisear,5,513,263,8,6,,1,75,70,0,20,0,2,0,0,0,515,139
|
||||
515,panpour,5,,264,2,6,,1,190,70,0,20,0,2,0,0,0,516,140
|
||||
516,simipour,5,515,264,2,6,,1,75,70,0,20,0,2,0,0,0,517,141
|
||||
517,munna,5,,265,6,8,,4,190,70,0,10,0,3,0,0,0,518,72
|
||||
518,musharna,5,517,265,6,12,,4,75,70,0,10,0,3,0,0,0,519,73
|
||||
519,pidove,5,,266,4,9,,4,255,70,0,15,0,4,0,0,0,520,
|
||||
520,tranquill,5,519,266,4,9,,4,120,70,0,15,0,4,0,0,0,521,
|
||||
521,unfezant,5,520,266,4,9,,4,45,70,0,15,1,4,0,0,0,522,
|
||||
522,blitzle,5,,267,1,8,,4,190,70,0,20,0,2,0,0,0,523,74
|
||||
523,zebstrika,5,522,267,1,8,,4,75,70,0,20,0,2,0,0,0,524,75
|
||||
524,roggenrola,5,,268,2,7,,4,255,70,0,15,0,4,0,0,0,525,40
|
||||
525,boldore,5,524,268,2,10,,4,120,70,0,15,0,4,0,0,0,526,41
|
||||
526,gigalith,5,525,268,2,10,,4,45,70,0,15,0,4,0,0,0,527,42
|
||||
527,woobat,5,,269,2,9,,4,190,70,0,15,0,2,0,0,0,528,
|
||||
528,swoobat,5,527,269,2,9,,4,45,70,0,15,0,2,0,0,0,529,
|
||||
529,drilbur,5,,270,4,6,,4,120,70,0,20,0,2,0,0,0,530,152
|
||||
530,excadrill,5,529,270,4,12,,4,60,70,0,20,0,2,0,0,0,531,153
|
||||
531,audino,5,,271,6,6,,4,255,70,0,20,0,3,1,0,0,532,185
|
||||
532,timburr,5,,272,4,12,,2,180,70,0,20,0,4,0,0,0,533,101
|
||||
533,gurdurr,5,532,272,4,12,,2,90,70,0,20,0,4,0,0,0,534,102
|
||||
534,conkeldurr,5,533,272,3,12,,2,45,70,0,20,0,4,0,0,0,535,103
|
||||
535,tympole,5,,273,2,3,,4,255,70,0,20,0,4,0,0,0,536,
|
||||
536,palpitoad,5,535,273,2,6,,4,120,70,0,20,0,4,0,0,0,537,
|
||||
537,seismitoad,5,536,273,2,12,,4,45,70,0,20,0,4,0,0,0,538,
|
||||
538,throh,5,,274,8,12,,0,45,70,0,20,0,2,0,0,0,539,
|
||||
539,sawk,5,,275,2,12,,0,45,70,0,20,0,2,0,0,0,540,
|
||||
540,sewaddle,5,,276,10,14,,4,255,70,0,15,0,4,0,0,0,541,124
|
||||
541,swadloon,5,540,276,5,4,,4,120,70,0,15,0,4,0,0,0,542,125
|
||||
542,leavanny,5,541,276,10,12,,4,45,70,0,15,0,4,0,0,0,543,126
|
||||
543,venipede,5,,277,8,14,,4,255,70,0,15,0,4,0,0,0,544,31
|
||||
544,whirlipede,5,543,277,4,1,,4,120,70,0,15,0,4,0,0,0,545,32
|
||||
545,scolipede,5,544,277,8,14,,4,45,70,0,20,0,4,0,0,0,546,33
|
||||
546,cottonee,5,,278,5,1,,4,190,70,0,20,0,2,0,0,0,547,48
|
||||
547,whimsicott,5,546,278,5,12,,4,75,70,0,20,0,2,0,0,0,548,49
|
||||
548,petilil,5,,279,5,5,,8,190,70,0,20,0,2,0,0,0,549,43
|
||||
549,lilligant,5,548,279,5,5,,8,75,70,0,20,0,2,0,0,0,550,44
|
||||
550,basculin,5,,280,5,3,,4,25,70,0,40,0,2,0,0,0,551,
|
||||
551,sandile,5,,281,3,8,,4,180,70,0,20,0,4,0,0,0,552,66
|
||||
552,krokorok,5,551,281,3,8,,4,90,70,0,20,0,4,0,0,0,553,67
|
||||
553,krookodile,5,552,281,8,6,,4,45,70,0,20,0,4,0,0,0,554,68
|
||||
554,darumaka,5,,282,8,12,,4,120,70,0,20,0,4,0,0,0,555,142
|
||||
555,darmanitan,5,554,282,8,8,,4,60,70,0,20,0,4,1,0,0,556,143
|
||||
556,maractus,5,,283,5,5,,4,255,70,0,20,0,2,0,0,0,557,
|
||||
557,dwebble,5,,284,8,14,,4,190,70,0,20,0,2,0,0,0,558,
|
||||
558,crustle,5,557,284,8,14,,4,75,70,0,20,0,2,0,0,0,559,
|
||||
559,scraggy,5,,285,10,6,,4,180,35,0,15,0,2,0,0,0,560,165
|
||||
560,scrafty,5,559,285,8,6,,4,90,70,0,15,0,2,0,0,0,561,166
|
||||
561,sigilyph,5,,286,1,9,,4,45,70,0,20,0,2,0,0,0,562,
|
||||
562,yamask,5,,287,1,4,,4,190,70,0,25,0,2,0,0,0,563,
|
||||
563,cofagrigus,5,562,287,10,5,,4,90,70,0,25,0,2,0,0,0,564,
|
||||
564,tirtouga,5,,288,2,8,,1,45,70,0,30,0,2,0,0,0,565,
|
||||
565,carracosta,5,564,288,2,6,,1,45,70,0,30,0,2,0,0,0,566,
|
||||
566,archen,5,,289,10,9,,1,45,70,0,30,0,2,0,0,0,567,
|
||||
567,archeops,5,566,289,10,9,,1,45,70,0,30,0,2,0,0,0,568,
|
||||
568,trubbish,5,,290,5,12,,4,190,70,0,20,0,2,0,0,0,569,
|
||||
569,garbodor,5,568,290,5,12,,4,60,70,0,20,0,2,0,0,0,570,
|
||||
570,zorua,5,,291,4,8,,1,75,70,0,25,0,4,0,0,0,571,154
|
||||
571,zoroark,5,570,291,4,6,,1,45,70,0,20,0,4,0,0,0,572,155
|
||||
572,minccino,5,,292,4,8,,6,255,70,0,15,0,3,0,0,0,573,96
|
||||
573,cinccino,5,572,292,4,8,,6,60,70,0,15,0,3,0,0,0,574,97
|
||||
574,gothita,5,,293,7,12,,6,200,70,0,20,0,4,0,0,0,575,63
|
||||
575,gothorita,5,574,293,7,12,,6,100,70,0,20,0,4,0,0,0,576,64
|
||||
576,gothitelle,5,575,293,7,12,,6,50,70,0,20,0,4,0,0,0,577,65
|
||||
577,solosis,5,,294,5,1,,4,200,70,0,20,0,4,0,0,0,578,
|
||||
578,duosion,5,577,294,5,1,,4,100,70,0,20,0,4,0,0,0,579,
|
||||
579,reuniclus,5,578,294,5,4,,4,50,70,0,20,0,4,0,0,0,580,
|
||||
580,ducklett,5,,295,2,9,,4,190,70,0,20,0,2,0,0,0,581,
|
||||
581,swanna,5,580,295,9,9,,4,45,70,0,20,0,2,0,0,0,582,
|
||||
582,vanillite,5,,296,9,5,,4,255,70,0,20,0,1,0,0,0,583,
|
||||
583,vanillish,5,582,296,9,5,,4,120,70,0,20,0,1,0,0,0,584,
|
||||
584,vanilluxe,5,583,296,9,11,,4,45,70,0,20,0,1,0,0,0,585,
|
||||
585,deerling,5,,297,6,8,,4,190,70,0,20,0,2,1,0,0,586,
|
||||
586,sawsbuck,5,585,297,3,8,,4,75,70,0,20,0,2,1,0,0,587,
|
||||
587,emolga,5,,298,9,8,,4,200,70,0,20,0,2,0,0,0,588,180
|
||||
588,karrablast,5,,299,2,12,,4,200,70,0,15,0,2,0,0,0,589,
|
||||
589,escavalier,5,588,299,4,4,,4,75,70,0,15,0,2,0,0,0,590,
|
||||
590,foongus,5,,300,9,4,,4,190,70,0,20,0,2,0,0,0,591,
|
||||
591,amoonguss,5,590,300,9,4,,4,75,70,0,20,0,2,0,0,0,592,
|
||||
592,frillish,5,,301,9,10,,4,190,70,0,20,1,2,0,0,0,593,
|
||||
593,jellicent,5,592,301,9,10,,4,60,70,0,20,1,2,0,0,0,594,
|
||||
594,alomomola,5,,302,6,3,,4,75,70,0,40,0,3,0,0,0,595,
|
||||
595,joltik,5,,303,10,14,,4,190,70,0,20,0,2,0,0,0,596,147
|
||||
596,galvantula,5,595,303,10,14,,4,75,70,0,20,0,2,0,0,0,597,148
|
||||
597,ferroseed,5,,304,4,1,,4,255,70,0,20,0,2,0,0,0,598,
|
||||
598,ferrothorn,5,597,304,4,10,,4,90,70,0,20,0,2,0,0,0,599,
|
||||
599,klink,5,,305,4,11,,-1,130,70,0,20,0,4,0,0,0,600,
|
||||
600,klang,5,599,305,4,11,,-1,60,70,0,20,0,4,0,0,0,601,
|
||||
601,klinklang,5,600,305,4,11,,-1,30,70,0,20,0,4,0,0,0,602,
|
||||
602,tynamo,5,,306,9,3,,4,190,70,0,20,0,1,0,0,0,603,
|
||||
603,eelektrik,5,602,306,2,3,,4,60,70,0,20,0,1,0,0,0,604,
|
||||
604,eelektross,5,603,306,2,3,,4,30,70,0,20,0,1,0,0,0,605,
|
||||
605,elgyem,5,,307,2,6,,4,255,70,0,20,0,2,0,0,0,606,
|
||||
606,beheeyem,5,605,307,3,12,,4,90,70,0,20,0,2,0,0,0,607,
|
||||
607,litwick,5,,308,9,5,,4,190,70,0,20,0,4,0,0,0,608,37
|
||||
608,lampent,5,607,308,1,4,,4,90,70,0,20,0,4,0,0,0,609,38
|
||||
609,chandelure,5,608,308,1,4,,4,45,70,0,20,0,4,0,0,0,610,39
|
||||
610,axew,5,,309,5,6,,4,75,35,0,40,0,1,0,0,0,611,144
|
||||
611,fraxure,5,610,309,5,6,,4,60,35,0,40,0,1,0,0,0,612,145
|
||||
612,haxorus,5,611,309,10,6,,4,45,35,0,40,0,1,0,0,0,613,146
|
||||
613,cubchoo,5,,310,9,6,,4,120,70,0,20,0,2,0,0,0,614,104
|
||||
614,beartic,5,613,310,9,8,,4,60,70,0,20,0,2,0,0,0,615,105
|
||||
615,cryogonal,5,,311,2,1,,-1,25,70,0,25,0,2,0,0,0,616,
|
||||
616,shelmet,5,,312,8,1,,4,200,70,0,15,0,2,0,0,0,617,
|
||||
617,accelgor,5,616,312,8,4,,4,75,70,0,15,0,2,0,0,0,618,
|
||||
618,stunfisk,5,,313,3,3,,4,75,70,0,20,0,2,0,0,0,619,
|
||||
619,mienfoo,5,,314,10,6,,4,180,70,0,25,0,4,0,0,0,620,
|
||||
620,mienshao,5,619,314,7,6,,4,45,70,0,25,0,4,0,0,0,621,
|
||||
621,druddigon,5,,315,8,6,,4,45,70,0,30,0,2,0,0,0,622,
|
||||
622,golett,5,,316,5,12,,-1,190,70,0,25,0,2,0,0,0,623,
|
||||
623,golurk,5,622,316,5,12,,-1,90,70,0,25,0,2,0,0,0,624,
|
||||
624,pawniard,5,,317,8,12,,4,120,35,0,20,0,2,0,0,0,625,158
|
||||
625,bisharp,5,624,317,8,12,,4,45,35,0,20,0,2,0,0,0,626,159
|
||||
626,bouffalant,5,,318,3,8,,4,45,70,0,20,0,2,0,0,0,627,
|
||||
627,rufflet,5,,319,9,9,,0,190,70,0,20,0,1,0,0,0,628,169
|
||||
628,braviary,5,627,319,8,9,,0,60,70,0,20,0,1,0,0,0,629,170
|
||||
629,vullaby,5,,320,3,9,,8,190,35,0,20,0,1,0,0,0,630,
|
||||
630,mandibuzz,5,629,320,3,9,,8,60,35,0,20,0,1,0,0,0,631,
|
||||
631,heatmor,5,,321,8,6,,4,90,70,0,20,0,2,0,0,0,632,
|
||||
632,durant,5,,322,4,14,,4,90,70,0,20,0,2,0,0,0,633,
|
||||
633,deino,5,,323,2,8,,4,45,35,0,40,0,1,0,0,0,634,90
|
||||
634,zweilous,5,633,323,2,8,,4,45,35,0,40,0,1,0,0,0,635,91
|
||||
635,hydreigon,5,634,323,2,6,,4,45,35,0,40,0,1,0,0,0,636,92
|
||||
636,larvesta,5,,324,9,14,,4,45,70,0,40,0,1,0,0,0,637,173
|
||||
637,volcarona,5,636,324,9,13,,4,15,70,0,40,0,1,0,0,0,638,174
|
||||
638,cobalion,5,,325,2,8,,-1,3,35,0,80,0,1,0,1,0,639,
|
||||
639,terrakion,5,,326,4,8,,-1,3,35,0,80,0,1,0,1,0,640,191
|
||||
640,virizion,5,,327,5,8,,-1,3,35,0,80,0,1,0,1,0,641,
|
||||
641,tornadus,5,,328,5,4,,0,3,90,0,120,0,1,1,1,0,642,
|
||||
642,thundurus,5,,329,2,4,,0,3,90,0,120,0,1,1,1,0,643,
|
||||
643,reshiram,5,,330,9,9,,-1,3,0,0,120,0,1,0,1,0,644,197
|
||||
644,zekrom,5,,331,1,6,,-1,3,0,0,120,0,1,0,1,0,645,198
|
||||
645,landorus,5,,332,3,4,,0,3,90,0,120,0,1,1,1,0,646,
|
||||
646,kyurem,5,,333,4,6,,-1,3,0,0,120,0,1,1,1,0,647,
|
||||
647,keldeo,5,,334,10,8,,-1,3,35,0,80,0,1,1,0,1,648,
|
||||
648,meloetta,5,,335,9,12,,-1,3,100,0,120,0,1,1,0,1,649,
|
||||
649,genesect,5,,336,7,12,,-1,3,0,0,120,0,1,1,0,1,650,
|
||||
650,chespin,6,,337,5,6,,1,45,70,0,20,0,4,0,0,0,651,
|
||||
651,quilladin,6,650,337,5,6,,1,45,70,0,20,0,4,0,0,0,652,
|
||||
652,chesnaught,6,651,337,5,6,,1,45,70,0,20,0,4,0,0,0,653,
|
||||
653,fennekin,6,,338,8,8,,1,45,70,0,20,0,4,0,0,0,654,
|
||||
654,braixen,6,653,338,8,6,,1,45,70,0,20,0,4,0,0,0,655,
|
||||
655,delphox,6,654,338,8,6,,1,45,70,0,20,0,4,0,0,0,656,
|
||||
656,froakie,6,,339,2,8,,1,45,70,0,20,0,4,0,0,0,657,
|
||||
657,frogadier,6,656,339,2,12,,1,45,70,0,20,0,4,0,0,0,658,
|
||||
658,greninja,6,657,339,2,12,,1,45,70,0,20,0,4,0,0,0,659,
|
||||
659,bunnelby,6,,340,3,6,,4,255,70,0,15,0,2,0,0,0,660,
|
||||
660,diggersby,6,659,340,3,6,,4,127,70,0,15,0,2,0,0,0,661,
|
||||
661,fletchling,6,,341,8,9,,4,255,70,0,15,0,4,0,0,0,662,
|
||||
662,fletchinder,6,661,341,8,9,,4,120,70,0,15,0,4,0,0,0,663,
|
||||
663,talonflame,6,662,341,8,9,,4,45,70,0,15,0,4,0,0,0,664,
|
||||
664,scatterbug,6,,342,1,14,,4,255,70,0,15,0,2,0,0,0,665,
|
||||
665,spewpa,6,664,342,1,5,,4,120,70,0,15,0,2,0,0,0,666,
|
||||
666,vivillon,6,665,342,9,13,,4,45,70,0,15,0,2,0,0,0,667,
|
||||
667,litleo,6,,343,3,8,,7,220,70,0,20,0,4,0,0,0,668,
|
||||
668,pyroar,6,667,343,3,8,,7,65,70,0,20,1,4,0,0,0,669,
|
||||
669,flabebe,6,,344,9,4,,8,225,70,0,20,0,2,0,0,0,670,
|
||||
670,floette,6,669,344,9,4,,8,120,70,0,20,0,2,0,0,0,671,
|
||||
671,florges,6,670,344,9,4,,8,45,70,0,20,0,2,0,0,0,672,
|
||||
672,skiddo,6,,345,3,8,,4,200,70,0,20,0,2,0,0,0,673,
|
||||
673,gogoat,6,672,345,3,8,,4,45,70,0,20,0,2,0,0,0,674,
|
||||
674,pancham,6,,346,9,6,,4,220,70,0,25,0,2,0,0,0,675,
|
||||
675,pangoro,6,674,346,9,12,,4,65,70,0,25,0,2,0,0,0,676,
|
||||
676,furfrou,6,,347,9,8,,4,160,70,0,20,0,2,1,0,0,677,
|
||||
677,espurr,6,,348,4,6,,4,190,70,0,20,0,2,0,0,0,678,
|
||||
678,meowstic,6,677,348,2,6,,4,75,70,0,20,1,2,0,0,0,679,
|
||||
679,honedge,6,,349,3,5,,4,180,70,0,20,0,2,0,0,0,680,
|
||||
680,doublade,6,679,349,3,11,,4,90,70,0,20,0,2,0,0,0,681,
|
||||
681,aegislash,6,680,349,3,5,,4,45,70,0,20,0,2,1,0,0,682,
|
||||
682,spritzee,6,,350,6,4,,4,200,70,0,20,0,2,0,0,0,683,
|
||||
683,aromatisse,6,682,350,6,12,,4,140,70,0,20,0,2,0,0,0,684,
|
||||
684,swirlix,6,,351,9,7,,4,200,70,0,20,0,2,0,0,0,685,
|
||||
685,slurpuff,6,684,351,9,12,,4,140,70,0,20,0,2,0,0,0,686,
|
||||
686,inkay,6,,352,2,10,,4,190,70,0,20,0,2,0,0,0,687,
|
||||
687,malamar,6,686,352,2,5,,4,80,70,0,20,0,2,0,0,0,688,
|
||||
688,binacle,6,,353,3,11,,4,120,70,0,20,0,2,0,0,0,689,
|
||||
689,barbaracle,6,688,353,3,11,,4,45,70,0,20,0,2,0,0,0,690,
|
||||
690,skrelp,6,,354,3,5,,4,225,70,0,20,0,2,0,0,0,691,
|
||||
691,dragalge,6,690,354,3,5,,4,55,70,0,20,0,2,0,0,0,692,
|
||||
692,clauncher,6,,355,2,14,,4,225,70,0,15,0,1,0,0,0,693,
|
||||
693,clawitzer,6,692,355,2,2,,4,55,70,0,15,0,1,0,0,0,694,
|
||||
694,helioptile,6,,356,10,6,,4,190,70,0,20,0,2,0,0,0,695,
|
||||
695,heliolisk,6,694,356,10,6,,4,75,70,0,20,0,2,0,0,0,696,
|
||||
696,tyrunt,6,,357,3,6,,1,45,70,0,30,0,2,0,0,0,697,
|
||||
697,tyrantrum,6,696,357,8,6,,1,45,70,0,30,0,2,0,0,0,698,
|
||||
698,amaura,6,,358,2,8,,1,45,70,0,30,0,2,0,0,0,699,
|
||||
699,aurorus,6,698,358,2,8,,1,45,70,0,30,0,2,0,0,0,700,
|
||||
700,sylveon,6,133,67,6,8,,1,45,70,0,35,0,2,0,0,0,165,
|
||||
701,hawlucha,6,,359,5,12,,4,100,70,0,20,0,2,0,0,0,701,
|
||||
702,dedenne,6,,360,10,6,,4,180,70,0,20,0,2,0,0,0,702,
|
||||
703,carbink,6,,361,4,1,,-1,60,70,0,25,0,1,0,0,0,703,
|
||||
704,goomy,6,,362,7,2,,4,45,35,0,40,0,1,0,0,0,704,
|
||||
705,sliggoo,6,704,362,7,2,,4,45,35,0,40,0,1,0,0,0,705,
|
||||
706,goodra,6,705,362,7,6,,4,45,35,0,40,0,1,0,0,0,706,
|
||||
707,klefki,6,,363,4,1,,4,75,70,0,20,0,3,0,0,0,707,
|
||||
708,phantump,6,,364,3,4,,4,120,70,0,20,0,2,0,0,0,708,
|
||||
709,trevenant,6,708,364,3,10,,4,60,70,0,20,0,2,0,0,0,709,
|
||||
710,pumpkaboo,6,,365,3,1,,4,120,70,0,20,0,2,0,0,0,710,
|
||||
711,gourgeist,6,710,365,3,5,,4,60,70,0,20,0,2,0,0,0,711,
|
||||
712,bergmite,6,,366,2,8,,4,190,70,0,20,0,2,0,0,0,712,
|
||||
713,avalugg,6,712,366,2,8,,4,55,70,0,20,0,2,0,0,0,713,
|
||||
714,noibat,6,,367,7,9,,4,190,70,0,20,0,2,0,0,0,714,
|
||||
715,noivern,6,714,367,7,9,,4,45,70,0,20,0,2,0,0,0,715,
|
||||
716,xerneas,6,,368,2,8,,-1,45,0,0,120,0,1,1,1,0,716,
|
||||
717,yveltal,6,,369,8,9,,-1,45,0,0,120,0,1,0,1,0,717,
|
||||
718,zygarde,6,,370,5,2,,-1,3,0,0,120,0,1,0,1,0,718,
|
||||
719,diancie,6,,371,6,4,,-1,3,70,0,25,0,1,1,0,1,719,
|
||||
720,hoopa,6,,372,7,4,,-1,3,100,0,120,0,1,0,0,1,720,
|
||||
721,volcanion,6,,373,3,8,,-1,3,100,0,120,0,1,0,0,1,721,
|
||||
722,rowlet,7,,374,3,9,,1,45,70,0,15,0,4,0,0,0,722,
|
||||
723,dartrix,7,722,374,3,9,,1,45,70,0,15,0,4,0,0,0,723,
|
||||
724,decidueye,7,723,374,3,9,,1,45,70,0,15,0,4,0,0,0,724,
|
||||
725,litten,7,,375,8,8,,1,45,70,0,15,0,4,0,0,0,725,
|
||||
726,torracat,7,725,375,8,8,,1,45,70,0,15,0,4,0,0,0,726,
|
||||
727,incineroar,7,726,375,8,6,,1,45,70,0,15,0,4,0,0,0,727,
|
||||
728,popplio,7,,376,2,3,,1,45,70,0,15,0,4,0,0,0,728,
|
||||
729,brionne,7,728,376,2,3,,1,45,70,0,15,0,4,0,0,0,729,
|
||||
730,primarina,7,729,376,2,3,,1,45,70,0,15,0,4,0,0,0,730,
|
||||
731,pikipek,7,,377,1,9,,4,255,70,0,15,0,2,0,0,0,731,
|
||||
732,trumbeak,7,731,377,1,9,,4,120,70,0,15,0,2,0,0,0,732,
|
||||
733,toucannon,7,732,377,1,9,,4,45,70,0,15,0,2,0,0,0,733,
|
||||
734,yungoos,7,,378,3,8,,4,255,70,0,15,0,2,0,0,0,734,
|
||||
735,gumshoos,7,734,378,3,8,,4,127,70,0,15,0,2,0,0,0,735,
|
||||
736,grubbin,7,,379,4,14,,4,255,70,0,15,0,2,0,0,0,736,
|
||||
737,charjabug,7,736,379,5,2,,4,120,70,0,15,0,2,0,0,0,737,
|
||||
738,vikavolt,7,737,379,2,14,,4,45,70,0,15,0,2,0,0,0,738,
|
||||
739,crabrawler,7,,380,7,14,,4,225,70,0,20,0,2,0,0,0,739,
|
||||
740,crabominable,7,739,380,9,14,,4,60,70,0,20,0,2,0,0,0,740,
|
||||
741,oricorio,7,,381,8,9,,6,45,70,0,20,0,2,0,0,0,741,
|
||||
742,cutiefly,7,,382,10,14,,4,190,70,0,20,0,2,0,0,0,742,
|
||||
743,ribombee,7,742,382,10,13,,4,75,70,0,20,0,2,0,0,0,743,
|
||||
744,rockruff,7,,383,3,8,,4,190,70,0,15,0,2,0,0,0,744,
|
||||
745,lycanroc,7,744,383,3,8,,4,90,70,0,15,0,2,0,0,0,745,
|
||||
746,wishiwashi,7,,384,2,3,,4,60,70,0,15,0,3,0,0,0,746,
|
||||
747,mareanie,7,,385,2,5,,4,190,70,0,20,0,2,0,0,0,747,
|
||||
748,toxapex,7,747,385,2,10,,4,75,70,0,20,0,2,0,0,0,748,
|
||||
749,mudbray,7,,386,3,8,,4,190,70,0,20,0,2,0,0,0,749,
|
||||
750,mudsdale,7,749,386,3,8,,4,60,70,0,20,0,2,0,0,0,750,
|
||||
751,dewpider,7,,387,5,7,,4,200,70,0,15,0,2,0,0,0,751,
|
||||
752,araquanid,7,751,387,5,14,,4,100,70,0,15,0,2,0,0,0,752,
|
||||
753,fomantis,7,,388,6,6,,4,190,70,0,20,0,2,0,0,0,753,
|
||||
754,lurantis,7,753,388,6,12,,4,75,70,0,20,0,2,0,0,0,754,
|
||||
755,morelull,7,,389,7,5,,4,190,70,0,20,0,2,0,0,0,755,
|
||||
756,shiinotic,7,755,389,7,12,,4,75,70,0,20,0,2,0,0,0,756,
|
||||
757,salandit,7,,390,1,8,,1,120,70,0,20,0,2,0,0,0,757,
|
||||
758,salazzle,7,757,390,1,8,,8,45,70,0,20,0,2,0,0,0,758,
|
||||
759,stufful,7,,391,6,8,,4,140,70,0,15,0,2,0,0,0,759,
|
||||
760,bewear,7,759,391,6,6,,4,70,70,0,15,0,2,0,0,0,760,
|
||||
761,bounsweet,7,,392,7,7,,8,235,70,0,20,0,4,0,0,0,761,
|
||||
762,steenee,7,761,392,7,12,,8,120,70,0,20,0,4,0,0,0,762,
|
||||
763,tsareena,7,762,392,7,12,,8,45,70,0,20,0,4,0,0,0,763,
|
||||
764,comfey,7,,393,5,1,,6,60,70,0,20,0,3,0,0,0,764,
|
||||
765,oranguru,7,,394,9,12,,4,45,70,0,20,0,1,0,0,0,765,
|
||||
766,passimian,7,,395,9,6,,4,45,70,0,20,0,1,0,0,0,766,
|
||||
767,wimpod,7,,396,4,10,,4,90,70,0,20,0,2,0,0,0,767,
|
||||
768,golisopod,7,767,396,4,12,,4,45,70,0,20,0,2,0,0,0,768,
|
||||
769,sandygast,7,,397,3,2,,4,140,70,0,15,0,2,0,0,0,769,
|
||||
770,palossand,7,769,397,3,2,,4,60,70,0,15,0,2,0,0,0,770,
|
||||
771,pyukumuku,7,,398,1,2,,4,60,70,0,15,0,3,0,0,0,771,
|
||||
772,type-null,7,,399,4,8,,-1,3,0,0,120,0,1,0,0,0,772,
|
||||
773,silvally,7,772,399,4,8,,-1,3,0,0,120,0,1,0,0,0,773,
|
||||
774,minior,7,,400,3,1,,-1,30,70,0,25,0,4,0,0,0,774,
|
||||
775,komala,7,,401,2,12,,4,45,70,0,20,0,1,0,0,0,775,
|
||||
776,turtonator,7,,402,8,6,,4,70,70,0,20,0,2,0,0,0,776,
|
||||
777,togedemaru,7,,403,4,6,,4,180,70,0,10,0,2,0,0,0,777,
|
||||
778,mimikyu,7,,404,10,2,,4,45,70,0,20,0,2,0,0,0,778,
|
||||
779,bruxish,7,,405,6,3,,4,80,70,0,15,0,2,0,0,0,779,
|
||||
780,drampa,7,,406,9,2,,4,70,70,0,20,0,2,0,0,0,780,
|
||||
781,dhelmise,7,,407,5,5,,-1,25,70,0,25,0,2,0,0,0,781,
|
||||
782,jangmo-o,7,,408,4,8,,4,45,70,0,40,0,1,0,0,0,782,
|
||||
783,hakamo-o,7,782,408,4,6,,4,45,70,0,40,0,1,0,0,0,783,
|
||||
784,kommo-o,7,783,408,4,6,,4,45,70,0,40,0,1,0,0,0,784,
|
||||
785,tapu-koko,7,,409,10,4,,-1,3,70,0,15,0,1,0,1,0,785,
|
||||
786,tapu-lele,7,,410,6,4,,-1,3,70,0,15,0,1,0,1,0,786,
|
||||
787,tapu-bulu,7,,411,8,4,,-1,3,70,0,15,0,1,0,1,0,787,
|
||||
788,tapu-fini,7,,412,7,4,,-1,3,70,0,15,0,1,0,1,0,788,
|
||||
789,cosmog,7,,413,2,1,,-1,45,0,0,120,0,1,0,1,0,789,
|
||||
790,cosmoem,7,789,413,2,1,,-1,45,0,0,120,0,1,0,1,0,790,
|
||||
791,solgaleo,7,790,413,9,8,,-1,45,0,0,120,0,1,0,1,0,791,
|
||||
792,lunala,7,790,413,7,9,,-1,45,0,0,120,0,1,0,1,0,792,
|
||||
793,nihilego,7,,414,9,10,,-1,45,0,0,120,0,1,0,0,0,793,
|
||||
794,buzzwole,7,,415,8,10,,-1,45,0,0,120,0,1,0,0,0,794,
|
||||
795,pheromosa,7,,416,9,12,,-1,45,0,0,120,0,1,0,0,0,795,
|
||||
796,xurkitree,7,,417,1,6,,-1,45,0,0,120,0,1,0,0,0,796,
|
||||
797,celesteela,7,,418,5,12,,-1,45,0,0,120,0,1,0,0,0,797,
|
||||
798,kartana,7,,419,9,12,,-1,45,0,0,120,0,1,0,0,0,798,
|
||||
799,guzzlord,7,,420,1,6,,-1,45,0,0,120,0,1,0,0,0,799,
|
||||
800,necrozma,7,,421,1,4,,-1,255,0,0,120,0,1,0,1,0,800,
|
||||
801,magearna,7,,422,4,12,,-1,3,0,0,120,0,1,0,0,1,801,
|
||||
802,marshadow,7,,423,4,12,,-1,3,0,0,120,0,1,0,0,1,802,
|
||||
803,poipole,7,,424,7,6,,-1,45,0,0,120,0,1,0,0,0,803,
|
||||
804,naganadel,7,803,424,7,9,,-1,45,0,0,120,0,1,0,0,0,804,
|
||||
805,stakataka,7,,425,4,8,,-1,30,0,0,120,0,1,0,0,0,805,
|
||||
806,blacephalon,7,,426,9,12,,-1,30,0,0,120,0,1,0,0,0,806,
|
||||
807,zeraora,7,,427,10,12,,-1,3,0,0,120,0,1,0,0,1,807,
|
||||
810,grookey,8,,,5,6,,,45,50,0,20,,,0,0,0,,
|
||||
811,thwackey,8,,,5,6,,,45,50,0,20,,,0,0,0,,
|
||||
812,rillaboom,8,,,5,12,,,45,50,0,20,,,0,0,0,,
|
||||
813,scorbunny,8,,,9,6,,,45,50,0,20,,,0,0,0,,
|
||||
814,raboot,8,,,4,6,,,45,50,0,20,,,0,0,0,,
|
||||
815,cinderace,8,,,9,6,,,45,50,0,20,,,0,0,0,,
|
||||
816,sobble,8,,,2,8,,,45,50,0,20,,,0,0,0,,
|
||||
817,drizzile,8,,,2,6,,,45,50,0,20,,,0,0,0,,
|
||||
818,inteleon,8,,,2,6,,,45,50,0,20,,,0,0,0,,
|
||||
819,skwovet,8,,,3,6,,,255,50,0,20,,,0,0,0,,
|
||||
820,greedent,8,,,3,6,,,90,50,0,20,,,0,0,0,,
|
||||
821,rookidee,8,,,2,9,,,255,50,0,15,,,0,0,0,,
|
||||
822,corvisquire,8,,,2,9,,,120,50,0,15,,,0,0,0,,
|
||||
823,corviknight,8,,,7,9,,,45,50,0,15,,,0,0,0,,
|
||||
824,blipbug,8,,,2,14,,,255,50,0,15,,,0,0,0,,
|
||||
825,dottler,8,,,10,14,,,120,50,0,15,,,0,0,0,,
|
||||
826,orbeetle,8,,,8,9,,,45,50,0,15,,,0,0,0,,
|
||||
827,nickit,8,,,3,8,,,255,50,0,15,,,0,0,0,,
|
||||
828,thievul,8,,,3,8,,,127,50,0,15,,,0,0,0,,
|
||||
829,gossifleur,8,,,5,5,,,190,50,0,20,,,0,0,0,,
|
||||
830,eldegoss,8,,,5,5,,,75,50,0,20,,,0,0,0,,
|
||||
831,wooloo,8,,,9,8,,,255,50,0,15,,,0,0,0,,
|
||||
832,dubwool,8,,,9,8,,,127,50,0,15,,,0,0,0,,
|
||||
833,chewtle,8,,,5,8,,,255,50,0,20,,,0,0,0,,
|
||||
834,drednaw,8,,,5,8,,,75,50,0,20,,,0,0,0,,
|
||||
835,yamper,8,,,10,8,,,255,50,0,20,,,0,0,0,,
|
||||
836,boltund,8,,,10,8,,,45,50,0,20,,,0,0,0,,
|
||||
837,rolycoly,8,,,1,1,,,255,50,0,15,,,0,0,0,,
|
||||
838,carkol,8,,,1,7,,,120,50,0,15,,,0,0,0,,
|
||||
839,coalossal,8,,,1,12,,,45,50,0,15,,,0,0,0,,
|
||||
840,applin,8,,,5,2,,,255,50,0,20,,,0,0,0,,
|
||||
841,flapple,8,,,5,9,,,45,50,0,20,,,0,0,0,,
|
||||
842,appletun,8,,,5,8,,,45,50,0,20,,,0,0,0,,
|
||||
843,silicobra,8,,,5,2,,,255,50,0,20,,,0,0,0,,
|
||||
844,sandaconda,8,,,5,2,,,120,50,0,20,,,0,0,0,,
|
||||
845,cramorant,8,,,2,9,,,45,50,0,20,,,0,0,0,,
|
||||
846,arrokuda,8,,,3,3,,,255,50,0,20,,,0,0,0,,
|
||||
847,barraskewda,8,,,3,3,,,60,50,0,20,,,0,0,0,,
|
||||
848,toxel,8,,,7,6,,,75,50,0,25,,,0,0,0,,
|
||||
849,toxtricity,8,,,7,6,,,45,50,0,25,,,0,0,0,,
|
||||
850,sizzlipede,8,,,8,10,,,190,50,0,20,,,0,0,0,,
|
||||
851,centiskorch,8,,,8,10,,,75,50,0,20,,,0,0,0,,
|
||||
852,clobbopus,8,,,3,10,,,180,50,0,25,,,0,0,0,,
|
||||
853,grapploct,8,,,2,10,,,45,50,0,25,,,0,0,0,,
|
||||
854,sinistea,8,,,7,1,,,120,50,0,20,,,0,0,0,,
|
||||
855,polteageist,8,,,7,1,,,60,50,0,20,,,0,0,0,,
|
||||
856,hatenna,8,,,6,7,,,235,50,0,20,,,0,0,0,,
|
||||
857,hattrem,8,,,6,12,,,120,50,0,20,,,0,0,0,,
|
||||
858,hatterene,8,,,6,5,,,45,50,0,20,,,0,0,0,,
|
||||
859,impidimp,8,,,6,12,,,255,50,0,20,,,0,0,0,,
|
||||
860,morgrem,8,,,6,12,,,120,50,0,20,,,0,0,0,,
|
||||
861,grimmsnarl,8,,,7,12,,,45,50,0,20,,,0,0,0,,
|
||||
862,obstagoon,8,,,4,6,,,45,50,0,15,,,0,0,0,,
|
||||
863,perrserker,8,,,3,6,,,90,50,0,20,,,0,0,0,,
|
||||
864,cursola,8,,,9,4,,,30,50,0,20,,,0,0,0,,
|
||||
865,sirfetch,8,,,9,9,,,45,50,0,20,,,0,0,0,,
|
||||
866,mr,8,,,7,12,,,45,50,0,25,,,0,0,0,,
|
||||
867,runerigus,8,,,4,5,,,90,50,0,25,,,0,0,0,,
|
||||
868,milcery,8,,,9,1,,,200,50,0,20,,,0,0,0,,
|
||||
869,alcremie,8,,,9,5,,,100,50,0,20,,,0,0,0,,
|
||||
870,falinks,8,,,10,11,,,45,50,0,25,,,0,0,0,,
|
||||
871,pincurchin,8,,,7,10,,,75,50,0,20,,,0,0,0,,
|
||||
872,snom,8,,,9,2,,,190,50,0,20,,,0,0,0,,
|
||||
873,frosmoth,8,,,9,13,,,75,50,0,20,,,0,0,0,,
|
||||
874,stonjourner,8,,,4,7,,,60,50,0,25,,,0,0,0,,
|
||||
875,eiscue,8,,,2,6,,,60,50,0,25,,,0,0,0,,
|
||||
876,indeedee,8,,,7,6,,,30,140,0,40,,,0,0,0,,
|
||||
877,morpeko,8,,,10,12,,,180,50,0,10,,,0,0,0,,
|
||||
878,cufant,8,,,10,8,,,190,50,0,25,,,0,0,0,,
|
||||
879,copperajah,8,,,5,8,,,90,50,0,25,,,0,0,0,,
|
||||
880,dracozolt,8,,,5,6,,,45,50,0,35,,,0,0,0,,
|
||||
881,arctozolt,8,,,2,6,,,45,50,0,35,,,0,0,0,,
|
||||
882,dracovish,8,,,5,7,,,45,50,0,35,,,0,0,0,,
|
||||
883,arctovish,8,,,2,3,,,45,50,0,35,,,0,0,0,,
|
||||
884,duraludon,8,,,9,6,,,45,50,0,30,,,0,0,0,,
|
||||
885,dreepy,8,,,5,2,,,45,50,0,40,,,0,0,0,,
|
||||
886,drakloak,8,,,5,4,,,45,50,0,40,,,0,0,0,,
|
||||
887,dragapult,8,,,5,6,,,45,50,0,40,,,0,0,0,,
|
||||
888,zacian,8,,,2,8,,,10,0,0,120,,,0,0,0,,
|
||||
889,zamazenta,8,,,8,8,,,10,0,0,120,,,0,0,0,,
|
||||
890,eternatus,8,,,7,9,,,255,0,0,120,,,0,0,0,,
|
||||
891,kubfu,8,,,4,0,,,3,50,0,120,,,0,0,0,,
|
||||
892,urshifu,8,,,4,0,,,3,50,0,120,,,0,0,0,,
|
||||
893,zarude,8,,,5,0,,,3,,0,120,,,0,0,0,,
|
||||
20000,regieleki,8,,,,0,,,,,0,,,,0,0,0,,
|
|
6289
Resources/scripts/data/scraper_go/out/pokemon_stats.csv
Normal file
6289
Resources/scripts/data/scraper_go/out/pokemon_stats.csv
Normal file
File diff suppressed because it is too large
Load diff
41
Resources/scripts/data/scraper_go/pkg/bulbapedia/model.go
Normal file
41
Resources/scripts/data/scraper_go/pkg/bulbapedia/model.go
Normal file
|
@ -0,0 +1,41 @@
|
|||
package bulbapedia
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"os"
|
||||
|
||||
"github.com/rs/zerolog/log"
|
||||
)
|
||||
|
||||
type Scrapper interface {
|
||||
init()
|
||||
read(path string) error
|
||||
scrape(name string)
|
||||
write(path string) error
|
||||
}
|
||||
|
||||
func Scrape(s Scrapper, source, newPokemon, out string) {
|
||||
s.init()
|
||||
s.read(source)
|
||||
|
||||
sl := fetchList(newPokemon)
|
||||
for _, n := range sl {
|
||||
s.scrape(n)
|
||||
}
|
||||
s.write(out)
|
||||
}
|
||||
|
||||
func fetchList(path string) []string {
|
||||
file, err := os.Open(path)
|
||||
if err != nil {
|
||||
log.Fatal().Err(err).Str("path", path).Msg("Failed to open file @")
|
||||
}
|
||||
defer file.Close()
|
||||
|
||||
sl := []string{}
|
||||
scanner := bufio.NewScanner(file)
|
||||
for scanner.Scan() {
|
||||
sl = append(sl, scanner.Text())
|
||||
}
|
||||
return sl
|
||||
}
|
119
Resources/scripts/data/scraper_go/pkg/bulbapedia/pokemon.go
Normal file
119
Resources/scripts/data/scraper_go/pkg/bulbapedia/pokemon.go
Normal file
|
@ -0,0 +1,119 @@
|
|||
package bulbapedia
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"encoding/csv"
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"os"
|
||||
"sort"
|
||||
"strconv"
|
||||
|
||||
"github.com/rs/zerolog/log"
|
||||
)
|
||||
|
||||
type Pokemon struct {
|
||||
ID int64 `json:"id" bulbapedia:"ndex"`
|
||||
Species string `json:"species_id" bulbapedia:"ndex"`
|
||||
Identifier string `json:"identifier" bulbapedia:"name,lower"`
|
||||
Height string `json:"height" bulbapedia:"height-m,round"`
|
||||
Weight string `json:"weight" bulbapedia:"weight-kg,round"`
|
||||
Basexp string `json:"expyield" bulbapedia:"expyield"`
|
||||
Order string `json:"order"`
|
||||
Isdefault string `json:"is_default" default:"1"`
|
||||
}
|
||||
|
||||
type PokemonScrapper struct {
|
||||
Data map[int64]Pokemon
|
||||
}
|
||||
|
||||
func (ps *PokemonScrapper) init() {
|
||||
ps.Data = make(map[int64]Pokemon)
|
||||
}
|
||||
|
||||
func (ps *PokemonScrapper) read(path string) error {
|
||||
var err error
|
||||
file, err := os.Open(path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer file.Close()
|
||||
reader := csv.NewReader(file)
|
||||
reader.Read()
|
||||
for {
|
||||
row, err := reader.Read()
|
||||
if err != nil {
|
||||
if err == io.EOF {
|
||||
break
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
p := Pokemon{
|
||||
Identifier: row[1],
|
||||
Species: row[2],
|
||||
Height: row[3],
|
||||
Weight: row[4],
|
||||
Basexp: row[5],
|
||||
Order: row[6],
|
||||
Isdefault: row[7],
|
||||
}
|
||||
if row[0] == "" {
|
||||
p.ID = ErrID
|
||||
} else {
|
||||
if p.ID, err = strconv.ParseInt(row[0], 10, 64); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
ps.Data[p.ID] = p
|
||||
log.Info().Str("pokemon_id", p.Identifier).Msg("Added pokemon")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (ps *PokemonScrapper) scrape(name string) {
|
||||
fmt.Printf("Scrapping for %s\n", name)
|
||||
resp, err := http.Get("https://bulbapedia.bulbagarden.net/w/api.php?action=parse&page=" + name + "&prop=wikitext&format=json")
|
||||
if err != nil {
|
||||
log.Fatal().Err(err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
body, err := ioutil.ReadAll(resp.Body)
|
||||
pokemon := &Pokemon{}
|
||||
if err := Unmarshal(body, pokemon); err != nil {
|
||||
|
||||
}
|
||||
pokemon.Species = strconv.Itoa(int(pokemon.ID))
|
||||
if _, ok := ps.Data[pokemon.ID]; ok {
|
||||
fmt.Printf("Updating old pokemon %s [%d]\n", pokemon.Identifier, pokemon.ID)
|
||||
}
|
||||
ps.Data[pokemon.ID] = *pokemon
|
||||
}
|
||||
|
||||
func (ps *PokemonScrapper) write(path string) error {
|
||||
file, err := os.Create(path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer file.Close()
|
||||
|
||||
w := bufio.NewWriter(file)
|
||||
fmt.Fprintln(w, "id,identifier,species_id,height,weight,base_experience,order,is_default")
|
||||
|
||||
keys := make([]int, 0, len(ps.Data))
|
||||
for k := range ps.Data {
|
||||
keys = append(keys, int(k))
|
||||
}
|
||||
sort.Ints(keys)
|
||||
|
||||
for _, k := range keys {
|
||||
pokemon := ps.Data[int64(k)]
|
||||
fmt.Fprintf(w, "%d,%s,%s,%s,%s,%s,%s,%s\n", pokemon.ID, pokemon.Identifier, pokemon.Species, pokemon.Height, pokemon.Weight, pokemon.Basexp, pokemon.Order, pokemon.Isdefault)
|
||||
}
|
||||
|
||||
return w.Flush()
|
||||
}
|
145
Resources/scripts/data/scraper_go/pkg/bulbapedia/species.go
Normal file
145
Resources/scripts/data/scraper_go/pkg/bulbapedia/species.go
Normal file
|
@ -0,0 +1,145 @@
|
|||
package bulbapedia
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"sort"
|
||||
"strconv"
|
||||
|
||||
"github.com/rs/zerolog/log"
|
||||
|
||||
"encoding/csv"
|
||||
|
||||
"github.com/anaskhan96/soup"
|
||||
)
|
||||
|
||||
type Species struct {
|
||||
ID int64 `json:"id" bulbapedia:"ndex"`
|
||||
Identifier string `json:"identifier" bulbapedia:"name,lower"`
|
||||
GenerationID string `json:"generation_id" bulbapedia:"generation"`
|
||||
EvolvesFromSpeciesID string `json:"evolves_from_species_id"`
|
||||
EvolutionChainID string `json:"evolution_chain_id"`
|
||||
ColorID string `json:"color_id" bulbapedia:"color,color"`
|
||||
ShapeID string `json:"shape_id" bulbapedia:"body"`
|
||||
HabitatID string `json:"habitat_id"`
|
||||
GenderRate string `json:"gender_rate"`
|
||||
CaptureRate string `json:"capture_rate" bulbapedia:"catchrate"`
|
||||
BaseHappiness string `json:"base_happiness" bulbapedia:"friendship"`
|
||||
IsBaby string `json:"is_baby"`
|
||||
HatchCounter string `json:"hatch_counter" bulbapedia:"eggcycles"`
|
||||
HasGenderDifference string `json:"has_gender_differences"`
|
||||
GrowthRateID string `json:"growth_rate_id"`
|
||||
FormsSwitchable string `json:"forms_switchable" default:"0"`
|
||||
IsLegendary string `json:"is_legendary" default:"0"`
|
||||
IsMythical string `json:"is_mythical" default:"0"`
|
||||
Order string `json:"order"`
|
||||
ConquestOrder string `json:"conquest_order"`
|
||||
}
|
||||
|
||||
type SpeciesScrapper map[int64]Species
|
||||
|
||||
func (s *SpeciesScrapper) init() {
|
||||
*s = make(map[int64]Species)
|
||||
}
|
||||
|
||||
func (s SpeciesScrapper) read(path string) error {
|
||||
var err error
|
||||
file, err := os.Open(path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer file.Close()
|
||||
// PokemonSpecies
|
||||
reader := csv.NewReader(file)
|
||||
reader.Read()
|
||||
for {
|
||||
row, err := reader.Read()
|
||||
if err != nil {
|
||||
if err == io.EOF {
|
||||
break
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
p := Species{
|
||||
Identifier: row[1],
|
||||
GenerationID: row[2],
|
||||
EvolvesFromSpeciesID: row[3],
|
||||
EvolutionChainID: row[4],
|
||||
ColorID: row[5],
|
||||
ShapeID: row[6],
|
||||
HabitatID: row[7],
|
||||
GenderRate: row[8],
|
||||
CaptureRate: row[9],
|
||||
BaseHappiness: row[10],
|
||||
IsBaby: row[11],
|
||||
HatchCounter: row[12],
|
||||
HasGenderDifference: row[13],
|
||||
GrowthRateID: row[14],
|
||||
FormsSwitchable: row[15],
|
||||
IsLegendary: row[16],
|
||||
IsMythical: row[17],
|
||||
Order: row[18],
|
||||
ConquestOrder: row[19],
|
||||
}
|
||||
if row[0] == "" {
|
||||
p.ID = ErrID
|
||||
} else {
|
||||
if p.ID, err = strconv.ParseInt(row[0], 10, 64); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
s[p.ID] = p
|
||||
log.Info().Str("species_id", p.Identifier).Msg("Added species")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s SpeciesScrapper) scrape(name string) {
|
||||
log.Info().Str("species_name", name).Msg("Scrapping")
|
||||
resp, err := soup.Get("https://bulbapedia.bulbagarden.net/w/index.php?title=" + name + "&action=edit")
|
||||
if err != nil {
|
||||
log.Error().Str("species_name", name).Err(err).Msg("Failed to scrape")
|
||||
}
|
||||
species := &Species{}
|
||||
if err := Unmarshal([]byte(soup.HTMLParse(resp).Find("textarea", "id", "wpTextbox1").Text()), species); err != nil {
|
||||
log.Error().Err(err).Msg("Failed to unmarshal")
|
||||
}
|
||||
if species.ID >= 888 && species.ID <= 892 {
|
||||
species.IsLegendary = "1"
|
||||
}
|
||||
|
||||
if _, ok := s[species.ID]; ok {
|
||||
log.Info().Str("species_identifier", species.Identifier).
|
||||
Int64("species_id", species.ID).Msg("Updating old species")
|
||||
}
|
||||
s[species.ID] = *species
|
||||
}
|
||||
|
||||
func (s SpeciesScrapper) write(path string) error {
|
||||
file, err := os.Create(path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer file.Close()
|
||||
|
||||
w := bufio.NewWriter(file)
|
||||
fmt.Fprintln(w, "id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id,shape_id,habitat_id,gender_rate,capture_rate,base_happiness,is_baby,hatch_counter,has_gender_differences,growth_rate_id,forms_switchable,is_legendary,is_mythical,order,conquest_order")
|
||||
|
||||
keys := make([]int, 0, len(s))
|
||||
for k := range s {
|
||||
keys = append(keys, int(k))
|
||||
}
|
||||
sort.Ints(keys)
|
||||
|
||||
for _, k := range keys {
|
||||
pokemon := s[int64(k)]
|
||||
fmt.Fprintf(w, "%d,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n", pokemon.ID, pokemon.Identifier, pokemon.GenerationID, pokemon.EvolvesFromSpeciesID, pokemon.EvolutionChainID, pokemon.ColorID, pokemon.ShapeID, pokemon.HabitatID, pokemon.GenderRate, pokemon.CaptureRate, pokemon.BaseHappiness, pokemon.IsBaby, pokemon.HatchCounter, pokemon.HasGenderDifference, pokemon.GrowthRateID, pokemon.FormsSwitchable, pokemon.IsLegendary, pokemon.IsMythical, pokemon.Order, pokemon.ConquestOrder)
|
||||
}
|
||||
|
||||
return w.Flush()
|
||||
}
|
135
Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal.go
Normal file
135
Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal.go
Normal file
|
@ -0,0 +1,135 @@
|
|||
package bulbapedia
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"reflect"
|
||||
"regexp"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/rs/zerolog/log"
|
||||
)
|
||||
|
||||
const (
|
||||
ErrID int64 = 20000
|
||||
)
|
||||
|
||||
var Color = map[string]string{}
|
||||
|
||||
func getColor(color string) string {
|
||||
resp, err := http.Get("https://pokeapi.co/api/v2/pokemon-color/" + strings.ToLower(color))
|
||||
if err != nil {
|
||||
log.Fatal().
|
||||
Str("color", color).
|
||||
Err(err).
|
||||
Msg("Failed to fetch color")
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
res := map[string]interface{}{}
|
||||
err = json.NewDecoder(resp.Body).Decode(&res)
|
||||
if err != nil {
|
||||
log.Fatal().
|
||||
Err(err).
|
||||
Msg("Failed to unmarshal JSON color response")
|
||||
}
|
||||
return strconv.Itoa(int(res["id"].(float64)))
|
||||
}
|
||||
|
||||
func init() {
|
||||
for _, color := range []string{
|
||||
"black",
|
||||
"blue",
|
||||
"brown",
|
||||
"gray",
|
||||
"green",
|
||||
"pink",
|
||||
"purple",
|
||||
"red",
|
||||
"white",
|
||||
"yellow",
|
||||
} {
|
||||
Color[color] = getColor(color)
|
||||
}
|
||||
}
|
||||
|
||||
func Unmarshal(data []byte, v interface{}) error {
|
||||
var st reflect.Type
|
||||
var ps reflect.Value
|
||||
switch rv := v.(type) {
|
||||
case *Species:
|
||||
st = reflect.TypeOf(*rv)
|
||||
ps = reflect.Indirect(reflect.ValueOf(rv))
|
||||
break
|
||||
case *Pokemon:
|
||||
st = reflect.TypeOf(*rv)
|
||||
ps = reflect.Indirect(reflect.ValueOf(rv))
|
||||
break
|
||||
}
|
||||
|
||||
for i := 0; i < st.NumField(); i++ {
|
||||
field := st.Field(i)
|
||||
|
||||
// bulbapedia
|
||||
if alias, ok := field.Tag.Lookup("bulbapedia"); ok {
|
||||
// Splits alias into bulbapedia:"[<key>][,<flag1>[,<flag2>]]"
|
||||
// round : converts float to int, rounds it and returns value as string
|
||||
// lower : lowercases string
|
||||
// color : converts to color id
|
||||
aliases := strings.Split(alias, ",")
|
||||
|
||||
switch field.Type.Kind() {
|
||||
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
||||
matches := regexp.MustCompile(`\|` + aliases[0] + `=(\d*)`).FindSubmatch(data)
|
||||
if len(matches) < 1 || string(matches[1]) == "" {
|
||||
ps.FieldByName(field.Name).SetInt(ErrID)
|
||||
break
|
||||
}
|
||||
res, err := strconv.ParseInt(string(matches[1]), 10, 64)
|
||||
if err != nil {
|
||||
ps.FieldByName(field.Name).SetInt(ErrID)
|
||||
break
|
||||
}
|
||||
ps.FieldByName(field.Name).SetInt(res)
|
||||
break
|
||||
default:
|
||||
matches := regexp.MustCompile(`\|` + aliases[0] + `=([^|\\n}]*)`).FindSubmatch(data)
|
||||
if len(matches) < 1 {
|
||||
// default values (only for string structs)
|
||||
if alias, ok := field.Tag.Lookup("default"); ok {
|
||||
ps.FieldByName(field.Name).SetString(alias)
|
||||
} else {
|
||||
ps.FieldByName(field.Name).SetString("")
|
||||
}
|
||||
break
|
||||
}
|
||||
res := strings.TrimSpace(string(matches[1]))
|
||||
for _, al := range aliases {
|
||||
switch al {
|
||||
case "lower":
|
||||
res = strings.ToLower(res)
|
||||
break
|
||||
case "color":
|
||||
res = Color[strings.ToLower(res)]
|
||||
break
|
||||
case "round":
|
||||
round, err := strconv.ParseFloat(string(matches[1]), 64)
|
||||
if err != nil {
|
||||
res = ""
|
||||
}
|
||||
res = strconv.Itoa(int(round * 10))
|
||||
break
|
||||
}
|
||||
}
|
||||
ps.FieldByName(field.Name).SetString(res)
|
||||
break
|
||||
}
|
||||
} else {
|
||||
// Non bulbapedia tags
|
||||
if alias, ok := field.Tag.Lookup("default"); ok {
|
||||
ps.FieldByName(field.Name).SetString(alias)
|
||||
}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
package bulbapedia
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
"github.com/anaskhan96/soup"
|
||||
)
|
||||
|
||||
func TestPokemonUnmarshal(t *testing.T) {
|
||||
v := &Pokemon{}
|
||||
resp, _ := http.Get("https://bulbapedia.bulbagarden.net/w/api.php?action=parse&page=Rolycoly_(Pok%C3%A9mon)&prop=wikitext&format=json")
|
||||
body, _ := ioutil.ReadAll(resp.Body)
|
||||
Unmarshal(body, v)
|
||||
fmt.Printf("%+v\n", v)
|
||||
}
|
||||
|
||||
func TestSpeciesUnmarshal(t *testing.T) {
|
||||
v := &Species{}
|
||||
resp, _ := soup.Get("https://bulbapedia.bulbagarden.net/w/index.php?title=Rolycoly_(Pok%C3%A9mon)&action=edit")
|
||||
body := []byte(soup.HTMLParse(resp).Find("textarea", "id", "wpTextbox1").Text())
|
||||
Unmarshal(body, v)
|
||||
fmt.Printf("%+v\n", v)
|
||||
}
|
89
Resources/scripts/data/scraper_node/new_pokemons.js
Normal file
89
Resources/scripts/data/scraper_node/new_pokemons.js
Normal file
|
@ -0,0 +1,89 @@
|
|||
module.exports.new_pokemons = [
|
||||
"Alcremie",
|
||||
"Appletun",
|
||||
"Applin",
|
||||
"Arctovish",
|
||||
"Arctozolt",
|
||||
"Arrokuda",
|
||||
"Barraskewda",
|
||||
"Blipbug",
|
||||
"Boltund",
|
||||
"Calyrex",
|
||||
"Carkol",
|
||||
"Centiskorch",
|
||||
"Chewtle",
|
||||
"Cinderace",
|
||||
"Clobbopus",
|
||||
"Coalossal",
|
||||
"Copperajah",
|
||||
"Corviknight",
|
||||
"Corvisquire",
|
||||
"Cramorant",
|
||||
"Cufant",
|
||||
"Cursola",
|
||||
"Dottler",
|
||||
"Dracovish",
|
||||
"Dracozolt",
|
||||
"Dragapult",
|
||||
"Drakloak",
|
||||
"Drednaw",
|
||||
"Dreepy",
|
||||
"Drizzile",
|
||||
"Dubwool",
|
||||
"Duraludon",
|
||||
"Eiscue",
|
||||
"Eldegoss",
|
||||
"Eternatus",
|
||||
"Falinks",
|
||||
"Flapple",
|
||||
"Frosmoth",
|
||||
"Gossifleur",
|
||||
"Grapploct",
|
||||
"Greedent",
|
||||
"Grimmsnarl",
|
||||
"Grookey",
|
||||
"Hatenna",
|
||||
"Hatterene",
|
||||
"Hattrem",
|
||||
"Impidimp",
|
||||
"Indeedee",
|
||||
"Inteleon",
|
||||
"Kubfu",
|
||||
"Milcery",
|
||||
"Morgrem",
|
||||
"Morpeko",
|
||||
"Mr._Rime",
|
||||
"Nickit",
|
||||
"Obstagoon",
|
||||
"Orbeetle",
|
||||
"Perrserker",
|
||||
"Pincurchin",
|
||||
"Polteageist",
|
||||
"Raboot",
|
||||
"Regidrago",
|
||||
"Regieleki",
|
||||
"Rillaboom",
|
||||
"Rolycoly",
|
||||
"Rookidee",
|
||||
"Runerigus",
|
||||
"Sandaconda",
|
||||
"Scorbunny",
|
||||
"Silicobra",
|
||||
"Sinistea",
|
||||
"Sirfetch%27d",
|
||||
"Sizzlipede",
|
||||
"Skwovet",
|
||||
"Snom",
|
||||
"Sobble",
|
||||
"Stonjourner",
|
||||
"Thievul",
|
||||
"Thwackey",
|
||||
"Toxel",
|
||||
"Toxtricity",
|
||||
"Urshifu",
|
||||
"Wooloo",
|
||||
"Yamper",
|
||||
"Zacian",
|
||||
"Zamazenta",
|
||||
"Zarude"
|
||||
]
|
224
Resources/scripts/data/scraper_node/package-lock.json
generated
Normal file
224
Resources/scripts/data/scraper_node/package-lock.json
generated
Normal file
|
@ -0,0 +1,224 @@
|
|||
{
|
||||
"requires": true,
|
||||
"lockfileVersion": 1,
|
||||
"dependencies": {
|
||||
"@sindresorhus/is": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-3.1.0.tgz",
|
||||
"integrity": "sha512-n4J+zu52VdY43kdi/XdI9DzuMr1Mur8zFL5ZRG2opCans9aiFwkPxHYFEb5Xgy7n1Z4K6WfI4FpqUqsh3E8BPQ=="
|
||||
},
|
||||
"@szmarczak/http-timer": {
|
||||
"version": "4.0.5",
|
||||
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz",
|
||||
"integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==",
|
||||
"requires": {
|
||||
"defer-to-connect": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"@types/cacheable-request": {
|
||||
"version": "6.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
|
||||
"integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==",
|
||||
"requires": {
|
||||
"@types/http-cache-semantics": "*",
|
||||
"@types/keyv": "*",
|
||||
"@types/node": "*",
|
||||
"@types/responselike": "*"
|
||||
}
|
||||
},
|
||||
"@types/http-cache-semantics": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz",
|
||||
"integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A=="
|
||||
},
|
||||
"@types/keyv": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz",
|
||||
"integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==",
|
||||
"requires": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"@types/node": {
|
||||
"version": "14.0.27",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.27.tgz",
|
||||
"integrity": "sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g=="
|
||||
},
|
||||
"@types/responselike": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
|
||||
"integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
|
||||
"requires": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"cacheable-lookup": {
|
||||
"version": "5.0.3",
|
||||
"resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.3.tgz",
|
||||
"integrity": "sha512-W+JBqF9SWe18A72XFzN/V/CULFzPm7sBXzzR6ekkE+3tLG72wFZrBiBZhrZuDoYexop4PHJVdFAKb/Nj9+tm9w=="
|
||||
},
|
||||
"cacheable-request": {
|
||||
"version": "7.0.1",
|
||||
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz",
|
||||
"integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==",
|
||||
"requires": {
|
||||
"clone-response": "^1.0.2",
|
||||
"get-stream": "^5.1.0",
|
||||
"http-cache-semantics": "^4.0.0",
|
||||
"keyv": "^4.0.0",
|
||||
"lowercase-keys": "^2.0.0",
|
||||
"normalize-url": "^4.1.0",
|
||||
"responselike": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"clone-response": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
||||
"integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
|
||||
"requires": {
|
||||
"mimic-response": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"decompress-response": {
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
||||
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
|
||||
"requires": {
|
||||
"mimic-response": "^3.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"mimic-response": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
|
||||
"integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="
|
||||
}
|
||||
}
|
||||
},
|
||||
"defer-to-connect": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz",
|
||||
"integrity": "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg=="
|
||||
},
|
||||
"end-of-stream": {
|
||||
"version": "1.4.4",
|
||||
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
|
||||
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
|
||||
"requires": {
|
||||
"once": "^1.4.0"
|
||||
}
|
||||
},
|
||||
"get-stream": {
|
||||
"version": "5.1.0",
|
||||
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz",
|
||||
"integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==",
|
||||
"requires": {
|
||||
"pump": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"got": {
|
||||
"version": "11.5.1",
|
||||
"resolved": "https://registry.npmjs.org/got/-/got-11.5.1.tgz",
|
||||
"integrity": "sha512-reQEZcEBMTGnujmQ+Wm97mJs/OK6INtO6HmLI+xt3+9CvnRwWjXutUvb2mqr+Ao4Lu05Rx6+udx9sOQAmExMxA==",
|
||||
"requires": {
|
||||
"@sindresorhus/is": "^3.0.0",
|
||||
"@szmarczak/http-timer": "^4.0.5",
|
||||
"@types/cacheable-request": "^6.0.1",
|
||||
"@types/responselike": "^1.0.0",
|
||||
"cacheable-lookup": "^5.0.3",
|
||||
"cacheable-request": "^7.0.1",
|
||||
"decompress-response": "^6.0.0",
|
||||
"http2-wrapper": "^1.0.0-beta.5.0",
|
||||
"lowercase-keys": "^2.0.0",
|
||||
"p-cancelable": "^2.0.0",
|
||||
"responselike": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"http-cache-semantics": {
|
||||
"version": "4.1.0",
|
||||
"resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
|
||||
"integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="
|
||||
},
|
||||
"http2-wrapper": {
|
||||
"version": "1.0.0-beta.5.2",
|
||||
"resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz",
|
||||
"integrity": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==",
|
||||
"requires": {
|
||||
"quick-lru": "^5.1.1",
|
||||
"resolve-alpn": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"json-buffer": {
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
|
||||
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
|
||||
},
|
||||
"keyv": {
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.1.tgz",
|
||||
"integrity": "sha512-xz6Jv6oNkbhrFCvCP7HQa8AaII8y8LRpoSm661NOKLr4uHuBwhX4epXrPQgF3+xdJnN4Esm5X0xwY4bOlALOtw==",
|
||||
"requires": {
|
||||
"json-buffer": "3.0.1"
|
||||
}
|
||||
},
|
||||
"lowercase-keys": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
|
||||
"integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="
|
||||
},
|
||||
"mimic-response": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
|
||||
"integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ=="
|
||||
},
|
||||
"normalize-url": {
|
||||
"version": "4.5.0",
|
||||
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz",
|
||||
"integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ=="
|
||||
},
|
||||
"once": {
|
||||
"version": "1.4.0",
|
||||
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
||||
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
||||
"requires": {
|
||||
"wrappy": "1"
|
||||
}
|
||||
},
|
||||
"p-cancelable": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz",
|
||||
"integrity": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg=="
|
||||
},
|
||||
"pump": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
|
||||
"integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
|
||||
"requires": {
|
||||
"end-of-stream": "^1.1.0",
|
||||
"once": "^1.3.1"
|
||||
}
|
||||
},
|
||||
"quick-lru": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
|
||||
"integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="
|
||||
},
|
||||
"resolve-alpn": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz",
|
||||
"integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA=="
|
||||
},
|
||||
"responselike": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz",
|
||||
"integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==",
|
||||
"requires": {
|
||||
"lowercase-keys": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"wrappy": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
||||
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
||||
}
|
||||
}
|
||||
}
|
5785
Resources/scripts/data/scraper_node/pokemon_stats.csv
Normal file
5785
Resources/scripts/data/scraper_node/pokemon_stats.csv
Normal file
File diff suppressed because it is too large
Load diff
87
Resources/scripts/data/scraper_node/stats.js
Normal file
87
Resources/scripts/data/scraper_node/stats.js
Normal file
|
@ -0,0 +1,87 @@
|
|||
const got = require('got')
|
||||
const { new_pokemons } = require('./new_pokemons.js')
|
||||
|
||||
class Pokemon {
|
||||
stats = {
|
||||
hp: {
|
||||
base: 0,
|
||||
ev: 0,
|
||||
index: 1
|
||||
},
|
||||
at: {
|
||||
base: 0,
|
||||
ev: 0,
|
||||
index: 2
|
||||
},
|
||||
de: {
|
||||
base: 0,
|
||||
ev: 0,
|
||||
index: 3
|
||||
},
|
||||
sa: {
|
||||
base: 0,
|
||||
ev: 0,
|
||||
index: 4
|
||||
},
|
||||
sd: {
|
||||
base: 0,
|
||||
ev: 0,
|
||||
index: 5
|
||||
},
|
||||
sp: {
|
||||
base: 0,
|
||||
ev: 0,
|
||||
index: 6
|
||||
}
|
||||
}
|
||||
id = ""
|
||||
}
|
||||
|
||||
async function scrapePokemons(params) {
|
||||
try {
|
||||
const pokemons = []
|
||||
for (const new_pokemon of new_pokemons) {
|
||||
try {
|
||||
let pokemonToScrapeName = new_pokemon
|
||||
console.log(`Scraping ${pokemonToScrapeName}`)
|
||||
const response = await got(`https://bulbapedia.bulbagarden.net/w/api.php?action=parse&page=${pokemonToScrapeName}+(Pok%C3%A9mon)&prop=wikitext&format=json`).json()
|
||||
const wiki = response.parse.wikitext['*']
|
||||
const pokemon = new Pokemon
|
||||
pokemon.id = wiki.match(/ndex=(\d{3})/)[1]
|
||||
pokemon.stats.hp.base = wiki.match(/\|HP=(\d{1,3})/)[1]
|
||||
pokemon.stats.at.base = wiki.match(/\|Attack=(\d{1,3})/)[1]
|
||||
pokemon.stats.de.base = wiki.match(/\|Defense=(\d{1,3})/)[1]
|
||||
pokemon.stats.sa.base = wiki.match(/\|SpAtk=(\d{1,3})/)[1]
|
||||
pokemon.stats.sd.base = wiki.match(/\|SpDef=(\d{1,3})/)[1]
|
||||
pokemon.stats.sp.base = wiki.match(/\|Speed=(\d{1,3})/)[1]
|
||||
const evMatches = [...wiki.matchAll(/\|ev(\w{2})=(\d{1})/g)]
|
||||
evMatches.forEach(match => {
|
||||
pokemon.stats[match[1]].ev = match[2]
|
||||
})
|
||||
pokemons.push(pokemon)
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
}
|
||||
}
|
||||
return pokemons
|
||||
} catch (error) {
|
||||
throw error
|
||||
}
|
||||
}
|
||||
|
||||
function sortPokemon(a, b) {
|
||||
return a.id - b.id;
|
||||
}
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
const pokemons = await scrapePokemons()
|
||||
pokemons.sort(sortPokemon).forEach(pokemon => {
|
||||
Object.entries(pokemon.stats).forEach(([key, value]) => {
|
||||
console.log(`${pokemon.id},${value.index},${value.base},${value.ev}`)
|
||||
})
|
||||
})
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
}
|
||||
})()
|
Loading…
Reference in a new issue