Ir para conteúdo

Akiras Prince

Membro
  • Registro em

  • Última visita

Tudo que Akiras Prince postou

  1. Olá, Quero atribuir no meu script uma função que não deixe o player usar seu poke enquanto estiver usando a bike e vice-versa também... (não usar a bike se estiver com o pokemon ativo) Será Possível? Irei não só agradecer mas como dar REP+ sempre que eu puder! Obrigado, aí vai meu SCRIPT DA BIKE: local function BikeSpeedOn(cid, t) setPlayerStorageValue(cid, t.s, t.speed) doChangeSpeed(cid, -getCreatureSpeed(cid)) doChangeSpeed(cid, t.speed) end local function BikeSpeedOff(cid, t) setPlayerStorageValue(cid, t.s, -1) end function onUse(cid, item, fromPosition, itemEx, toPosition) local pos = getThingPos(cid) local t = {text='Mount, bike!', dtext='Demount, bike!', s=5700, speed = 1075} if getPlayerStorageValue(cid, t.s) <= 0 then doSendMagicEffect(pos, 177) doCreatureSay(cid, t.text, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You have mounted in a bike.') BikeSpeedOn(cid, t) if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = 738}, -1) else doSetCreatureOutfit(cid, {lookType = 737}, -1) end else if getPlayerStorageValue(cid, 17001) == 1 or getPlayerStorageValue(cid, 63215) == 1 or getPlayerStorageValue(cid, 17000) == 1 then doPlayerSendCancel(cid, "You can't use bike while ride/fly/surf.") return true end doSendMagicEffect(pos, 177) doCreatureSay(cid, t.dtext, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You haven demouted of a bike.') BikeSpeedOff(cid, t) doRemoveCondition(cid, CONDITION_OUTFIT) end return true end
  2. *Veja a imagem primeiro para entender... *limitPokeballs = 6 já ativado no config.lua Obs: Funciona o limite de 6, porém apenas se o pokemon tivesse forma da pokeball. Se vc reparar no meu server, o pokemon aparece como " icon " e não (dentro da pokebola), ele representa uma pokeball em forma de desenho do pokemon... no entanto, o jogador acaba tendo 10 ou mais pokeballs (na vdd icons de pokeball) como vc pode notar na foto. Help, isso impede um bom dedicado online... O jogo está quase padrão! Quem souber dou vários rep! valeuu RESOLVIDO. (Coloquei peso nos items de " icon " e agora deu certo)
  3. Procuro SCRIPTERS, PROGRAMADORES ou ENTENDIDOS de TIBIA versão 7.4 ou 7.6 ! (MAP GLOBAL). * Estou à procura de um bom servidor ainda, ao menos uma boa base das versões para hostiar, caso alguém possua ou tenha interesse em participar me avise. O projeto será sério e financeiramente bancado por mim... Boa noite
  4. local teleport_time, exhaust = 10, 20 --Respectivamente, tempo para teleportar e cooldown. function channel_teleport(cid, time) if not isPlayer(cid) then return true elseif getCreatureCondition(cid, CONDITION_INFIGHT) then doPlayerSendCancel(cid, "You can't teleport while in battle.") return true elseif time <= 0 then doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid))) setPlayerStorageValue(cid, 2910, os.time() + exhaust * 60) return true end doPlayerSendTextMessage(cid, 27, time) addEvent(channel_teleport, 1000, cid, time - 1) end function onSay(cid) if getPlayerStorageValue(cid, 2910) > os.time() then doPlayerSendCancel(cid, "This command is still in cooldown. Wait "..(getPlayerStorageValue(cid, 2910) - os.time()).." seconds to use it again.") return true elseif getCreatureCondition(cid, CONDITION_INFIGHT) then doPlayerSendCancel(cid, "You can't use this command in battle.") return true end channel_teleport(cid, teleport_time) return true end
  5. Não Possuo, utilizei o mesmo /t que o god tem porem coloquei acess: 0 para os players tb usarem... Só que assim se o player tiver morrendo fica facil correr, facilitando demais. Então pretendo dar um delay no teleport !cp ou só deixar usar quando tiver sem PZ .. pode ser um script assim porem que só funcione sem battle
  6. Olá, é possível criar um comando !cp que após o player digitar isso ele seja teleportado para sua town city (seu cp) porém mostrando 10, 9, 8, .. 3,2,1 e aí sim ocorrer o teleport? Em outras palavras, adicionar um delay mostrando no default o tempo para ser teleportado... Seria genial para mim;
  7. gobackmsgs = { [1] = {go = "Go, doka!", back = "Come back, doka!"}, [2] = {go = "Let's do it, doka!", back = "Thanks for helping, doka!"}, [3] = {go = "I choose you, doka!", back = "That's enough, come back!"}, [4] = {go = "I need your help, doka!", back = "You were great, doka!"}, [5] = {go = "Let's fight, doka!", back = "Excellent work, doka!"}, [6] = {go = "It's battle time, doka!", back = "Well done, doka!"}, [7] = {go = "It's your turn, doka!", back = "You need to rest, doka!"}, [8] = {go = "doka, let's battle!", back = "Hurry back, doka!"}, [9] = {go = "Show your strength, doka!", back = "You did your best, doka!"} } Ability = { ['FlyRide'] = {'Crystal Onix', 'Venusaur', 'Ninetales', 'Arcanine', 'Ponyta', 'Rapidash', 'Doduo', 'Dodrio', 'Onix', 'Rhyhorn', 'Tauros', 'Porygon', 'Aerodactyl', 'Dragonite', 'Charizard', 'Pidgeot', 'Fearow', 'Moltres', 'Zapdos', 'Articuno', 'Mew', 'Mewtwo', 'Gligar', 'Girafarig', 'Meganium', 'Porygon2', 'Stantler', 'Skarmory', 'Piloswine', 'Mareep', 'Houndor'}, ['Fly'] = {'Porygon', 'Aerodactyl', 'Dragonite', 'Charizard', 'Pidgeot', 'Fearow', 'Zapdos', 'Moltres', 'Articuno', 'Mew', 'Mewtwo', 'Gligar', 'Porygon2', 'Skarmory'}, ['Ride'] = {'Crystal Onix', 'Venusaur', 'Ninetales', 'Arcanine', 'Ponyta', 'Rapidash', 'Doduo', 'Dodrio', 'Onix', 'Rhyhorn', 'Tauros', 'Girafarig', 'Meganium', 'Stantler', 'Piloswine', 'Mareep', 'Houndor'}, ['Surf'] = {'Poliwag', 'Poliwhirl', 'Seaking', 'Dewgong', 'Blastoise', 'Tentacruel', 'Lapras', 'Gyarados', 'Red Gyarados', 'Omastar', 'Kabutops', 'Vaporeon', 'Staryu', 'Starmie', 'Goldeen', 'Seadra', 'Golduck', 'Squirtle', 'Wartortle', 'Tentacool', 'Snorlax', 'Poliwrath'}, ['Rock Smash'] = {'Sandshrew', 'Sandslash', 'Diglett', 'Dugtrio', 'Primeape', 'Machop', 'Machoke', 'Machamp', 'Geodude', 'Graveler', 'Golem' , 'Onix', 'Cubone', 'Marowak', 'Rhyhorn', 'Rhydon', 'Kangaskhan', 'Tauros', 'Snorlax', 'Poliwrath'}, ['Dig'] = {'Raticate', 'Sandshrew', 'Sandslash', 'Diglett', 'Dugtrio', 'Primeape', 'Krabby', 'Machop', 'Machoke', 'Machamp', 'Geodude', 'Graveler', 'Golem' , 'Onix', 'Cubone', 'Marowak', 'Rhyhorn', 'Rhydon', 'Kangaskhan', 'Tauros', 'Snorlax'}, ['Cut'] = {'Raticate', 'Bulbasaur', 'Ivysaur', 'Venusaur', 'Charmeleon', 'Sandshrew', 'Sandslash', 'Gloom', 'Vileplume', 'Paras', 'Parasect', 'Meowth', 'Persian', 'Bellsprout', 'Weepinbell', 'Victreebel', 'Farfetchd', 'Krabby', 'Kingler', 'Exeggutor', 'Cubone', 'Marowak', 'Tangela', 'Scyther', 'Pinsir'}, ['Blink'] = {'Abra', 'Kadabra', 'Alakazam', 'Porygon'}, ['Light'] = {'Abra', 'Kadabra', 'Alakazam', 'Magnemite', 'Magneton', 'Drowzee', 'Hypno', 'Voltorb', 'Electrode', 'Mrmime', 'Electabuzz', 'Jolteon', 'Porygon', 'Pikachu', 'Raichu'}, ['Teleport'] = {'Abra', 'Kadabra', 'Alakazam', 'Drowzee', 'Hypno', 'Mr.mime', 'Porygon'}, } AbilityInfo = { ['Fly'] = {}, ['Ride'] = {}, ['Rock Smash'] = {}, ['Dig'] = {}, ['Cut'] = {}, ['Blink'] = {}, ['Light'] = {}, } flys = { ['Moltres'] = {229, 2300, 350}, ['Articuno'] = {230, 2100, 350}, ['Zapdos'] = {224, 2600, 350}, ['Mew'] = {232, 2200, 525}, ['Mewtwo'] = {233, 2200, 525}, ['Dragonite'] = {221, 1300, 410}, ['Pidgeot'] = {222, 900, 375}, ['Fearow'] = {226, 800, 400}, ['Aerodactyl'] = {227, 1100, 410}, ['Charizard'] = {216, 1000, 410}, ['Porygon'] = {316, 600, 440}, ['Glingar'] = {662, 900, 440}, -- gligar ['Porygon2'] = {679, 900, 440}, -- porygon2 ['Skarmory'] = {682, 900, 440}, -- skarmory ['Elder Charizard'] = {295, 2000, 410}, } rides = { ["Tauros"] = {128, 780, 400}, -- tauros ["Ninetales"] = {129, 800, 375}, -- kyuubi ["Rapidash"] = {130, 800, 395}, -- rapid ["Ponyta"] = {131, 410, 500}, -- ponyta ["Rhyhorn"] = {132, 400, 510}, -- rhyhorn ["Arcanine"] = {12, 900, 390}, -- arcan ["Shiny Arcanine"] = {492, 1000, 360}, -- shiny arca ["Shiny Venusaur"] = {494, 420, 420}, -- shiny vneu ["Crystal Onix"] = {293, 480, 430}, -- cristal onix ["Onix"] = {126, 450, 450}, -- onix ["Venusaur"] = {134, 390, 450}, -- venu ["Dodrio"] = {133, 750, 380}, -- dodrio ["Doduo"] = {135, 420, 500}, -- doduo } surf = { ["Poliwag"] = {lookType=278, speed = 320}, ["Poliwhirl"] = {lookType=137, speed = 480}, ["Seaking"] = {lookType=269, speed = 520}, ["Dewgong"] = {lookType=183, speed = 700}, ["Blastoise"] = {lookType=184, speed = 850}, ["Tentacruel"] = {lookType=185, speed = 750}, ["Lapras"] = {lookType=186, speed = 960}, ["Gyarados"] = {lookType=187, speed = 1050}, ["Omastar"] = {lookType=188, speed = 680}, ["Kabutops"] = {lookType=189, speed = 840}, ["Poliwrath"] = {lookType=190, speed = 680}, ["Vaporeon"] = {lookType=191, speed = 800}, ["Staryu"] = {lookType=266, speed = 385}, ["Starmie"] = {lookType=267, speed = 685}, ["Goldeen"] = {lookType=268, speed = 355}, ["Seadra"] = {lookType=270, speed = 655}, ["Golduck"] = {lookType=271, speed = 760}, ["Squirtle"] = {lookType=273, speed = 365}, ["Wartortle"] = {lookType=275, speed = 605}, ["Tentacool"] = {lookType=277, speed = 340}, ["Snorlax"] = {lookType=300, speed = 500}, } pokes = { ["Bulbasaur"] = {level = 5, cons = 23, vida = 600}, ["Ivysaur"] = {level = 24, cons = 39, vida = 2600}, ["Venusaur"] = {level = 65, cons = 100, vida = 5200}, ["Charmander"] = {level = 5, cons = 23, vida = 600}, ["Charmeleon"] = {level = 24, cons = 39, vida = 2900}, ["Charizard"] = {level = 65, cons = 100, vida = 5200}, ["Squirtle"] = {level = 5, cons = 23, vida = 600}, ["Wartortle"] = {level = 24, cons = 39, vida = 2800}, ["Blastoise"] = {level = 65, cons = 100, vida = 5900}, ["Caterpie"] = {level = 1, cons = 13, vida = 300}, ["Metapod"] = {level = 10, cons = 24, vida = 1100}, ["Butterfree"] = {level = 30, cons = 45, vida = 2000}, ["Weedle"] = {level = 1, cons = 10, vida = 325}, ["Kakuna"] = {level = 10, cons = 24, vida = 900}, ["Beedrill"] = {level = 30, cons = 46, vida = 1900}, ["Pidgey"] = {level = 1, cons = 12, vida = 380}, ["Pidgeotto"] = {level = 20, cons = 35, vida = 1400}, ["Pidgeot"] = {level = 65, cons = 80, vida = 3800}, ["Rattata"] = {level = 1, cons = 14, vida = 350}, ["ShinyRattata"] = {level = 10, cons = 28, vida = 900}, ["Raticate"] = {level = 20, cons = 35, vida = 900}, ["Spearow"] = {level = 5, cons = 22, vida = 450}, ["Fearow"] = {level = 50, cons = 66, vida = 3300}, ["Ekans"] = {level = 12, cons = 27, vida = 600}, ["Arbok"] = {level = 30, cons = 46, vida = 2900}, ["Pikachu"] = {level = 5, cons = 22, vida = 900}, ["Raichu"] = {level = 50, cons = 66, vida = 3200}, ["Sandshrew"] = {level = 18, cons = 31, vida = 700}, ["Sandslash"] = {level = 55, cons = 70, vida = 3400}, ["Nidoran Female"] = {level = 10, cons = 24, vida = 600}, ["Nidorina"] = {level = 25, cons = 41, vida = 2000}, ["Nidoqueen"] = {level = 65, cons = 80, vida = 4200}, ["Nidoran Male"] = {level = 10, cons = 24, vida = 650}, ["Nidorino"] = {level = 25, cons = 41, vida = 2500}, ["Nidoking"] = {level = 65, cons = 80, vida = 4800}, ["Clefairy"] = {level = 10, cons = 24, vida = 600}, ["Clefable"] = {level = 50, cons = 90, vida = 2400}, ["Vulpix"] = {level = 20, cons = 35, vida = 680}, ["Ninetales"] = {level = 65, cons = 80, vida = 3400}, ["Jigglypuff"] = {level = 10, cons = 24, vida = 550}, ["Wigglytuff"] = {level = 42, cons = 54, vida = 2900}, ["Zubat"] = {level = 5, cons = 20, vida = 450}, ["Golbat"] = {level = 30, cons = 45, vida = 1900}, ["Oddish"] = {level = 5, cons = 21, vida = 340}, ["Gloom"] = {level = 18, cons = 31, vida = 1400}, ["Vileplume"] = {level = 50, cons = 66, vida = 3300}, ["Paras"] = {level = 1, cons = 40, vida = 850}, ["Parasect"] = {level = 50, cons = 66, vida = 3800}, ["Venonat"] = {level = 18, cons = 31, vida = 1350}, ["Venomoth"] = {level = 50, cons = 66, vida = 3850}, ["Diglett"] = {level = 5, cons = 20, vida = 900}, ["Dugtrio"] = {level = 48, cons = 110, vida = 3500}, ["Meowth"] = {level = 12, cons = 26, vida = 950}, ["Persian"] = {level = 25, cons = 41, vida = 2250}, ["Psyduck"] = {level = 12, cons = 26, vida = 950}, ["Golduck"] = {level = 55, cons = 70, vida = 4000}, ["Mankey"] = {level = 10, cons = 24, vida = 1050}, ["Primeape"] = {level = 45, cons = 61, vida = 4500}, ["Growlithe"] = {level = 20, cons = 37, vida = 1000}, ["Arcanine"] = {level = 80, cons = 100, vida = 6800}, ["Poliwag"] = {level = 5, cons = 20, vida = 400}, ["Poliwhirl"] = {level = 20, cons = 35, vida = 1200}, ["Poliwrath"] = {level = 65, cons = 80, vida = 4400}, ["Abra"] = {level = 15, cons = 29, vida = 620}, ["Kadabra"] = {level = 50, cons = 61, vida = 2500}, ["Alakazam"] = {level = 80, cons = 100, vida = 4000}, ["Machop"] = {level = 18, cons = 31, vida = 1100}, ["Machoke"] = {level = 40, cons = 54, vida = 3500}, ["Machamp"] = {level = 65, cons = 80, vida = 7500}, ["Bellsprout"] = {level = 5, cons = 20, vida = 420}, ["Weepinbell"] = {level = 18, cons = 31, vida = 1100}, ["Victreebel"] = {level = 50, cons = 61, vida = 4000}, ["Tentacool"] = {level = 12, cons = 26, vida = 1050}, ["Tentacruel"] = {level = 70, cons = 100, vida = 7050}, ["Geodude"] = {level = 15, cons = 30, vida = 700}, ["Graveler"] = {level = 40, cons = 54, vida = 3000}, ["Golem"] = {level = 70, cons = 85, vida = 6500}, ["Ponyta"] = {level = 20, cons = 35, vida = 1400}, ["Rapidash"] = {level = 60, cons = 75, vida = 5500}, ["Slowpoke"] = {level = 12, cons = 26, vida = 1200}, ["Slowbro"] = {level = 45, cons = 61, vida = 4600}, ["Magnemite"] = {level = 15, cons = 29, vida = 450}, ["Magneton"] = {level = 40, cons = 54, vida = 1750}, ["Farfetchd"] = {level = 40, cons = 60, vida = 3000}, ["Doduo"] = {level = 12, cons = 26, vida = 600}, ["Dodrio"] = {level = 45, cons = 61, vida = 2650}, ["Seel"] = {level = 20, cons = 35, vida = 1000}, ["Dewgong"] = {level = 65, cons = 80, vida = 5200}, ["Grimer"] = {level = 12, cons = 26, vida = 600}, ["Muk"] = {level = 30, cons = 45, vida = 2400}, ["Shellder"] = {level = 5, cons = 20, vida = 800}, ["Cloyster"] = {level = 65, cons = 80, vida = 5000}, ["Gastly"] = {level = 18, cons = 31, vida = 1000}, ["Haunter"] = {level = 45, cons = 61, vida = 3000}, ["Gengar"] = {level = 80, cons = 100, vida = 7000}, ["Onix"] = {level = 50, cons = 61, vida = 5300}, ["Drowzee"] = {level = 22, cons = 40, vida = 1150}, ["Hypno"] = {level = 50, cons = 61, vida = 4600}, ["Krabby"] = {level = 5, cons = 20, vida = 850}, ["Kingler"] = {level = 35, cons = 48, vida = 3250}, ["Voltorb"] = {level = 14, cons = 28, vida = 620}, ["Electrode"] = {level = 38, cons = 51, vida = 2000}, ["Exeggcute"] = {level = 8, cons = 42, vida = 800}, ["Exeggutor"] = {level = 48, cons = 64, vida = 4000}, ["Cubone"] = {level = 18, cons = 31, vida = 1200}, ["Marowak"] = {level = 45, cons = 61, vida = 3900}, ["Hitmonlee"] = {level = 60, cons = 75, vida = 9250}, ["Hitmonchan"] = {level = 60, cons = 75, vida = 10500}, ["Lickitung"] = {level = 45, cons = 61, vida = 4800}, ["Koffing"] = {level = 15, cons = 29, vida = 900}, ["Weezing"] = {level = 30, cons = 100, vida = 2800}, ["Rhyhorn"] = {level = 35, cons = 48, vida = 3800}, ["Rhydon"] = {level = 65, cons = 80, vida = 7000}, ["Chansey"] = {level = 60, cons = 75, vida = 7500}, ["Tangela"] = {level = 40, cons = 54, vida = 3500}, ["Kangaskhan"] = {level = 60, cons = 75, vida = 7000}, ["Horsea"] = {level = 5, cons = 19, vida = 300}, ["Seadra"] = {level = 45, cons = 61, vida = 2500}, ["Goldeen"] = {level = 10, cons = 24, vida = 950}, ["Seaking"] = {level = 25, cons = 41, vida = 2000}, ["Staryu"] = {level = 15, cons = 30, vida = 1050}, ["Starmie"] = {level = 45, cons = 61, vida = 3800}, ["Mr.mime"] = {level = 60, cons = 75, vida = 5500}, ["Scyther"] = {level = 70, cons = 100, vida = 6500}, ["Jynx"] = {level = 65, cons = 80, vida = 6000}, ["Electabuzz"] = {level = 70, cons = 100, vida = 6800}, ["Magmar"] = {level = 70, cons = 90, vida = 7200}, ["Pinsir"] = {level = 42, cons = 54, vida = 4000}, ["Tauros"] = {level = 40, cons = 54, vida = 4200}, ["Magikarp"] = {level = 1, cons = 5, vida = 120}, ["ShinyMagikarp"] = {level = 10, cons = 30, vida = 240}, ["Gyarados"] = {level = 75, cons = 100, vida = 7800}, ["Lapras"] = {level = 70, cons = 85, vida = 7000}, ["Ditto"] = {level = 40, cons = 70, vida = 4000}, ["Eevee"] = {level = 20, cons = 45, vida = 1500}, ["Vaporeon"] = {level = 55, cons = 70, vida = 4500}, ["Jolteon"] = {level = 55, cons = 70, vida = 4500}, ["Flareon"] = {level = 55, cons = 70, vida = 4500}, ["Porygon"] = {level = 45, cons = 70, vida = 5000}, ["Omanyte"] = {level = 20, cons = 35, vida = 1300}, ["Omastar"] = {level = 70, cons = 85, vida = 6000}, ["Kabuto"] = {level = 20, cons = 35, vida = 1300}, ["Kabutops"] = {level = 70, cons = 85, vida = 6500}, ["Aerodactyl"] = {level = 100, cons = 110, vida = 8000}, ["Snorlax"] = {level = 85, cons = 110, vida = 9500}, ["Articuno"] = {level = 120, cons = 120, vida = 11000}, ["Zapdos"] = {level = 120, cons = 120, vida = 11000}, ["Moltres"] = {level = 120, cons = 120, vida = 11000}, ["Dratini"] = {level = 10, cons = 30, vida = 1200}, ["Dragonair"] = {level = 70, cons = 90, vida = 5600}, ["Dragonite"] = {level = 100, cons = 110, vida = 10800}, ["Mewtwo"] = {level = 100, cons = 110, vida = 8500}, ["Mew"] = {level = 100, cons = 110, vida = 7200}, --shiny da primeira geração by valakinhas -- ["Shiny Bulbasaur"] = {level = 5, cons = 23, vida = 600}, ["Shiny Ivysaur"] = {level = 24, cons = 39, vida = 2600}, ["Shiny Venusaur"] = {level = 65, cons = 100, vida = 5200}, ["Shiny Charmander"] = {level = 5, cons = 23, vida = 600}, ["Shiny Charmeleon"] = {level = 24, cons = 39, vida = 2900}, ["Elder Charizard"] = {level = 65, cons = 100, vida = 5200}, ["Shiny Squirtle"] = {level = 5, cons = 23, vida = 600}, ["Shiny Wartortle"] = {level = 24, cons = 39, vida = 2800}, ["Shiny Blastoise"] = {level = 65, cons = 100, vida = 5900}, ["Shiny Caterpie"] = {level = 1, cons = 13, vida = 300}, ["Shiny Metapod"] = {level = 10, cons = 24, vida = 1100}, ["Shiny Butterfree"] = {level = 30, cons = 45, vida = 2000}, ["Shiny Weedle"] = {level = 1, cons = 10, vida = 325}, ["Shiny Kakuna"] = {level = 10, cons = 24, vida = 900}, ["Shiny Beedrill"] = {level = 30, cons = 46, vida = 1900}, ["Shiny Pidgey"] = {level = 1, cons = 12, vida = 380}, ["Shiny Pidgeotto"] = {level = 20, cons = 35, vida = 1400}, ["Shiny Pidgeot"] = {level = 65, cons = 80, vida = 3800}, ["Shiny Rattata"] = {level = 1, cons = 14, vida = 350}, ["Shiny ShinyRattata"] = {level = 10, cons = 28, vida = 900}, ["Shiny Raticate"] = {level = 20, cons = 35, vida = 900}, ["Shiny Spearow"] = {level = 5, cons = 22, vida = 450}, ["Shiny Fearow"] = {level = 50, cons = 66, vida = 3300}, ["Shiny Ekans"] = {level = 12, cons = 27, vida = 600}, ["Shiny Arbok"] = {level = 30, cons = 46, vida = 2900}, ["Shiny Pikachu"] = {level = 5, cons = 22, vida = 900}, ["Shiny Raichu"] = {level = 50, cons = 66, vida = 3200}, ["Shiny Sandshrew"] = {level = 18, cons = 31, vida = 700}, ["Shiny Sandslash"] = {level = 55, cons = 70, vida = 3400}, ["Shiny Nidoran Female"] = {level = 10, cons = 24, vida = 600}, ["Shiny Nidorina"] = {level = 25, cons = 41, vida = 2000}, ["Shiny Nidoqueen"] = {level = 65, cons = 80, vida = 4200}, ["Shiny Nidoran Male"] = {level = 10, cons = 24, vida = 650}, ["Shiny Nidorino"] = {level = 25, cons = 41, vida = 2500}, ["Shiny Nidoking"] = {level = 65, cons = 80, vida = 4800}, ["Shiny Clefairy"] = {level = 10, cons = 24, vida = 600}, ["Shiny Clefable"] = {level = 50, cons = 90, vida = 2400}, ["Shiny Vulpix"] = {level = 20, cons = 35, vida = 680}, ["Shiny Ninetales"] = {level = 65, cons = 80, vida = 3400}, ["Shiny Jigglypuff"] = {level = 10, cons = 24, vida = 550}, ["Shiny Wigglytuff"] = {level = 42, cons = 54, vida = 2900}, ["Shiny Zubat"] = {level = 5, cons = 20, vida = 450}, ["Shiny Golbat"] = {level = 30, cons = 45, vida = 1900}, ["Shiny Oddish"] = {level = 5, cons = 21, vida = 340}, ["Shiny Gloom"] = {level = 18, cons = 31, vida = 1400}, ["Shiny Vileplume"] = {level = 50, cons = 66, vida = 3300}, ["Shiny Paras"] = {level = 1, cons = 40, vida = 850}, ["Shiny Parasect"] = {level = 50, cons = 66, vida = 3800}, ["Shiny Venonat"] = {level = 18, cons = 31, vida = 1350}, ["Shiny Venomoth"] = {level = 50, cons = 66, vida = 3850}, ["Shiny Diglett"] = {level = 5, cons = 20, vida = 900}, ["Shiny Dugtrio"] = {level = 48, cons = 110, vida = 3500}, ["Shiny Meowth"] = {level = 12, cons = 26, vida = 950}, ["Shiny Persian"] = {level = 25, cons = 41, vida = 2250}, ["Shiny Psyduck"] = {level = 12, cons = 26, vida = 950}, ["Shiny Golduck"] = {level = 55, cons = 70, vida = 4000}, ["Shiny Mankey"] = {level = 10, cons = 24, vida = 1050}, ["Shiny Primeape"] = {level = 45, cons = 61, vida = 4500}, ["Shiny Growlithe"] = {level = 20, cons = 37, vida = 1000}, ["Shiny Arcanine"] = {level = 80, cons = 100, vida = 6800}, ["Shiny Poliwag"] = {level = 5, cons = 20, vida = 400}, ["Shiny Poliwhirl"] = {level = 20, cons = 35, vida = 1200}, ["Shiny Poliwrath"] = {level = 65, cons = 80, vida = 4400}, ["Dark Abra"] = {level = 15, cons = 29, vida = 620}, ["Dark Kadabra"] = {level = 50, cons = 61, vida = 2500}, ["Dark Alakazam"] = {level = 80, cons = 100, vida = 4000}, ["Shiny Machop"] = {level = 18, cons = 31, vida = 1100}, ["Shiny Machoke"] = {level = 40, cons = 54, vida = 3500}, ["Shiny Machamp"] = {level = 65, cons = 80, vida = 7500}, ["Shiny Bellsprout"] = {level = 5, cons = 20, vida = 420}, ["Shiny Weepinbell"] = {level = 18, cons = 31, vida = 1100}, ["Shiny Victreebel"] = {level = 50, cons = 61, vida = 4000}, ["Shiny Tentacool"] = {level = 12, cons = 26, vida = 1050}, ["Shiny Tentacruel"] = {level = 70, cons = 100, vida = 7050}, ["Shiny Geodude"] = {level = 15, cons = 30, vida = 700}, ["Shiny Graveler"] = {level = 40, cons = 54, vida = 3000}, ["Shiny Golem"] = {level = 70, cons = 85, vida = 6500}, ["Shiny Ponyta"] = {level = 20, cons = 35, vida = 1400}, ["Shiny Rapidash"] = {level = 60, cons = 75, vida = 5500}, ["Shiny Slowpoke"] = {level = 12, cons = 26, vida = 1200}, ["Shiny Slowbro"] = {level = 45, cons = 61, vida = 4600}, ["Shiny Magnemite"] = {level = 15, cons = 29, vida = 450}, ["Shiny Magneton"] = {level = 40, cons = 54, vida = 1750}, ["Shiny Farfetchd"] = {level = 40, cons = 60, vida = 3000}, ["Shiny Doduo"] = {level = 12, cons = 26, vida = 600}, ["Shiny Dodrio"] = {level = 45, cons = 61, vida = 2650}, ["Shiny Seel"] = {level = 20, cons = 35, vida = 1000}, ["Shiny Dewgong"] = {level = 65, cons = 80, vida = 5200}, ["Shiny Grimer"] = {level = 12, cons = 26, vida = 600}, ["Shiny Muk"] = {level = 30, cons = 45, vida = 2400}, ["Shiny Shellder"] = {level = 5, cons = 20, vida = 800}, ["Shiny Cloyster"] = {level = 65, cons = 80, vida = 5000}, ["Shiny Gastly"] = {level = 18, cons = 31, vida = 1000}, ["Shiny Haunter"] = {level = 45, cons = 61, vida = 3000}, ["Shiny Gengar"] = {level = 80, cons = 100, vida = 7000}, ["Crystal Onix"] = {level = 50, cons = 61, vida = 5300}, ["Shiny Drowzee"] = {level = 22, cons = 40, vida = 1150}, ["Shiny Hypno"] = {level = 50, cons = 61, vida = 4600}, ["Shiny Krabby"] = {level = 5, cons = 20, vida = 850}, ["Shiny Kingler"] = {level = 35, cons = 48, vida = 3250}, ["Shiny Voltorb"] = {level = 14, cons = 28, vida = 620}, ["Shiny Electrode"] = {level = 38, cons = 51, vida = 2000}, ["Shiny Exeggcute"] = {level = 8, cons = 42, vida = 800}, ["Shiny Exeggutor"] = {level = 48, cons = 64, vida = 4000}, ["Shiny Cubone"] = {level = 18, cons = 31, vida = 1200}, ["Shiny Marowak"] = {level = 45, cons = 61, vida = 3900}, ["Elite Hitmonlee"] = {level = 60, cons = 75, vida = 9250}, ["Elite Hitmonchan"] = {level = 60, cons = 75, vida = 10500}, ["Shiny Lickitung"] = {level = 45, cons = 61, vida = 4800}, ["Shiny Koffing"] = {level = 15, cons = 29, vida = 900}, ["Shiny Weezing"] = {level = 30, cons = 100, vida = 2800}, ["Shiny Rhyhorn"] = {level = 35, cons = 48, vida = 3800}, ["Shiny Rhydon"] = {level = 65, cons = 80, vida = 7000}, ["Shiny Chansey"] = {level = 60, cons = 75, vida = 7500}, ["Shiny Tangela"] = {level = 40, cons = 54, vida = 3500}, ["Shiny Kangaskhan"] = {level = 60, cons = 75, vida = 7000}, ["Shiny Horsea"] = {level = 5, cons = 19, vida = 300}, ["Shiny Seadra"] = {level = 45, cons = 61, vida = 2500}, ["Shiny Goldeen"] = {level = 10, cons = 24, vida = 950}, ["Shiny Seaking"] = {level = 25, cons = 41, vida = 2000}, ["Shiny Staryu"] = {level = 15, cons = 30, vida = 1050}, ["Shiny Starmie"] = {level = 45, cons = 61, vida = 3800}, ["Shiny Mr.mime"] = {level = 60, cons = 75, vida = 5500}, ["Shiny Scyther"] = {level = 70, cons = 100, vida = 6500}, ["Shiny Jynx"] = {level = 65, cons = 80, vida = 6000}, ["Shiny Electabuzz"] = {level = 70, cons = 100, vida = 6800}, ["Shiny Magmar"] = {level = 70, cons = 90, vida = 7200}, ["Shiny Pinsir"] = {level = 42, cons = 54, vida = 4000}, ["Shiny Tauros"] = {level = 40, cons = 54, vida = 4200}, ["Shiny Magikarp"] = {level = 1, cons = 5, vida = 120}, ["Red Gyarados"] = {level = 75, cons = 100, vida = 7800}, ["Shiny Lapras"] = {level = 70, cons = 85, vida = 7000}, ["Shiny Ditto"] = {level = 40, cons = 70, vida = 4000}, ["Shiny Eevee"] = {level = 20, cons = 45, vida = 1500}, ["Shiny Vaporeon"] = {level = 55, cons = 70, vida = 4500}, ["Shiny Jolteon"] = {level = 55, cons = 70, vida = 4500}, ["Shiny Flareon"] = {level = 55, cons = 70, vida = 4500}, ["Shiny Porygon"] = {level = 45, cons = 70, vida = 5000}, ["Shiny Omanyte"] = {level = 20, cons = 35, vida = 1300}, ["Shiny Omastar"] = {level = 70, cons = 85, vida = 6000}, ["Shiny Kabuto"] = {level = 20, cons = 35, vida = 1300}, ["Shiny Kabutops"] = {level = 70, cons = 85, vida = 6500}, ["Shiny Aerodactyl"] = {level = 100, cons = 110, vida = 8000}, ["Shiny Snorlax"] = {level = 85, cons = 110, vida = 9500}, ["Shiny Articuno"] = {level = 120, cons = 120, vida = 11000}, ["Shiny Zapdos"] = {level = 120, cons = 120, vida = 11000}, ["Shiny Moltres"] = {level = 120, cons = 120, vida = 11000}, ["Shiny Dratini"] = {level = 10, cons = 30, vida = 1200}, ["Shiny Dragonair"] = {level = 70, cons = 90, vida = 5600}, ["Shiny Dragonite"] = {level = 100, cons = 110, vida = 10800}, ["Shiny Mewtwo"] = {level = 100, cons = 110, vida = 8500}, ["Shiny Mew"] = {level = 100, cons = 110, vida = 7200}, } PokeMoves = { ['Charizard'] = { move1 = {spell = "Scratch", minLv = 65, base1 = 85, base2 = 100,dista = 1, bonus = 8.5, target = "yes", type = "normal", cd = 10}, move2 = {spell = "Ember", minLv = 65, base1 = 220, base2 = 235,dista = 4, bonus = 5.9, target = "yes", type = "fire", cd = 14}, move3 = {spell = "Flamethrower", minLv = 65, base1 = 245, base2 = 258,dista = 1, bonus = 7.1, target = "yes", type = "fire", cd = 18}, move4 = {spell = "Fireball", minLv = 65, base1 = 219, base2 = 240,dista = 3, bonus = 6.5, target = "yes", type = "Fire", cd = 22}, move5 = {spell = "Fire Fang", minLv = 65, base1 = 178, base2 = 256,dista = 1, bonus = 6, target = "yes", type = "fire", cd = 20}, move6 = {spell = "Raging Blast", minLv = 65, base1 = 219, base2 = 226,dista = 5, bonus = 5.6, target = "no", type = "fire", cd = 35}, move7 = {spell = "Fire Blast", minLv = 65, base1 = 250, base2 = 300,dista = 10, bonus = 8, target = "no", type = "fire", cd = 35}, move8 = {spell = "Wing Attack", minLv = 65, base1 = 150, base2 = 200,dista = 1, bonus = 6, target = "no", type = "flying", cd = 20}, move9 = {spell = "Magma Storm", minLv = 65, base1 = 200, base2 = 300,dista = 5, bonus = 6, target = "no", type = "fire", cd = 20}, move10 = {spell = "Rage", minLv = 65, base1 = 0, base2 = 0,dista = 1, bonus = 2.5, target = "no", type = "Normal", cd = 30}, }, ['Charmeleon'] = { move1 = {spell = "Scratch", minLv = 20, base1 = 50, base2 = 60, dista = 1, bonus = 2, type = "normal", cd = 10}, move2 = {spell = "Ember", minLv = 20, base1 = 120, base2 = 135, dista = 4, bonus = 4.5, type = "fire", cd = 14}, move3 = {spell = "Flamethrower", minLv = 20, base1 = 170, base2 = 181, target = "no", bonus = 5, type = "fire", cd = 18}, move4 = {spell = "Fireball", minLv = 25, base1 = 188, base2 = 197, dista = 3, bonus = 4, type = "Fire", cd = 22}, move5 = {spell = "Fire Fang", minLv = 27, base1 = 70, base2 = 95, dista = 1, bonus = 4, type = "fire", cd = 22}, move6 = {spell = "Raging Blast", minLv = 30, base1 = 158, base1 = 158, base2 = 167, dista = 5, target = "no", bonus = 3.8, type = "fire", cd = 30}, move7 = {spell = "Fire Blast", minLv = 35, base1 = 168, base2 = 177, dista = 5, target = "no", bonus = 6.5, type = "fire", cd = 35}, move8 = {spell = "Rage", minLv = 40, base1 = 0, base2 = 0, dista = 5, target = "yes", bonus = 2.5, type = "Normal", cd = 30}, }, ['Charmander'] = { move1 = {spell = "Scratch", minLv = 1, base1 = 10, base2 = 20, dista = 1, bonus = 4, type = "normal", cd = 10}, move2 = {spell = "Ember", minLv = 1, base1 = 30, base2 = 50, dista = 4, bonus = 3.8, type = "fire", cd = 14}, move3 = {spell = "Fire Fang", minLv = 5, base1 = 35, base2 = 55, dista = 1, bonus = 4.7, type = "fire", cd = 18}, move4 = {spell = "Fireball", minLv = 10, base1 = 80, base2 = 110, dista = 3, bonus = 4, type = "Fire", cd = 22}, move5 = {spell = "Fire Fang", minLv = 15, base1 = 40, base2 = 67, dista = 1, bonus = 3.5, type = "fire", cd = 24}, move6 = {spell = "Fire Blast", minLv = 20, base1 = 132, base2 = 157, dista = 5, target = "no", bonus = 6.5, type = "fire", cd = 35}, move7 = {spell = "Rage", minLv = 24, base1 = 0, base2 = 0, dista = 5, target = "yes", bonus = 2.5, type = "Normal", cd = 30}, }, ['Bulbasaur'] = { move1 = {spell = "Quick Attack", minLv = 1, base1 = 10, base2 = 20, dista = 1 ,bonus = 4, type = "normal", cd = 7}, move2 = {spell = "Razor Leaf", minLv = 1, base1 = 20, base2 = 40, dista = 1, target = "yes", bonus = 3.8, type = "grass", cd = 12}, move3 = {spell = "Vine Whip", minLv = 5, base1 = 25, base2 = 41, dista = 2, target = "no", bonus = 4, type = "grass", cd = 19}, move4 = {spell = "Headbutt", minLv = 7, base1 = 50, base2 = 80, dista = 1, bonus = 2.5, type = "Normal", cd = 15}, move5 = {spell = "Leech Seed", minLv = 10, base1 = 15, base2 = 25, dista = 3, bonus = 2.5, type = "grass", cd = 25}, move6 = {spell = "Solar Beam", minLv = 15, base1 = 145, base2 = 176, dista = 4, target = "no", bonus = 4.3, type = "grass", cd = 35}, move7 = {spell = "Sleep Powder", minLv = 20, base1 = 40, base2 = 50, dista = 1, bonus = 4, type = "normal", target = "no", cd = 30}, move8 = {spell = "Stun Spore", minLv = 22, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 25}, move9 = {spell = "Poison Powder", minLv = 23, base1 = 10, base2 = 30, dista = 5, target = "no", bonus = 2.5, type = "poison", cd = 25}, }, ['Ivysaur'] = { move1 = {spell = "Quick Attack", minLv = 20, base1 = 40, base2 = 50, dista = 1, bonus = 4, type = "normal", cd = 6}, move2 = {spell = "Razor Leaf", minLv = 20, base1 = 60, base2 = 75, dista = 1, bonus = 4, target = "yes", type = "grass", cd = 12}, move3 = {spell = "Vine Whip", minLv = 22, base1 = 120, base2 = 150, target = "no", dista = 2, bonus = 5, type = "grass", cd = 19}, move4 = {spell = "Headbutt", minLv = 25, base1 = 126, base2 = 143, dista = 1, bonus = 4, type = "Normal", cd = 15}, move5 = {spell = "Leech Seed", minLv = 27, base1 = 60, base2 = 75, dista = 3, bonus = 3.2, type = "grass", cd = 30}, move6 = {spell = "Bullet Seed", minLv = 32, base1 = 126, base2 = 143, dista = 5, target = "no", bonus = 5, type = "grass", cd = 33}, move7 = {spell = "Solar Beam", minLv = 36, base1 = 435, base2 = 445, dista = 5, bonus = 10, type = "psychic", target = "no", cd = 32}, move8 = {spell = "Sleep Powder", minLv = 40, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 30}, move9 = {spell = "Stun Spore", minLv = 44, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 30}, }, ['Venusaur'] = { move1 = {spell = "Quick Attack", minLv = 65, base1 = 85, base2 = 100, dista = 1, bonus = 8.5, type = "normal", cd = 6}, move2 = {spell = "Razor Leaf", minLv = 65, base1 = 220, base2 = 235, dista = 4, target = "yes", bonus = 5.9, type = "grass", cd = 12}, move3 = {spell = "Vine Whip", minLv = 65, base1 = 230, base2 = 280, dista = 2, target = "no", bonus = 6.5, type = "grass", cd = 19}, move4 = {spell = "Headbutt", minLv = 65, base1 = 159, base2 = 198, dista = 1, bonus = 6, type = "Normal", cd = 15}, move5 = {spell = "Leech Seed", minLv = 65, base1 = 100, base2 = 130, dista = 3, bonus = 5, type = "grass", cd = 30}, move6 = {spell = "Bullet Seed", minLv = 65, base1 = 159, base2 = 188, dista = 5, target = "no", bonus = 7.5, type = "grass", cd = 33}, move7 = {spell = "Solar Beam", minLv = 65, base1 = 450, base2 = 480, dista = 5, bonus = 14, type = "psychic", target = "no", cd = 32}, move8 = {spell = "Sleep Powder", minLv = 65, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 30}, move9 = {spell = "Stun Spore", minLv = 65, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 30}, move10 = {spell = "Leaf Storm", minLv = 65, base1 = 400, base2 = 500, dista = 5, target = "no", bonus = 6.5, type = "grass", cd = 55}, }, ['Squirtle'] = { move1 = {spell = "Headbutt", minLv = 1, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 9}, move2 = {spell = "Bubbles", minLv = 1, base1 = 30, base2 = 60, dista = 4, target = "yes", bonus = 3.5, type = "water", cd = 8}, move3 = {spell = "Water Gun", minLv = 4, base1 = 55, base2 = 80, dista = 5, bonus = 5, target = "no", type = "water", cd = 18}, move4 = {spell = "Waterball", minLv = 7, base1 = 75, base2 = 89, dista = 3, bonus = 3, type = "water", cd = 22}, move5 = {spell = "Aqua Tail", minLv = 10, base1 = 58, base2 = 80, dista = 1, bonus = 2, type = "water", cd = 14}, move6 = {spell = "Hydro Cannon", minLv = 15, base1 = 105, base2 = 129, dista = 5, target = "no", bonus = 3, type = "water", cd = 35}, move7 = {spell = "Harden", minLv = 20, base1 = 0, target = "no", base2 = 0, dista = 100, bonus = 0, type = "normal", cd = 17}, }, ['Wartortle'] = { move1 = {spell = "Headbutt", minLv = 1, base1 = 40, base2 = 50, dista = 1, bonus = 4, type = "normal",cd = 8}, move2 = {spell = "Bubbles", minLv = 1, base1 = 120, base2 = 135, dista = 4, target = "yes", bonus = 4.2, type = "water", cd = 8}, move3 = {spell = "Water Gun", minLv = 4, base1 = 120, base2 = 135,dista = 5, bonus = 5, type = "water", cd = 18}, move4 = {spell = "Waterball", minLv = 7, base1 = 119, base2 = 136, dista = 3, bonus = 4, type = "water", cd = 22}, move5 = {spell = "Aqua Tail", minLv = 10, base1 = 100, base2 = 157,dista = 1, bonus = 3.5, type = "water", cd = 14}, move6 = {spell = "Bubble Blast", minLv = 12, base1 = 129, base2 = 156, dista = 4, bonus = 4, type = "water", cd = 30}, move7 = {spell = "Hydro Cannon", minLv = 15, base1 = 425, target = "no", base2 = 575, dista = 100, bonus = 7, type = "water", cd = 50}, move8 = {spell = "Harden", minLv = 20, lpl = 93, life = 2800, base1 = 0, base2 = 0, dista = 1, target = "no", bonus = 0, type = "normal", cd = 14}, }, --[[MULEK DO BRASTOIZE]]-- ['Blastoise'] = { move1 = {spell = "Headbutt",minLv = 65, base1 = 85, base2 = 100, dista = 1, bonus = 8.5, type = "normal", cd = 8}, move2 = {spell = "Bubbles" ,minLv = 65, base1 = 220, base2 = 235, dista = 4, target = "yes", bonus = 5.6, type = "water", cd = 8}, move3 = {spell = "Water Gun", minLv = 65, base1 = 220, base2 = 235, dista = 5, bonus = 7.5, target = "no", type = "water", cd = 18}, move4 = {spell = "Waterball", minLv = 65, base1 = 189, base2 = 206, dista = 3, bonus = 6, type = "water", cd = 22}, move5 = {spell = "Aqua Tail", minLv = 65, base1 = 190, base2 = 225, dista = 1, bonus = 5, type = "water", cd = 18}, move6 = {spell = "Bubble Blast", minLv = 65, base1 = 189, base2 = 196, dista = 4, bonus = 5, type = "water", cd = 30}, move7 = {spell = "Hydro Cannon", minLv = 65, base1 = 425, base2 = 196, dista = 4, bonus = 5, type = "water", cd = 30}, move8 = {spell = "Skull Bash", minLv = 65, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 10, type = "normal", cd = 18}, move9 = {spell = "Hydropump", minLv = 65, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 6, type = "water", cd = 25}, move10 = {spell = "Harden", minLv = 65, lpl = 93, life = 2800, base1 = 0, base2 = 0, dista = 1, target = "no", bonus = 0, type = "normal", cd = 14}, }, ['Caterpie'] = { move1 = {spell = "Headbutt", minLv = 1, base1 = 1, base2 = 11, dista = 1, bonus = 1, type = "normal", cd = 9}, move2 = {spell = "String Shot", minLv = 1, base1 = 45, base2 = 50, dista = 3, bonus = 3, type = "bug", cd = 2}, move3 = {spell = "Bug Bite", minLv = 1, base1 = 95, base2 = 100, dista = 1, bonus = 4, type = "bug", cd = 16}, }, ['Metapod'] = { move1 = {spell = "String Shot", minLv = 15, base1 = 15, base2 = 25, dista = 5, bonus = 1.5, type = "bug", cd = 4}, move2 = {spell = "Headbutt", minLv = 10, base1 = 85, base2 = 90, dista = 1, bonus = 3.5, type = "normal", cd = 5}, move3 = {spell = "Harden", minLv = 1, base1 = 0, target = "no", base2 = 0, dista = 100, bonus = 0, type = "normal", cd = 17}, move4 = {spell = "Bug Bite", minLv = 15, base1 = 96, base2 = 107, dista = 1, bonus = 3, type = "Bug", cd = 10}, }, ['Butterfree'] = { move1 = {spell = "String Shot", minLv = 30, base1 = 30, base2 = 40, dista = 5, bonus = 3, type = "bug", cd = 4}, move2 = {spell = "Super Sonic", minLv = 1, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move3 = {spell = "Headbutt", minLv = 1, base1 = 65, base2 = 70, dista = 1, bonus = 5, type = "normal", cd = 4}, move4 = {spell = "Whirlwind", minLv = 32, base1 = 200, base2 = 210, dista = 4, target = "no", bonus = 5.5, type = "flying", cd = 25}, move5 = {spell = "Psybeam", minLv = 36, base1 = 120, base2 = 157, dista = 4, target = "no", bonus = 12.8, type = "psychic", cd = 25}, move6 = {spell = "Confusion", minLv = 34, base1 = 112, base2 = 133, dista = 5, target = "no", bonus = 3.2, type = "psychic", cd = 36}, move7 = {spell = "Sleep Powder", minLv = 20, base1 = 40, base2 = 50, dista = 1, bonus = 4, type = "normal", target = "no", cd = 30}, move8 = {spell = "Stun Spore", minLv = 30, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 25}, move9 = {spell = "Poison Powder", minLv = 30, base1 = 15, base2 = 45, dista = 5, target = "no", bonus = 4, type = "poison", cd = 25}, }, ['Weedle'] = { move1 = {spell = "Horn Attack", minLv = 1, base1 = 1, base2 = 11, target = "yes", dista = 1, bonus = 1, type = "normal", cd = 9}, move2 = {spell = "String Shot", minLv = 1, base1 = 45, base2 = 50, dista = 3, bonus = 3, type = "bug", cd = 9}, }, ['Kakuna'] = { move1 = {spell = "String Shot", minLv = 15, base1 = 15, base2 = 25, dista = 5, bonus = 1.5, type = "bug", cd = 9}, move2 = {spell = "Headbutt", minLv = 1, base1 = 85, base2 = 90, dista = 1, bonus = 3.5, type = "normal", cd = 5}, move3 = {spell = "Bug Bite", minLv = 15, base1 = 75, base2 = 95, dista = 1, bonus = 3, type = "bug", cd = 10}, }, ['Beedrill'] = { move1 = {spell = "String Shot", minLv = 25, base1 = 25, base2 = 35, dista = 5, bonus = 2.5, type = "bug", cd = 11}, move2 = {spell = "Poison Sting", minLv = 35, base1 = 50, base2 = 90, dista = 4, bonus = 9, type = "poison", cd = 12}, move3 = {spell = "Fury Cutter", minLv = 85, base1 = 255, base2 = 263, dista = 1, bonus = 3.5, target = "no", type = "Bug", cd = 25}, move4 = {spell = "Pin Missile", minLv = 30, base1 = 112, base2 = 138, dista = 7, target = "no", bonus = 3.3, type = "Bug", cd = 25}, move5 = {spell = "Rage", minLv = 25, base1 = 140, base2 = 160, dista = 1, target = "yes", bonus = 3.3, type = "dragon", cd = 35}, move6 = {spell = "Strafe", minLv = 33, base1 = 52, base2 = 68, dista = 5, target = "no", bonus = 3.3, type = "normal", cd = 25}, }, ['Pidgey'] = { move1 = {spell = "Quick Attack", minLv = 5, base1 = 5, base2 = 15, dista = 1, bonus = 1, type = "normal", cd = 7}, move2 = {spell = "Peck", minLv = 5, base1 = 35, base2 = 45, dista = 1, bonus = 3, type = "flying", cd = 9}, move3 = {spell = "Sand Attack", minLv = 8, base1 = 40, base2 = 50, dista = 50, bonus = 3, type = "ground", target = "no", cd = 12}, move4 = {spell = "Drill Peck", minLv = 12, base1 = 78, base2 = 86, dista = 1, bonus = 2.6, type = "flying", cd = 25}, }, ['Pidgeotto'] = { move1 = {spell = "Quick Attack", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 7}, move2 = {spell = "Peck", minLv = 1, base1 = 100, base2 = 140, dista = 1, bonus = 3, type = "flying", cd = 9}, move3 = {spell = "Whirlwind", minLv = 20, base1 = 100, base2 = 120, dista = 50, bonus = 5, target = "no", type = "flying", cd = 25}, move4 = {spell = "Drill Peck", minLv = 20, base1 = 129, base2 = 143, dista = 1, bonus = 5, type = "flying", cd = 30}, move5 = {spell = "Wing Attack", minLv = 20, base1 = 220, base2 = 250, dista = 1, bonus = 7, target = "no", type = "flying", cd = 35}, move6 = {spell = "Tornado", minLv = 40, base1 = 139, base2 = 153, dista = 5, target = "no", bonus = 3.3, type = "flying", cd = 35}, }, ['Pidgeot'] = { move1 = {spell = "Quick Attack", minLv = 65, base1 = 70, base2 = 80, dista = 1, bonus = 6.5, type = "normal", cd = 7}, move2 = {spell = "Sand Attack", minLv = 1, base1 = 75, base2 = 150, dista = 1, bonus = 5, type = "earth", cd = 1}, move3 = {spell = "Whirlwind", minLv = 65, base1 = 200, base2 = 240, dista = 50, bonus = 8, target = "no", type = "flying", cd = 25}, move4 = {spell = "Drill Peck", minLv = 65, base1 = 250, base2 = 300, dista = 1, bonus = 7, type = "flying", cd = 30}, move5 = {spell = "Wing Attack", minLv = 65, base1 = 220, base2 = 250, dista = 1, bonus = 9, target = "no", type = "flying", cd = 30}, move6 = {spell = "Tornado", minLv = 69, base1 = 188, base2 = 209, dista = 5 ,target = "no", bonus = 4.3, type = "flying", cd = 35}, move7 = {spell = "Windstorm", minLv = 38, base1 = 350, base2 = 360, dista = 5, bonus = 8, type = "flying", target = "no", cd = 50}, }, ['Rattata'] = { move1 = {spell = "Quick Attack", minLv = 1, base1 = 20, base2 = 21, dista = 1, bonus = 2, type = "normal", cd = 7}, move2 = {spell = "Scratch", minLv = 1, base1 = 40, base2 = 50, dista = 1, bonus = 2, type = "normal", cd = 9}, move3 = {spell = "Bite", minLv = 7, base1 = 40, base2 = 50, dista = 1, bonus = 3, type = "normal", cd = 11}, move4 = {spell = "Super Fang", minLv = 12, base1 = 56, base2 = 69, dista = 1, bonus = 3, type = "normal", cd = 20}, }, ['Raticate'] = { move1 = {spell = "Quick Attack", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 7}, move2 = {spell = "Scratch", minLv = 1, base1 = 210, base2 = 255, dista = 1, bonus = 3, type = "normal", cd = 9}, move3 = {spell = "Bite", minLv = 1, base1 = 150, base2 = 200, dista = 1, bonus = 5, type = "normal", cd = 11}, move4 = {spell = "Super Fang", minLv = 25 ,base1 = 146, base2 = 159, dista = 1, bonus = 6, type = "normal", cd = 10}, }, ['Spearow'] = { move1 = {spell = "Quick Attack", minLv = 10, base1 = 10, base2 = 20, dista = 1, bonus = 1, type = "normal", cd = 7}, move2 = {spell = "Sand Attack", minLv = 15, base1 = 75, base2 = 150, dista = 1, bonus = 5, type = "earth", cd = 11}, move3 = {spell = "Gust", minLv = 13, base1 = 119, base2 = 116, dista = 50, bonus = 7, target = "no", type = "flying", cd = 25}, move4 = {spell = "Drill Peck", minLv = 10, base1 = 250, base2 = 300, dista = 1, bonus = 7, type = "flying", cd = 30}, move5 = {spell = "Rage", minLv = 10, base1 = 40, base2 = 60, dista = 1, bonus = 2.5, type = "flying", cd = 9}, }, ['Fearow'] = { move1 = {spell = "Quick Attack", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 7}, move2 = {spell = "Sand Attack", minLv = 50, base1 = 75, base2 = 150, dista = 1, bonus = 5, type = "earth", cd = 11}, move3 = {spell = "Drill Peck", minLv = 50, base1 = 80, base2 = 100, dista = 1, bonus = 3, type = "flying", cd = 16}, move4 = {spell = "Gust", minLv = 50, base1 = 119, base2 = 116, dista = 50, bonus = 7, target = "no", type = "flying", cd = 25}, move5 = {spell = "Rage", minLv = 10, base1 = 40, base2 = 60, dista = 1, bonus = 2.5, type = "flying", cd = 9}, move6 = {spell = "Wing Attack", minLv = 52, base1 = 119, base2 = 116, dista = 1, target = "no", bonus = 3.3, type = "flying", cd = 25}, move7 = {spell = "Windstorm", minLv = 50, base1 = 310, base2 = 32 ,dista = 5, bonus = 8, type = "flying", target = "no", cd = 50}, }, ['Ekans'] = { move1 = {spell = "Bite", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "normal", cd = 11}, move2 = {spell = "Poison Fang", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "poison", cd = 10}, move3 = {spell = "Poison Sting", minLv = 15, base1 = 25, base2 = 65, dista = 4, bonus = 4, type = "poison", cd = 12}, move4 = {spell = "Acid", minLv = 23, base1 = 88, base2 = 96, dista = 5, bonus = 3, type = "Poison", cd = 18}, move5 = {spell = "Fear", minLv = 23, base1 = 0, base2 = 0, dista = 3, bonus = 2.5, type = "ghost", cd = 18}, }, ['Arbok'] = { move1 = {spell = "Bite", minLv = 30, base1 = 30, base2 = 40, dista = 1, bonus = 3, type = "normal", cd = 10}, move2 = {spell = "Poison Fang", minLv = 30, base1 = 30, base2 = 40, dista = 2, bonus = 6, type = "poison", cd = 10}, move3 = {spell = "Poison Sting", minLv = 30, base1 = 50, base2 = 90, dista = 4, bonus = 10, type = "poison", cd = 12}, move4 = {spell = "Pin Missile", minLv = 38, base1 = 149, base2 = 165, dista = 5, target = "yes", bonus = 8, type = "Poison", cd = 25}, move5 = {spell = "Acid", minLv = 3, base1 = 140, base2 = 176, dista = 4, bonus = 4, type = "poison", cd = 15}, move6 = {spell = "Iron Tail", minLv = 40, base1 = 129, base2 = 135, dista = 1, bonus = 3.8, type = "normal", cd = 20}, move7 = {spell = "Fear", minLv = 30, base1 = 50, base2 = 90, dista = 4, bonus = 10, type = "poison", cd = 12}, move8 = {spell = "Rage", minLv = 40, base1 = 140, base2 = 176, dista = 1, target = "yes", bonus = 4, type = "dragon", cd = 15}, }, ['Pikachu'] = { move1 = {spell = "Quick Attack", minLv = 25, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 7}, move2 = {spell = "Thundershock", minLv = 25, base1 = 49, base2 = 62, dista = 5, bonus = 3.4, type = "electric", cd = 12}, move3 = {spell = "Thunder Wave", minLv = 25, base1 = 48, base2 = 51, dista = 5, bonus = 4, target = "no", type = "electric", cd = 15}, move4 = {spell = "Thunder Bolt", minLv = 24, base1 = 88, base2 = 96, dista = 5, bonus = 3, type = "electric", cd = 24}, move5 = {spell = "Iron Tail", minLv = 26, base1 = 110, base2 = 120, dista = 1, bonus = 3, type = "normal", cd = 17}, move6 = {spell = "Thunder", minLv = 40, base1 = 108, base2 = 136, dista = 5, target = "yes", bonus = 3, type = "electric", cd = 35}, move7 = {spell = "Agility", minLv = 1, base1 = 200, base2 = 210, dista = 5, bonus = 4, target = "yes", type = "normal", cd = 15}, }, ['Raichu'] = { move1 = {spell = "Mega Punch", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 7}, move2 = {spell = "Thundershock", minLv = 1, base1 = 80, base2 = 120, dista = 5, bonus = 6, type = "electric", cd = 12}, move3 = {spell = "Thunder Wave", minLv = 1, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "electric", cd = 15}, move4 = {spell = "Thunder Bolt", minLv = 50, base1 = 250, base2 = 280, dista = 5, bonus = 6, type = "Electric", cd = 20}, move5 = {spell = "Thunder Punch", minLv = 50, base1 = 140, base2 = 186, dista = 1, bonus = 4.9, type = "electric", cd = 19}, move6 = {spell = "Iron Tail", minLv = 50, base1 = 135, base2 = 153, dista = 1, bonus = 4.6, type = "normal", cd = 20}, move7 = {spell = "Agility", minLv = 1, base1 = 200, base2 = 210, dista = 3, bonus = 7.5, type = "normal", cd = 15}, move8 = {spell = "Electric Storm", minLv = 65, base1 = 100, base2 = 200, dista = 5, target = "no", bonus = 5, type = "electric", cd = 19}, }, ['Sandshrew'] = { move1 = {spell = "Scratch", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "earth", cd = 12}, move2 = {spell = "Sand Attack", minLv = 1, base1 = 45, base2 = 55, dista = 1, bonus = 3, target = "no", type = "ground", cd = 16}, move3 = {spell = "Mud Shot", minLv = 1, base1 = 45, base2 = 55, dista = 4, bonus = 3, type = "ground", cd = 14}, move4 = {spell = "Rollout", minLv = 1, base1 = 40, base2 = 41, dista = 3, target = "no", bonus = 0.6, type = "rock", cd = 28}, move5 = {spell = "Shockwave", minLv = 30, base1 = 95, base2 = 110, dista = 3, target = "no", bonus = 1, type = "ground", cd = 30}, }, ['Sandslash'] = { move1 = {spell = "Scratch", minLv = 55, base1 = 60, base2 = 70, dista = 1, bonus = 3.5, type = "earth", cd = 8}, move2 = {spell = "Sand Attack", minLv = 1, base1 = 155, base2 = 205, dista = 1, target = "no", bonus = 6.2, type = "ground", cd = 16}, move3 = {spell = "Mud Shot", minLv = 1, base1 = 145, base2 = 155, dista = 4, bonus = 5, type = "ground", cd = 14}, move4 = {spell = "Rollout", minLv = 57, base1 = 60, base2 = 61, dista = 3, target = "no", bonus = 1.6, type = "rock", cd = 28}, move5 = {spell = "Earthshock", minLv = 55, base1 = 150, base2 = 180, dista = 3, target = "no", bonus = 1.6, type = "ground", cd = 25}, move6 = {spell = "Fury Cutter", minLv = 65, base1 = 110, base2 = 121, dista = 1, target = "no", bonus = 1.6, type = "bug", cd = 28}, move7 = {spell = "Shockwave", minLv = 59, base1 = 250, base2 = 300, dista = 10, bonus = 8, type = "ground", target = "no", cd = 29}, move8 = {spell = "Earthquake", minLv = 70, base1 = 150, base2 = 180, dista = 3, target = "no", bonus = 1.6, type = "ground", cd = 45}, }, ['Nidoran female'] = { move1 = {spell = "Quick Attack", minLv = 10, base1 = 30, base2 = 41, dista = 1, bonus = 3, type = "normal", cd = 7}, move2 = {spell = "Bite", minLv = 10, base1 = 30, base2 = 41, dista = 1, bonus = 2, type = "normal", cd = 8}, move3 = {spell = "Horn Attack", minLv = 10, base1 = 15, base2 = 45, dista = 1, target = "yes", bonus = 5, type = "normal", cd = 7}, }, ['Nidorina'] = { move1 = {spell = "Quick Attack", minLv = 25, base1 = 100, base2 = 111, dista = 1, bonus = 3, type = "normal", cd = 7}, move2 = {spell = "Bite", minLv = 25, base1 = 100, base2 = 111, dista = 1, bonus = 3, type = "normal", cd = 8}, move3 = {spell = "Horn Attack", minLv = 25, base1 = 35, base2 = 65, dista = 1, target = "yes", bonus = 4.5, type = "normal", cd = 7}, move4 = {spell = "Poison Sting", minLv = 30, base1 = 90, base2 = 116, dista = 1, bonus = 4, type = "poison", cd = 20}, move5 = {spell = "Poison Fang", minLv = 30, base1 = 100, base2 = 130, dista = 1, bonus = 3, type = "poison", cd = 9}, move6 = {spell = "Stomp", minLv = 38, base1 = 100, base2 = 126, dista = 5, target = "no", bonus = 3, type = "ground", cd = 26}, }, ['Nidoqueen'] = { move1 = {spell = "Quick Attack", minLv = 65, base1 = 191, base2 = 210, dista = 1, bonus = 3, type = "normal", cd = 7}, move2 = {spell = "Bite", minLv = 65, base1 = 191, base2 = 210, dista = 1, bonus = 4, type = "normal", cd = 8}, move3 = {spell = "Horn Attack", minLv = 65, base1 = 135, base2 = 165, target = "yes", dista = 1, bonus = 6, type = "normal", cd = 7}, move4 = {spell = "Poison Sting", minLv = 65, base1 = 156, base2 = 168, dista = 1, bonus = 6, type = "poison", cd = 20}, move5 = {spell = "Poison Fang", minLv = 65, base1 = 140, base2 = 170, dista = 1, bonus = 4.5, type = "poison", cd = 10}, move6 = {spell = "Mega Punch", minLv = 65, base1 = 166, base2 = 178, dista = 1, bonus = 4.1, type = "Normal", cd = 23}, move7 = {spell = "Toxic Spikes", minLv = 65, base1 = 135, base2 = 165, dista = 5, bonus = 7, type = "poison", cd = 14}, move8 = {spell = "Stomp", minLv = 69, base1 = 110, base2 = 170, dista = 1, bonus = 4.5, target = "no", type = "ground", cd = 10}, move9 = {spell = "Earthshock", minLv = 71, base1 = 140, base2 = 170, dista = 1, bonus = 4.5, target = "no", type = "ground", cd = 30}, }, ['nidoran male'] = { move1 = {spell = "Quick Attack", minLv = 10, base1 = 30, base2 = 41, dista = 1, bonus = 3, type = "normal", cd = 7}, move2 = {spell = "Bite", minLv = 10, base1 = 30, base2 = 41, dista = 1, bonus = 2, type = "normal", cd = 8}, move3 = {spell = "Horn Attack", minLv = 10, base1 = 15, base2 = 45, dista = 1, target = "yes", bonus = 5, type = "normal", cd = 7}, }, ['Nidorino'] = { move1 = {spell = "Quick Attack", minLv = 25, base1 = 100, base2 = 111, dista = 1, bonus = 3, type = "normal", cd = 7}, move2 = {spell = "Bite", minLv = 25, base1 = 100, base2 = 111, dista = 1, bonus = 3, type = "normal", cd = 8}, move3 = {spell = "Horn Attack", minLv = 25, base1 = 35 ,base2 = 65, dista = 1, target = "yes", bonus = 4.5, type = "normal", cd = 7}, move4 = {spell = "Poison Sting", minLv = 30, base1 = 99, base2 = 116, dista = 3, bonus = 3.8, type = "poison", cd = 20}, move5 = {spell = "Poison Fang", minLv = 30, base1 = 99, base2 = 116, dista = 1, bonus = 4, type = "poison", cd = 12}, move6 = {spell = "Stomp", minLv = 30, base1 = 109, base2 = 130, dista = 5, target = "no", bonus = 3.2, type = "ground", cd = 26}, }, ['Nidoking'] = { move1 = {spell = "Quick Attack", minLv = 65, base1 = 191, base2 = 210, dista = 1, bonus = 3, type = "normal", cd = 7}, move2 = {spell = "Bite", minLv = 65, base1 = 191, base2 = 210, dista = 1, bonus = 4, type = "normal", cd = 8}, move3 = {spell = "Horn Attack", minLv = 65, base1 = 135, base2 = 165, target = "yes", dista = 1, bonus = 6, type = "normal", cd = 7}, move4 = {spell = "Poison Sting", minLv = 65, base1 = 178, base2 = 198, dista = 3, bonus = 5.8, type = "poison", cd = 20}, move5 = {spell = "Poison Fang", minLv = 65, base1 = 170, base2 = 200, dista = 1, bonus = 5, type = "poison", cd = 9}, move6 = {spell = "Mega Punch", minLv = 65, base1 = 188, base2 = 208, dista = 3, bonus = 4.2, type = "Normal", cd = 23}, move7 = {spell = "Horn Drill", minLv = 65, base1 = 130, base2 = 160, dista = 5, bonus = 5, target = "yes", type = "normal", cd = 16}, move8 = {spell = "Stomp", minLv = 69, base1 = 170, base2 = 200, dista = 1, bonus = 5, target = "no", type = "ground", cd = 9}, move9 = {spell = "Shockwave", minLv = 71, base1 = 170, base2 = 200, dista = 5, target = "no", bonus = 5, type = "ground", cd = 25}, }, ['Clefairy'] = { move1 = {spell = "Doubleslap", minLv = 1, base1 = 48, base2 = 53, dista = 1, bonus = 2.2, type = "normal", cd = 7}, move2 = {spell = "Lovely Kiss", minLv = 1, base1 = 48, base2 = 53, dista = 1, bonus = 4, type = "normal", cd = 10}, move3 = {spell = "Sing", minLv = 45, base1 = 145, base2 = 155, dista = 3, bonus = 7, type = "normal", cd = 15}, move4 = {spell = "Selfheal", minLv = 28, base1 = 40, base2 = 70, dista = 100, target = "no", bonus = 1.3, type = "Normal", cd = 34}, move5 = {spell = "Multi-Slap", minLv = 25, base1 = 30, base2 = 65, dista = 5, bonus = 2, target = "no", type = "normal", cd = 20}, move6 = {spell = "Metronome", minLv = 30, base1 = 100, base2 = 105, dista = 6, target = "no", bonus = 2, type = "normal", cd = 70}, }, ['Clefable'] = { move1 = {spell = "Doubleslap", minLv = 1, base1 = 148, base2 = 153, dista = 1, bonus = 4, type = "normal", cd = 7}, move2 = {spell = "Lovely Kiss", minLv = 1, base1 = 180, base2 = 190, dista = 1, bonus = 7, type = "normal", cd = 10}, move3 = {spell = "Metronome", minLv = 30, base1 = 100, base2 = 105, dista = 6, target = "no", bonus = 2, type = "normal" ,cd = 70}, move4 = {spell = "Multi-Slap", minLv = 45, base1 = 60, base2 = 76, dista = 5, target = "no", bonus = 3, type = "Normal", cd = 23}, move5 = {spell = "Great Love", minLv = 52, base1 = 140, base2 = 190, dista = 5, target = "no", bonus = 3, type = "normal", cd = 50}, move6 = {spell = "Selfheal", minLv = 45, base1 = 100, base2 = 126, dista = 5, target = "no", bonus = 3.5, type = "normal", cd = 60}, move7 = {spell = "Focus", minLv = 45, base1 = 8, base2 = 9, dista = 5, bonus = 3, type = "normal", target = "no", cd = 50}, }, ['Vulpix'] = { move1 = {spell = "Quick Attack", minLv = 15, base1 = 90, base2 = 100, dista = 1, bonus = 3, type = "normal", cd = 7}, move2 = {spell = "Iron Tail", minLv = 15, base1 = 90, base2 = 100, dista = 1, bonus = 3, type = "normal", cd = 9}, move3 = {spell = "Ember", minLv = 15, base1 = 90, base2 = 105, dista = 4, bonus = 4, type = "fire", cd = 14}, move4 = {spell = "Flamethrower", minLv = 22, base1 = 88, base2 = 96, dista = 3, bonus = 3, target = "no", type = "fire", cd = 28}, move5 = {spell = "Flame Wheel", minLv = 25, base1 = 80, base2 = 100, dista = 3, bonus = 3, target = "no", type = "fire", cd = 22}, }, ['Ninetales'] = { move1 = {spell = "Quick Attack", minLv = 65, base1 = 190, base2 = 240, dista = 1, bonus = 4.5, type = "normal", cd = 7}, move2 = {spell = "Iron Tail", minLv = 65, base1 = 190, base2 = 240, dista = 1, bonus = 5, type = "normal", cd = 9}, move3 = {spell = "Ember", minLv = 65, base1 = 220, base2 = 235, dista = 4, bonus = 6, type = "fire", cd = 14}, move4 = {spell = "Flamethrower", minLv = 70, base1 = 136, base2 = 159, dista = 3, bonus = 6, target = "no", type = "fire", cd = 32}, move5 = {spell = "Flame Wheel", minLv = 70, base1 = 136, base2 = 165, dista = 1, bonus = 4, type = "fire", cd = 18}, move6 = {spell = "Fireball", minLv = 70, base1 = 146, base2 = 169, dista = 4, bonus = 4, type = "fire", cd = 20}, move7 = {spell = "Fire Blast", minLv = 77, base1 = 425, target = "no", base2 = 575, dista = 100, bonus = 10, type = "fire", cd = 40}, move8 = {spell = "Magma Storm", minLv = 85, base1 = 240, base2 = 390, dista = 5, target = "no", bonus = 4, type = "fire", cd = 18}, }, ['Jigglypuff'] = { move1 = {spell = "Doubleslap", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 7}, move2 = {spell = "Lovely Kiss", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 4, type = "normal", cd = 10}, move3 = {spell = "Headbutt", minLv = 1, base1 = 180, base2 = 190, dista = 1, bonus = 6, type = "normal", cd = 8}, move4 = {spell = "Selfheal", minLv = 20, base1 = 60, base2 = 85, dista = 5, bonus = 1.5, target = "no", type = "normal", cd = 45}, move5 = {spell = "Hyper Voice", minLv = 30, base1 = 80, base2 = 110, dista = 5, bonus = 4, target = "no", type = "Normal", cd = 23}, move6 = {spell = "Metronome", minLv = 12, base1 = 210, base2 = 238, bonus = 7.9, dista = 1, target = "no", type = "fire", cd = 36}, }, ['Wigglytuff'] = { move1 = {spell = "Doubleslap", minLv = 45, base1 = 45, base2 = 55, dista = 1, bonus = 5, type = "normal", cd = 8}, move2 = {spell = "Lovely Kiss", minLv = 45, base1 = 45, base2 = 185, dista = 1, bonus = 6, type = "normal", cd = 10}, move3 = {spell = "Sing", minLv = 45, base1 = 145, base2 = 155, dista = 3, bonus = 7, type = "normal", cd = 15}, move4 = {spell = "Hyper Voice", minLv = 45, base1 = 83, base2 = 96, dista = 5, bonus = 8.5, target = "no", type = "normal", cd = 45}, move5 = {spell = "Selfheal", minLv = 50, base1 = 220, base2 = 255, dista = 1, target = "no", bonus = 10, type = "normal", cd = 75}, move6 = {spell = "Healeara", minLv = 45, base1 = 300, base2 = 400, dista = 5, target = "no", bonus = 25, type = "normal", cd = 50}, move7 = {spell = "Focus", minLv = 45, base1 = 8, base2 = 9, dista = 5, bonus = 3, type = "normal", target = "no", cd = 50}, move8 = {spell = "Metronome", minLv = 30, base1 = 100, base2 = 105, dista = 6, target = "no", bonus = 2, type = "normal", cd = 70}, }, ['Zubat'] = { move1 = {spell = "Super Sonic", minLv = 1, base1 = 20, base2 = 21, dista = 1, bonus = 1.7, type = "normal", cd = 11}, move2 = {spell = "Bite", minLv = 7, base1 = 20, base2 = 25, dista = 1, bonus = 2, type = "grass", cd = 14}, move3 = {spell = "Poison Fang", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "poison", cd = 10}, move4 = {spell = "Absorb", minLv = 12, base1 = 32, base2 = 56, dista = 3, bonus = 3, type = "Grass", cd = 14}, move5 = {spell = "Toxic", minLv = 15, base1 = 70, base2 = 120, dista = 3, bonus = 2.7, target = "no", type = "poison", cd = 14}, }, ['Golbat'] = { move1 = {spell = "Super Sonic", minLv = 1, base1 = 0, base2 = 0, dista = 5, bonus = 5, type = "normal", cd = 16}, move2 = {spell = "Bite", minLv = 30, base1 = 150, base2 = 180, dista = 1, bonus = 4, type = "normal", cd = 14}, move3 = {spell = "Poison Fang", minLv = 30, base1 = 30, base2 = 40, dista = 2, bonus = 7, type = "poison", cd = 10}, move4 = {spell = "Absorb", minLv = 35, base1 = 150, base2 = 180, dista = 1, bonus = 4, type = "grass", cd = 14}, move5 = {spell = "Toxic", minLv = 35, base1 = 100, base2 = 140, dista = 3, bonus = 3.5, target = "no", type = "poison", cd = 13}, move6 = {spell = "Whirlwind", minLv = 38, base1 = 126, base2 = 135, dista = 5, target = "no", bonus = 3.1, type = "flying", cd = 20}, move7 = {spell = "Poisonous Wing", minLv = 35, base1 = 250, base2 = 300, target = "no", dista = 1, bonus = 5.2, type = "poison", cd = 26}, }, ['Oddish'] = { move1 = {spell = "Absorb", minLv = 1, base1 = 25, base2 = 30, dista = 1, bonus = 2, type = "grass", cd = 10}, move2 = {spell = "Acid", minLv = 7, base1 = 54, base2 = 64, dista = 4, bonus = 2.7, type = "poison", cd = 14}, move3 = {spell = "Leech Seed", minLv = 11, base1 = 6, base2 = 6, dista = 5, bonus = 0.5, type = "grass", cd = 20}, move4 = {spell = "Sleep Powder", minLv = 12, base1 = 34, base2 = 44, dista = 5, target = "no", bonus = 2.4, type = "grass", cd = 14}, move5 = {spell = "Stun Spore", minLv = 10, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 10}, move6 = {spell = "Poison Powder", minLv = 5, base1 = 10, base2 = 20, dista = 5, target = "no", bonus = 2.4, type = "poison", cd = 50}, }, ['Gloom'] = { move1 = {spell = "Absorb", minLv = 1, base1 = 35, base2 = 45, dista = 1, bonus = 3.5, type = "grass", cd = 10}, move2 = {spell = "Acid", minLv = 7, base1 = 114, base2 = 134, dista = 4, bonus = 3.8, type = "poison", cd = 14}, move3 = {spell = "Leech Seed", minLv = 20, base1 = 15, base2 = 15, dista = 5, bonus = 1.5, type = "grass", cd = 20}, move4 = {spell = "Poison Bomb", minLv = 28, base1 = 84, base2 = 94, dista = 4, bonus = 3.2, type = "poison", cd = 18}, move5 = {spell = "Poison Gas", minLv = 32, base1 = 30, base2 = 60, dista = 5, bonus = 3.5, target = "no", type = "poison", cd = 20}, move6 = {spell = "Sleep Powder", minLv = 25, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 3.2, type = "grass", cd = 70}, move7 = {spell = "Stun Spore", minLv = 65, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 28}, move8 = {spell = "Poison Powder", minLv = 55, base1 = 30, base2 = 50, dista = 5, target = "no", bonus = 4, type = "poison", cd = 32}, }, ['Vileplume'] = { move1 = {spell = "Absorb", minLv = 1, base1 = 55, base2 = 65, dista = 1, bonus = 5, type = "grass", cd = 10}, move2 = {spell = "Leech Seed", minLv = 7, base1 = 15, base2 = 15, dista = 5, bonus = 2.5, type = "grass",cd = 20}, move3 = {spell = "Acid", minLv = 20, base1 = 114, base2 = 134, dista = 4, bonus = 3.8, type = "poison", cd = 14}, move4 = {spell = "Poison Bomb", minLv = 50, base1 = 124, base2 = 144, dista = 4, bonus = 4, type = "poison", cd = 14}, move5 = {spell = "Poison Gas", minLv = 50, base1 = 70, base2 = 100, dista = 5, bonus = 4.5, target = "no", type = "poison", cd = 13}, move6 = {spell = "Petal Dance", minLv = 50, base1 = 154, base2 = 194, dista = 5, target = "no", bonus = 4, type = "grass", cd = 50}, move7 = {spell = "Solar Beam", minLv = 52, base1 = 435, base2 = 445, dista = 5, bonus = 11, type = "grass", target = "no", cd = 32}, move8 = {spell = "Sleep Powder", minLv = 50, base1 = 0, base2 = 0, dista = 4, target = "no", bonus = 0, type = "grass", cd = 46}, move9 = {spell = "Stun Spore", minLv = 50, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 18}, }, ['Paras'] = { move1 = {spell = "Scratch", minLv = 5, base1 = 5, base2 = 15, dista = 1, bonus = 1, type = "normal", cd = 9}, move2 = {spell = "Poison Sting", minLv = 5, base1 = 50, base2 = 90, dista = 4, bonus = 9, type = "poison", cd = 12}, move3 = {spell = "Slash", minLv = 10, base1 = 50, base2 = 75, dista = 1, bonus = 4, type = "normal", cd = 8}, move4 = {spell = "Stun Spore", minLv = 10, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 28}, move5 = {spell = "Poison Powder", minLv = 8, base1 = 56, base2 = 66, dista = 5, target = "no", bonus = 2, type = "poison", cd = 28}, move6 = {spell = "Sleep Powder", minLv = 12, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 2, type = "grass", cd = 68}, }, ['Parasect'] = { move1 = {spell = "Absorb", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 9}, move2 = {spell = "Scratch", minLv = 50, base1 = 50, base2 = 90, dista = 4, bonus = 5, type = "poison", cd = 12}, move3 = {spell = "Poison Sting", minLv = 50, base1 = 50, base2 = 80, dista = 1, bonus = 5, type = "normal", cd = 7}, move4 = {spell = "Slash", minLv = 50, base1 = 106, base2 = 113, dista = 1, bonus = 5, type = "normal", cd = 15}, move5 = {spell = "Poison Bomb", minLv = 50, base1 = 110, base2 = 140, dista = 3, bonus = 3, type = "poison", cd = 17}, move6 = {spell = "Stun Spore", minLv = 50, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 70}, move7 = {spell = "Poison Powder", minLv = 50, base1 = 10, base2 = 20, dista = 5, target = "no", bonus = 3, type = "poison", cd = 40}, move8 = {spell = "Sleep Powder", minLv = 50, base1 = 20, base2 = 40, dista = 4, bonus = 3, target = "no", type = "grass", cd = 17}, move9 = {spell = "Fury Cutter", minLv = 50, base1 = 255, base2 = 263, dista = 1, bonus = 3.5, target = "no", type = "Bug", cd = 25}, move10 = {spell = "X-Scissor", minLv = 90, base1 = 245, base2 = 253, dista = 3, target = "no", bonus = 3, type = "bug", cd = 45}, }, ['Venonat'] = { move1 = {spell = "Absorb", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 9}, move2 = {spell = "Headbutt", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 9}, move3 = {spell = "Super Sonic", minLv = 20, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move4 = {spell = "Psychic", minLv = 20, base1 = 106, base2 = 116, dista = 5, bonus = 3, target = "no", type = "psychic", cd = 30}, move5 = {spell = "Poison Fang", minLv = 20, base1 = 50, base2 = 90, dista = 1, bonus = 3, type = "poison", cd = 20}, move6 = {spell = "Sleep Powder", minLv = 35, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 2.6, type = "grass", cd = 60}, move7 = {spell = "Poison Powder", minLv = 35, base1 = 10, base2 = 20, dista = 5, target = "no", bonus = 2, type = "grass", cd = 40}, move8 = {spell = "Stun Spore", minLv = 20, base1 = 0, base2 = 0, dista = 1, bonus = 0, target = "no", type = "grass", cd = 20}, }, ['Venomoth'] = { move1 = {spell = "Absorb", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "grass", cd = 9}, move2 = {spell = "Headbutt", minLv = 50, base1 = 50, base2 = 80, dista = 1, bonus = 4, type = "normal", cd = 9}, move3 = {spell = "Super Sonic", minLv = 50, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move4 = {spell = "Confusion", minLv = 50, base1 = 108, base2 = 119, dista = 5, bonus = 5.7, target = "no", type = "psychic", cd = 30}, move5 = {spell = "Psychic", minLv = 50, base1 = 110, base2 = 125, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 43}, move6 = {spell = "Poison Fang", minLv = 50, base1 = 118, base2 = 129, dista = 1, bonus = 3.6, type = "poison", cd = 20}, move7 = {spell = "Sleep Powder", minLv = 20, base1 = 40, base2 = 50, dista = 1, bonus = 4, type = "normal", target = "no", cd = 30}, move8 = {spell = "Poison Powder", minLv = 50, base1 = 50, base2 = 80, dista = 5, target = "no", bonus = 4, type = "poison", cd = 43}, move9 = {spell = "Stun Spore", minLv = 50, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 20}, move10 = {spell = "Tornado", minLv = 60, base1 = 280, base2 = 300, dista = 5, target = "no", bonus = 9, type = "flying", cd = 60}, }, ['Diglett'] = { move1 = {spell = "Sand Attack", minLv = 10, base1 = 10, base2 = 20, dista = 1, bonus = 1, type = "earth", cd = 9}, move2 = {spell = "Slash", minLv = 10, base1 = 10, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 8}, move3 = {spell = "Mud Shot", minLv = 10, base1 = 45, base2 = 55, dista = 4, bonus = 3, type = "ground", cd = 14}, move4 = {spell = "Mud Slap", minLv = 12, base1 = 68, base2 = 89, dista = 3, bonus = 2.6, type = "ground", cd = 15}, move5 = {spell = "Earthshock", minLv = 15, base1 = 60, base2 = 100, dista = 3, bonus = 2.9, target = "no", type = "ground", cd = 30}, }, ['Dugtrio'] = { move1 = {spell = "Sand Attack", minLv = 35, base1 = 40, base2 = 50, dista = 1, bonus = 3.5, type = "earth", cd = 9}, move2 = {spell = "Slash", minLv = 35, base1 = 50, base2 = 75, dista = 1, bonus = 4, type = "normal", cd = 8}, move3 = {spell = "Mud Shot", minLv = 35, base1 = 100, base2 = 140, dista = 4, bonus = 5.5, type = "ground", cd = 14}, move4 = {spell = "Mud Slap", minLv = 35, base1 = 108, base2 = 116, dista = 1, bonus = 5, type = "ground", cd = 15}, move5 = {spell = "Earthshock", minLv = 35, base1 = 110, base2 = 132, dista = 3, bonus = 4.9, target = "no", type = "ground", cd = 25}, move6 = {spell = "Shockwave", minLv = 35, base1 = 158, base2 = 176, dista = 5, target = "no", bonus = 4.5, type = "ground", cd = 23}, move7 = {spell = "Earthquake", minLv = 40, base1 = 300, base2 = 301, dista = 5, target = "no", bonus = 10, type = "rock", cd = 65}, move8 = {spell = "Rage", minLv = 45, base1 = 110, base2 = 132, dista = 1, bonus = 4.9, type = "dragon", cd = 43}, }, ['Meowth'] = { move1 = {spell = "Slash", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 2, type = "normal", cd = 7}, move2 = {spell = "Scratch", minLv = 15, base1 = 15, base2 = 35, dista = 1, bonus = 1.5, type = "normal", cd = 5}, move3 = {spell = "Bite", minLv = 15, base1 = 100, base2 = 111, dista = 1, bonus = 3, type = "normal", cd = 8}, move4 = {spell = "Pay Day", minLv = 20, base1 = 78, base2 = 86, dista = 3, bonus = 3, type = "Normal", cd = 20}, move5 = {spell = "Rage", minLv = 25, base1 = 140, base2 = 160, dista = 1, target = "yes", bonus = 3.3, type = "dragon", cd = 35}, }, ['Persian'] = { move1 = {spell = "Slash", minLv = 30, base1 = 50, base2 = 70, dista = 1, bonus = 5, type = "normal", cd = 7}, move2 = {spell = "Scratch", minLv = 30, base1 = 20, base2 = 50, dista = 1, bonus = 3, type = "normal", cd = 5}, move3 = {spell = "Bite", minLv = 30, base1 = 191, base2 = 210, dista = 1, bonus = 4, type = "normal", cd = 8}, move4 = {spell = "Pay Day", minLv = 30, base1 = 103, base2 = 119, dista = 3, bonus = 6, type = "Normal", cd = 15}, move5 = {spell = "Fury Cutter", minLv = 38, base1 = 110, base2 = 119, dista = 1, bonus = 4, target = "no", type = "bug", cd = 15}, move6 = {spell = "Fear", minLv = 30, base1 = 0, base2 = 0, dista = 5, bonus = 3.7, type = "ghost", cd = 40}, }, ['Psyduck'] = { move1 = {spell = "Water Gun", minLv = 24, base1 = 25, base2 = 35, dista = 1, bonus = 2.4, type = "water", cd = 7}, move2 = {spell = "Aqua Tail", minLv = 20, base1 = 25, base2 = 35, dista = 1, bonus = 3, type = "water", cd = 8}, move3 = {spell = "Confusion", minLv = 20, base1 = 30, base2 = 50, dista = 1, bonus = 3, type = "psychic", target = "no", cd = 12}, move4 = {spell = "Headbutt", minLv = 20, base1 = 74, base2 = 86, dista = 1, bonus = 2.6, type = "Normal", cd = 10}, }, ['Golduck'] = { move1 = {spell = "Doubleslap", minLv = 55, base1 = 60, base2 = 70, dista = 1, bonus = 5.5,type = "normal", cd = 9}, move2 = {spell = "Water Gun", minLv = 55, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "water", cd = 13}, move3 = {spell = "Confusion", minLv = 20, base1 = 30, base2 = 50, dista = 1, bonus = 3, type = "psychic", target = "no", cd = 12}, move4 = {spell = "Waterball", minLv = 55, base1 = 115, base2 = 135, dista = 3, bonus = 3.3, type = "Water", cd = 20}, move5 = {spell = "Confusion", minLv = 55, base1 = 110, base2 = 140, dista = 5, bonus = 4, target = "no", type = "psychic", cd = 35}, move6 = {spell = "Psybeam", minLv = 60, base1 = 135, base2 = 155, dista = 5,target = "no", bonus = 3.3, type = "psychic", cd = 25}, move7 = {spell = "Psy Wave", minLv = 60, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "psychic", cd = 15}, move8 = {spell = "Mega Kick", minLv = 55, base1 = 110, base2 = 140, dista = 1, bonus = 4, type = "fighting", cd = 35}, move9 = {spell = "Strafe", minLv = 60, base1 = 120, base2 = 180, dista = 5, target = "no", bonus = 4, type = "normal", cd = 20}, }, ['Mankey'] = { move1 = {spell = "Scratch", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "normal", cd = 9}, move2 = {spell = "Triple Kick", minLv = 15, base1 = 15, base2 = 35, dista = 1, bonus = 1.5, type = "fighting", cd = 10}, move3 = {spell = "Karate Chop", minLv = 15, base1 = 55, base2 = 85, dista = 1, bonus = 2 ,type = "fighting", cd = 13}, move4 = {spell = "Cross Chop", minLv = 20, base1 = 87, base2 = 99, dista = 1, bonus = 2.6, type = "Fighting", cd = 30}, move5 = {spell = "Rage", minLv = 22, base1 = 40, base2 = 55, dista = 1, bonus = 3, target = "yes", type = "dragon", cd = 20}, }, ['Primeape'] = { move1 = {spell = "Scratch", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 9}, move2 = {spell = "Triple Kick", minLv = 50, base1 = 50, base2 = 90, dista = 1, bonus = 5, type = "fighting", cd = 10}, move3 = {spell = "Karate Chop", minLv = 50, base1 = 150, base2 = 190, dista = 1, bonus = 5, type = "fighting", cd = 13}, move4 = {spell = "Cross Chop", minLv = 54, base1 = 126, base2 = 159, dista = 1, bonus = 3.9, type = "Fighting", cd = 30}, move5 = {spell = "Mega Punch", minLv = 56, base1 = 110, base2 = 160, dista = 1, bonus = 4, type = "fighting", cd = 12}, move6 = {spell = "Mega Kick", minLv = 54, base1 = 146, base2 = 189, dista = 1, bonus = 4, type = "Fighting", cd = 20}, move7 = {spell = "Rage", minLv = 45, base1 = 0, base2 = 0, dista = 1, target = "no", bonus = 2.5, type = "Normal", cd = 50}, move8 = {spell = "Fear", minLv = 60, base1 = 110, base2 = 160, dista = 3, bonus = 4, type = "ghost", cd = 12}, }, ['Growlithe'] = { move1 = {spell = "Bite", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 9}, move2 = {spell = "Roar", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 14}, move3 = {spell = "Quick Attack", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 7}, move4 = {spell = "Ember", minLv = 25, base1 = 78, base2 = 89, dista = 3, bonus = 2.6, type = "fire", cd = 20}, move5 = {spell = "Flamethrower", minLv = 25, base1 = 60, base2 = 80, bonus = 3, target = "no", type = "fire", cd = 12}, move6 = {spell = "Fireball", minLv = 27, base1 = 88, base2 = 96, dista = 4, bonus = 2.6, type = "fire", cd = 23}, move7 = {spell = "Rage", minLv = 45, base1 = 0, base2 = 0, dista = 1, target = "no", bonus = 2.5, type = "Normal", cd = 50}, }, ['Arcanine'] = { move1 = {spell = "Bite", minLv = 1, base1 = 100, base2 = 151, dista = 1, bonus = 6, type = "normal", cd = 11}, move2 = {spell = "Roar", minLv = 1, base1 = 100, base2 = 111, dista = 1, bonus = 5, type = "normal", cd = 14}, move3 = {spell = "Quick Attack", minLv = 1, base1 = 100, base2 = 111, dista = 1, bonus = 5, type = "normal", cd = 7}, move4 = {spell = "Ember", minLv = 80, base1 = 148, base2 = 169, dista = 3, bonus = 6, type = "fire", cd = 20}, move5 = {spell = "Flamethrower", minLv = 80, base1 = 120, base2 = 170, bonus = 4.5, target = "no", type = "fire", cd = 11}, move6 = {spell = "Fireball", minLv = 80, base1 = 158, base2 = 189, dista = 4, bonus = 4.5, type = "fire", cd = 23}, move7 = {spell = "Fire Fang", minLv = 1, base1 = 245, base2 = 258, dista = 1, bonus = 7.1, type = "fire", cd = 18}, move8 = {spell = "Fire Blast", minLv = 82, base1 = 120, base2 = 210, dista = 5, target = "no", bonus = 8, type = "fire", cd = 19}, move9 = {spell = "Tri Flames", minLv = 84, base1 = 130, base2 = 200, dista = 3, target = "no", bonus = 4.5, type = "fire", cd = 30}, move10 = {spell = "Wardog", minLv = 84, base1 = 130, base2 = 200, dista = 3, target = "no", bonus = 8, type = "normal", cd = 30}, }, ['Poliwag'] = { move1 = {spell = "Doubleslap", minLv = 5, base1 = 5, base2 = 15, dista = 1, bonus = 1, type = "normal", cd = 7}, move2 = {spell = "Bubbles", minLv = 6, base1 = 20, base2 = 30, dista = 4, target = "yes", bonus = 2, type = "water", cd = 8}, move3 = {spell = "Water Gun", minLv = 20, base1 = 75, base2 = 80, dista = 5, bonus = 5, target = "no", type = "water", cd = 18}, move4 = {spell = "Aqua Tail", minLv = 7, base1 = 59, base2 = 88, dista = 4, bonus = 2.5, type = "water", cd = 15}, move5 = {spell = "Hypnosis", minLv = 12, base1 = 0, base2 = 0, dista = 4, bonus = 3, type = "psychic", cd = 10}, }, ['Poliwhirl'] = { move1 = {spell = "Mud Shot", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "earth", cd = 7}, move2 = {spell = "Doubleslap", minLv = 60, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "normal", cd = 7}, move3 = {spell = "Bubbles", minLv = 22, base1 = 160, base2 = 170, dista = 4, target = "yes", bonus = 3.5, type = "water", cd = 8}, move4 = {spell = "Water Gun", minLv = 25, base1 = 104, base2 = 113, dista = 4, bonus = 5, target = "no", type = "Water", cd = 20}, move5 = {spell = "Mega Punch", minLv = 30, base1 = 80, base2 = 110, dista = 1, bonus = 4, type = "fighting", cd = 12}, move6 = {spell = "Hypnosis", minLv = 32, base1 = 0, base2 = 0, dista = 5, target = "yes", bonus = 3.2, type = "Water", cd = 5}, }, ['Poliwrath'] = { move1 = {spell = "Mud Shot", minLv = 65, base1 = 65, base2 = 75, dista = 1, bonus = 6.5, type = "earth", cd = 12}, move2 = {spell = "Waterball", minLv = 65, base1 = 200, base2 = 201, dista = 4, bonus = 5, type = "water", cd = 16}, move3 = {spell = "Bubbles", minLv = 22, base1 = 160, base2 = 170, dista = 4, target = "yes", bonus = 3.5, type = "water", cd = 8}, move4 = {spell = "Water Gun", minLv = 65, base1 = 126, base2 = 145, dista = 4, target = "no", bonus = 9, type = "water", cd = 20}, move5 = {spell = "Dizzy Punch", minLv = 69, base1 = 170, base2 = 190, dista = 1, bonus = 4.5, type = "fighting", cd = 17}, move6 = {spell = "Mega Punch", minLv = 65, base1 = 146, base2 = 165, dista = 1, bonus = 4, type = "fighting", cd = 23}, move7 = {spell = "Ice Punch", minLv = 65, base1 = 146, base2 = 165, dista = 1, bonus = 6, type = "ice", cd = 23}, move8 = {spell = "Ice Beam", minLv = 73, base1 = 100, base2 = 187, dista = 5, target = "no", bonus = 10, type = "ice", cd = 17}, move9 = {spell = "Hypnosis", minLv = 65, base1 = 0, base2 = 0, dista = 3, bonus = 4.5, type = "psychic", cd = 19}, }, ['Abra'] = { move1 = {spell = "Confusion", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "psychic", target = "no", cd = 12}, move2 = {spell = "Restore", minLv = 13, base1 = 70, base2 = 140, dista = 100, bonus = 5, target = "no", type = "normal", cd = 26}, move3 = {spell = "Psy Pulse", minLv = 1, base1 = 135, base2 = 165, dista = 5, bonus = 6, type = "psychic", cd = 18}, move4 = {spell = "Calm Mind", minLv = 29, base1 = 75, base2 = 76, dista = 10, bonus = 2.3, target = "no", type = "Psychic", cd = 15}, }, ['Kadabra'] = { move1 = {spell = "Psychic", minLv = 47, base1 = 50, base2 = 60, dista = 5, bonus = 4.7, type = "psychic", target = "no", cd = 23}, move2 = {spell = "Psy Wave", minLv = 48, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "psychic", cd = 15}, move3 = {spell = "Psy Pulse", minLv = 1, base1 = 135, base2 = 165, dista = 5, bonus = 6, type = "psychic", cd = 18}, move4 = {spell = "Confusion", minLv = 45, base1 = 133, base2 = 146, dista = 6, bonus = 3.6, target = "no", type = "psychic", cd = 30}, move5 = {spell = "Psychic", minLv = 47, base1 = 120, base2 = 145, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 30}, move6 = {spell = "Calm Mind", minLv = 45, base1 = 143, base2 = 196, dista = 7, target = "no", bonus = 5.6, type = "psychic", cd = 35}, move7 = {spell = "Hypnosis", minLv = 45, base1 = 156, base2 = 178, dista = 5, bonus = 4, type = "ghost", cd = 12}, move8 = {spell = "Reflect", minLv = 60, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 30}, move9 = {spell = "Restore", minLv = 60, base1 = 200, base2 = 250, dista = 3, target = "no", bonus = 4, type = "psychic", cd = 40}, }, ['Alakazam'] = { move1 = {spell = "Psychic", minLv = 80, base1 = 80, base2 = 90, dista = 5, bonus = 8, type = "psychic", target = "no", cd = 15}, move2 = {spell = "Psybeam", minLv = 1, base1 = 135, base2 = 245, dista = 5, bonus = 14, type = "psychic", target = "no", cd = 10}, move3 = {spell = "Psy Pulse", minLv = 70, base1 = 175, base2 = 185, dista = 5, bonus = 6, type = "psychic", cd = 10}, move4 = {spell = "Confusion", minLv = 80, base1 = 196, base2 = 208, dista = 5, target = "no", bonus = 4.6, type = "Psychic", cd = 30}, move5 = {spell = "Psychic", minLv = 80, base1 = 170, base2 = 210, dista = 5, target = "no", bonus = 5, type = "psychic", cd = 15}, move6 = {spell = "Psyusion", minLv = 80, base1 = 456, base2 = 488, dista = 5, target = "no", bonus = 4.6, type = "Psychic", cd = 40}, move7 = {spell = "Psy Wave", minLv = 48, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "psychic", cd = 10}, move8 = {spell = "Reflect", minLv = 95, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 30}, }, ['Machop'] = { move1 = {spell = "Doubleslap", minLv = 5, base1 = 5, base2 = 15, dista = 1, bonus = 1, type = "normal", cd = 7}, move2 = {spell = "Mega Punch", minLv = 5, base1 = 50, base2 = 150, dista = 1, bonus = 1, type = "fighting", cd = 9}, move3 = {spell = "Karate Chop", minLv = 5, base1 = 25, base2 = 45, dista = 1, bonus = 3, type = "fighting", cd = 13}, move4 = {spell = "Ground Chop", minLv = 24, base1 = 78, base2 = 88, dista = 5, target = "No", bonus = 2.7, type = "Fighting", cd = 25}, move5 = {spell = "Strafe", minLv = 30, base1 = 50, base2 = 70, dista = 5, target = "No", bonus = 2.7, type = "speed", cd = 25}, }, ['Machoke'] = { move1 = {spell = "Doubleslap", minLv = 25, base1 = 25, base2 = 105, dista = 1, bonus = 3, type = "fighting", cd = 7}, move2 = {spell = "Mega Punch",minLv = 25, base1 = 100 ,base2 = 200, dista = 1, bonus = 3, type = "fighting", cd = 9}, move3 = {spell = "Mega Kick", minLv = 25, base1 = 25, base2 = 105, dista = 1, bonus = 3, type = "fighting", cd = 10}, move4 = {spell = "Karate Chop", minLv = 49, base1 = 96, base2 = 107, dista = 1, bonus = 3.5, type = "Fighting", cd = 25}, move5 = {spell = "Ground Chop", minLv = 45, base1 = 80, base2 = 110, dista = 1, bonus = 3.7, type = "fighting", cd = 30}, move6 = {spell = "Fist Machine", minLv = 49, base1 = 126, base2 = 157, target = "no", bonus = 3.8, type = "fighting", cd = 35}, move7 = {spell = "Multi Punch", minLv = 60, base1 = 113, base2 = 138, dista = 1, bonus = 4, type = "fighting", cd = 25}, }, ['Machamp'] = { move1 = {spell = "Doubleslap", minLv = 65, base1 = 165, base2 = 175, dista = 1, bonus = 6.5, type = "fighting", cd = 7}, move2 = {spell = "Mega Punch", minLv = 65, base1 = 165, base2 = 200, dista = 1, bonus = 6, type = "fighting", cd = 9}, move3 = {spell = "Mega Kick", minLv = 65, base1 = 165, base2 = 175, dista = 1, bonus = 5.5, type = "fighting", cd = 10}, move4 = {spell = "Karate Chop", minLv = 70, base1 = 166, base2 = 179, dista = 5, target = "yes", bonus = 4.7, type = "Fighting", cd = 25}, move5 = {spell = "Ground Chop", minLv = 70, base1 = 150, base2 = 180, dista = 1, bonus = 5, target = "no", type = "fighting", cd = 27}, move6 = {spell = "Fist Machine", minLv = 70, base1 = 196, base2 = 219, target = "no", bonus = 8, type = "fighting", cd = 30}, move7 = {spell = "Destroyer Hand", minLv = 70, base1 = 196, base2 = 219, target = "no", bonus = 14, type = "fighting", cd = 30}, move8 = {spell = "Strafe", minLv = 70, base1 = 120, base2 = 180, dista = 4, target = "no", bonus = 5, type = "normal", cd = 27}, }, ['Bellsprout'] = { move1 = {spell = "Razor Leaf", minLv = 10, base1 = 10, base2 = 21, target = "yes", dista = 1, bonus = 1, type = "grass", cd = 11}, move2 = {spell = "Vine Whip", minLv = 7, base1 = 50, base2 = 60, dista = 2, target = "no", bonus = 3, type = "grass", cd = 19}, move3 = {spell = "Acid", minLv = 10, base1 = 34, base2 = 44, dista = 4, bonus = 2, type = "poison", cd = 1}, move4 = {spell = "Slash", minLv = 5, base1 = 66, base2 = 74, dista = 4, bonus = 2.2, type = "Normal", cd = 16}, }, ['Weepinbell'] = { move1 = {spell = "Razor Leaf", minLv = 25, base1 = 30, base2 = 40, target = "yes", dista = 1, bonus = 2.5, type = "grass", cd = 11}, move2 = {spell = "Vine Whip", minLv = 20, base1 = 120, base2 = 150, target = "no", dista = 2, bonus = 4, type = "grass", cd = 19}, move3 = {spell = "Acid", minLv = 18, base1 = 94, base2 = 124, dista = 4, bonus = 3, type = "poison", cd = 14}, move4 = {spell = "Poison Bomb", minLv = 27, base1 = 102, base2 = 116, dista = 4, bonus = 4, type = "Poison", cd = 16}, move5 = {spell = "Slash", minLv = 25, base1 = 80, base2 = 120, dista = 1, bonus = 3.5, type = "normal", cd = 11}, move6 = {spell = "Stun Spore", minLv = 30, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 70}, }, ['Victreebel'] = { move1 = {spell = "Razor Leaf", minLv = 50, base1 = 50, base2 = 60, dista = 4, target = "yes", bonus = 6, type = "grass", cd = 11}, move2 = {spell = "Vine Whip", minLv = 20, base1 = 120, base2 = 150, target = "no", dista = 2, bonus = 4, type = "grass", cd = 19}, move3 = {spell = "Acid", minLv = 18, base1 = 234, base2 = 344, dista = 4, bonus = 4, type = "poison", cd = 14}, move4 = {spell = "Poison Bomb", minLv = 50, base1 = 146, base2 = 168, dista = 4, bonus = 5.4, type = "poison", cd = 16}, move5 = {spell = "Stun Spore", minLv = 50, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 70}, move6 = {spell = "Stun Spore", minLv = 50, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 70}, move7 = {spell = "Leaf Blade", minLv = 54, base1 = 300, base2 = 400, dista = 1, bonus = 5, type = "grass", cd = 33}, move8 = {spell = "Sleep Powder", minLv = 55, base1 = 0, base2 = 0, dista = 1, bonus = 0, type = "grass", cd = 20}, move9 = {spell = "Leaf Storm", minLv = 65, base1 = 100, base2 = 300, dista = 5, target = "no", bonus = 5, type = "grass", cd = 48}, }, ['Tentacool'] = { move1 = {spell = "Acid", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5.8, type = "poison", cd = 11}, move2 = {spell = "Bubbles", minLv = 20, base1 = 60, base2 = 75, dista = 4, target = "yes", bonus = 3.5, type = "water", cd = 8}, move3 = {spell = "Poison Sting", minLv = 30, base1 = 50, base2 = 90, dista = 4, bonus = 10, type = "poison", cd = 12}, move4 = {spell = "Psy Pulse", minLv = 17, base1 = 85, base2 = 90, dista = 5, target = "yes", bonus = 2.1, type = "Psychic", cd = 22}, move5 = {spell = "Mud Shot", minLv = 19, base1 = 20, base2 = 35, dista = 4, bonus = 2.5, type = "ground", cd = 15}, move6 = {spell = "Super Sonic", minLv = 21, base1 = 25, base2 = 35, dista = 3, bonus = 2.1, type = "normal", cd = 25}, }, ['Tentacruel'] = { move1 = {spell = "Acid", minLv = 70, base1 = 50, base2 = 60, dista = 1, bonus = 5.8, type = "poison", cd = 11}, move2 = {spell = "Bubbles", minLv = 50, base1 = 80, base2 = 90, dista = 1, target = "yes", bonus = 7 ,type = "water", cd = 8}, move3 = {spell = "Poison Sting", minLv = 30, base1 = 50, base2 = 90, dista = 4, bonus = 10, type = "poison", cd = 12}, move4 = {spell = "Waterball", minLv = 75, base1 = 125, base2 = 130, dista = 3, bonus = 3.2, type = "Water", cd = 22}, move5 = {spell = "Poison Sting", minLv = 75, base1 = 135, base2 = 140, dista = 1, bonus = 3.3, type = "poison", cd = 20}, move6 = {spell = "Poison Bomb", minLv = 75, base1 = 174, base2 = 184, dista = 4, bonus = 10, type = "poison", cd = 14}, move7 = {spell = "Psywave", minLv = 80, base1 = 125, base2 = 150, dista = 5, target = "no", bonus = 3.5, type = "psychic", cd = 15}, move8 = {spell = "Psy Pulse", minLv = 83, base1 = 125, base2 = 130, dista = 3, bonus = 3.5, type = "psychic", cd = 15}, }, ['Geodude'] = { move1 = {spell = "Rock Throw", minLv = 15, base1 = 15, base2 = 25, dista = 5, bonus = 1.5, type = "rock", cd = 14}, move2 = {spell = "Sand Attack", minLv = 1, base1 = 55, base2 = 62 ,dista = 10, bonus = 3, target = "no", type = "ground", cd = 16}, move3 = {spell = "Rock Slide", minLv = 16, base1 = 85, base2 = 100, dista = 5, bonus = 3.9, type = "rock", cd = 20}, move4 = {spell = "Earthshock", minLv = 25, base1 = 76, base2 = 99, dista = 3, target = "no", bonus = 2.3, type = "ground", cd = 20}, move5 = {spell = "Harden", minLv = 20, lpl = 32, life = 700, base1 = 0, base2 = 0, dista = 100, target = "no", bonus = 0, type = "normal", cd = 20}, }, ['Graveler'] = { move1 = {spell = "Rock Throw", minLv = 40, base1 = 40, base2 = 50, dista = 5, bonus = 4, type = "rock", cd = 14}, move2 = {spell = "Sand Attack", minLv = 1, base1 = 115, base2 = 122, dista = 1, bonus = 4, type = "ground", cd = 16}, move3 = {spell = "Rock Slide", minLv = 41, base1 = 205, base2 = 206, dista = 4, bonus = 4.8, type = "rock", cd = 20}, move4 = {spell = "Earthshock", minLv = 40, base1 = 115, base2 = 126, dista = 3, target = "no", bonus = 3.4, type = "ground", cd = 15}, move5 = {spell = "Falling Rocks", minLv = 50, base1 = 115, base2 = 126, dista = 5, target = "no", bonus = 3.5, type = "rock", cd = 35}, move6 = {spell = "Harden", minLv = 45, ex = 7500006, lpl = 85, life = 3000, base1 = 0, base2 = 0, dista = 100, target = "no", bonus = 0, type = "normal", cd = 35}, move7 = {spell = "Selfdestruct", minLv = 42, base1 = 1500, base2 = 2000, dista = 10, bonus = 21, type = "fire", target = "no", cd = 3}, }, ['Golem'] = { move1 = {spell = "Rock Throw", minLv = 70, base1 = 70, base2 = 80, dista = 5, bonus = 7, type = "rock", cd = 14}, move2 = {spell = "Sand Attack", minLv = 1, base1 = 215, base2 = 222, dista = 1, bonus = 5, target = "no", type = "ground", cd = 16}, move3 = {spell = "Rock Slide", minLv = 71, base1 = 385, base2 = 400, dista = 4, bonus = 5.8, type = "rock", cd = 20}, move4 = {spell = "Rollout", minLv = 35, base1 = 95, base2 = 113, dista = 3, bonus = 4.7, type = "rock", target = "no", cd = 30}, move5 = {spell = "Falling Rocks", minLv = 75, base1 = 200, base2 = 300, dista = 5, target = "no", bonus = 6, type = "rock", cd = 20}, move6 = {spell = "Harden", minLv = 70, lpl = 111, life = 6500, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35}, move7 = {spell = "Earthquake", minLv = 73, base1 = 300, base2 = 301, dista = 10, bonus = 10, type = "ground",target = "no", cd = 40}, move8 = {spell = "Earthshock", minLv = 70, base1 = 255, base2 = 290, dista = 5, target = "no", bonus = 5.9, type = "ground", cd = 20}, move9 = {spell = "Selfdestruct", minLv = 75, base1 = 480, base2 = 790, dista = 5, target = "no", bonus = 6, type = "normal", cd = 100}, }, ['Ponyta'] = { move1 = {spell = "Quick Attack", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 7}, move2 = {spell = "Ember", minLv = 20, base1 = 60, base2 = 75, dista = 5, bonus = 3.8, type = "fire", cd = 12}, move3 = {spell = "Flamethrower", minLv = 20, base1 = 170, base2 = 181, target = "no", bonus = 5, type = "fire", cd = 30}, move4 = {spell = "Fireball", minLv = 23, base1 = 88, base2 = 106, dista = 4, bonus = 3.6, type = "Fire", cd = 15}, move5 = {spell = "Stomp", minLv = 28, base1 = 60, base2 = 110, dista = 5, bonus = 4, target = "no", type = "ground", cd = 10}, }, ['Rapidash'] = { move1 = {spell = "Quick Attack", minLv = 50, base1 = 50, base2 = 120, dista = 1, bonus = 5, type = "normal", cd = 7}, move2 = {spell = "Ember", minLv = 50, base1 = 220, base2 = 235, dista = 5, bonus = 5, type = "fire", cd = 12}, move3 = {spell = "Flamethrower", minLv = 50, base1 = 370, base2 = 381, target = "no", bonus = 8, type = "fire", cd = 30}, move4 = {spell = "Fireball", minLv = 50, minLv = 58, base1 = 147, base2 = 156, dista = 4, bonus = 4.3, type = "Fire", cd = 15}, move5 = {spell = "Horn Attack", minLv = 55, base1 = 100, base2 = 160, dista = 1, target = "yes", bonus = 4.5, type = "normal", cd = 10}, move6 = {spell = "Stomp", minLv = 63, base1 = 127, base2 = 136, dista = 5, target = "no", bonus = 4.3, type = "ground", cd = 30}, move7= {spell = "Crusher Stomp", minLv = 63, base1 = 157, base2 = 176, dista = 5, target = "no", bonus = 4, type = "ground", cd = 40}, }, ['Slowpoke'] = { move1 = {spell = "Aqua Tail", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "water", cd = 10}, move2 = {spell = "Headbutt", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 8}, move3 = {spell = "Iron Tail", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 5, type = "normal", cd = 8}, move4 = {spell = "Waterball", minLv = 18, base1 = 73, base2 = 84, dista = 4, bonus = 2.2, type = "Water", cd = 20}, move5 = {spell = "Water Gun", minLv = 20, base1 = 50, base2 = 80, dista = 4, target = "no", bonus = 2.5, type = "water", cd = 7}, move6 = {spell = "Confusion", minLv = 25, base1 = 93, base2 = 114, dista = 5, target = "no", bonus = 2.2, type = "psychic", cd = 40}, }, ['Slowbro'] = { move1 = {spell = "Aqua Tail", minLv = 20, base1 = 50, base2 = 120, dista = 1, bonus = 5, type = "water", cd = 10}, move2 = {spell = "Headbutt", minLv = 20, base1 = 50, base2 = 120, dista = 1, bonus = 5, type = "normal", cd = 8}, move3 = {spell = "Iron Tail", minLv = 20, base1 = 75, base2 = 80, dista = 1, bonus = 9, type = "normal", cd = 7}, move4 = {spell = "Waterball", minLv = 45, base1 = 98, base2 = 118, dista = 4, bonus = 3.6, type = "Water", cd = 20}, move5 = {spell = "Water Gun", minLv = 45, base1 = 70, base2 = 120, dista = 4, bonus = 3.9, target = "no", type = "water", cd = 12}, move6 = {spell = "Confusion", minLv = 45, base1 = 118, base2 = 138, dista = 5, target = "no", bonus = 3.6, type = "psychic", cd = 40}, move7 = {spell = "Psy Wave", minLv = 45, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "psychic", cd = 15}, move8 = {spell = "Psychic", minLv = 55, base1 = 70, base2 = 120, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 32}, }, ['Magnemite'] = { move1 = {spell = "Super Sonic", minLv = 15, base1 = 15, base2 = 25, dista = 5, bonus = 1.5, type = "normal", cd = 15}, move2 = {spell = "Thundershock", minLv = 1, base1 = 49, base2 = 62, dista = 5, bonus = 3.4, type = "electric", cd = 14}, move3 = {spell = "Thunder Wave", minLv = 1, base1 = 48, base2 = 51, dista = 5, bonus = 3, target = "no", type = "electric", cd = 15}, move4 = {spell = "Thunder Fang", minLv = 55, base1 = 106, base2 = 116, dista = 3, bonus = 2.6, type = "electric", cd = 20}, move5 = {spell = "Sonicboom", minLv = 20, base1 = 60, base2 = 79, dista = 3, bonus = 3, type = "normal", cd = 15}, }, ['Magneton'] = { move1 = {spell = "Super Sonic", minLv = 40, base1 = 40, base2 = 50, dista = 5, bonus = 4, type = "normal", cd = 15}, move2 = {spell = "Thundershock", minLv = 1, base1 = 100, base2 = 118, dista = 5, bonus = 4.8, type = "electric", cd = 14}, move3 = {spell = "Thunder Wave", minLv = 1, base1 = 152, base2 = 163, dista = 5, bonus = 4.5, target = "no", type = "electric", cd = 15}, move4 = {spell = "Thunder Bolt", minLv = 40, base1 = 152, base2 = 163, dista = 5, bonus = 5, type = "electric", cd = 18}, move5 = {spell = "Thunder", minLv = 48, base1 = 112, base2 = 123, dista = 7, bonus = 3.5, target = "no", type = "electric", cd = 25}, move6 = {spell = "Electric Storm", minLv = 52, base1 = 142, base2 = 163, dista = 5, target = "no", bonus = 4, type = "electric", cd = 65}, move7 = {spell = "Sonicboom", minLv = 40, base1 = 152, base2 = 163, dista = 5, bonus = 5.5, type = "psychic", cd = 20}, }, ['Farfetchd'] = { move1 = {spell = "Sand Attack", minLv = 10, base1 = 70, base2 = 90, dista = 1, bonus = 7, type = "normal", cd = 10}, move2 = {spell = "Drill Peck", minLv = 10, base1 = 70, base2 = 90, dista = 1, bonus = 7, type = "normal", cd = 10}, move3 = {spell = "Slash", minLv = 10, base1 = 50, base2 = 75, dista = 1, bonus = 4, type = "normal", cd = 8}, move4 = {spell = "Stickmerang",minLv = 44, base1 = 88, base2 = 116, dista = 6, bonus = 3.3, target = "no", type = "flying", cd = 16}, move5 = {spell = "Fury Cutter", minLv = 38, base1 = 110, base2 = 119, dista = 1, bonus = 4, target = "no", type = "bug", cd = 15}, move6 = {spell = "Wing Attack", minLv = 46, base1 = 88, base2 = 116, dista = 5, target = "no", bonus = 3.3, type = "flying", cd = 35}, move7 = {spell = "Agility", minLv = 1, base1 = 200, base2 = 210, dista = 3, bonus = 7.5, type = "normal", cd = 15}, }, ['Doduo'] = { move1 = {spell = "Sand Attack", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "earth", cd = 8}, move2 = {spell = "Pluck", minLv = 1, base1 = 91, base2 = 98, dista = 1, bonus = 4, type = "flying", cd = 13}, move3 = {spell = "Fury Attack", minLv = 13, base1 = 25, base2 = 28, dista = 3, bonus = 1, type = "normal", cd = 11}, move4 = {spell = "Rage", minLv = 20, base1 = 70, base2 = 79, target = "no", dista = 1, bonus = 2.2, type = "normal", cd = 20}, move5 = {spell = "Strafe", minLv = 20, base1 = 80, base2 = 90, target = "no", dista = 5, target = "no", bonus = 2.5, type = "normal", cd = 20}, }, ['Dodrio'] = { move1 = {spell = "Sand Attack", minLv = 45, base1 = 50, base2 = 60, dista = 1, bonus = 4.5, type = "earth", cd = 6}, move2 = {spell = "Quick Attack", minLv = 1, base1 = 151, base2 = 168, dista = 1, bonus = 4, type = "normal", cd = 8}, move3 = {spell = "Fury Attack", minLv = 13, base1 = 49, base2 = 53, dista = 3, bonus = 1, type = "normal", cd = 11}, move4 = {spell = "Pluck", minLv = 50, base1 = 96, base2 = 113, dista = 3, bonus = 3.5, type = "normal", cd = 11}, move5 = {spell = "Rage", minLv = 50, base1 = 90, base2 = 110, dista = 1, bonus = 3.5, type = "normal", cd = 21}, move6 = {spell = "Strafe", minLv = 33, base1 = 52, base2 = 68, dista = 5, target = "no", bonus = 3.3, type = "normal", cd = 25}, }, ['Seel'] = { move1 = {spell = "Aqua Tail", minLv = 1, base1 = 91, base2 = 98, dista = 1, bonus = 3, type = "water", cd = 10}, move2 = {spell = "Headbutt", minLv = 1, base1 = 91, base2 = 98, dista = 1, bonus = 4, type = "ice", cd = 9}, move3 = {spell = "Ice Shards", minLv = 1, base1 = 150, base2 = 151, dista = 4, bonus = 5.4, type = "ice", cd = 22}, move4 = {spell = "Ice Beam", minLv = 26, base1 = 85, base2 = 99, dista = 4, bonus = 2.3, target = "no", type = "Ice", cd = 26}, move5 = {spell = "Icy Wind", minLv = 28, base1 = 60, base1 = 60, base2 = 100, dista = 5, bonus = 2.5, target = "no", type = "ice", cd = 14}, move6 = {spell = "Aurora Beam", minLv = 40, base1 = 155, base2 = 189, dista = 4, target = "no", bonus = 3.3, type = "Ice", cd = 30}, }, ['Dewgong'] = { move1 = {spell = "Aqua Tail", minLv = 1, base1 = 191, base2 = 218, dista = 1, bonus = 5, type = "water", cd = 10}, move2 = {spell = "Headbutt", minLv = 1, base1 = 191, base2 = 218, dista = 1, bonus = 4, type = "ice", cd = 9}, move3 = {spell = "Ice Shards", minLv = 70, base1 = 250, base2 = 251, dista = 4, bonus = 7.4, type = "ice", cd = 22}, move4 = {spell = "Ice Beam", minLv = 65, base1 = 125, base2 = 139, dista = 4, bonus = 3.3, target = "no", type = "Ice", cd = 26}, move5 = {spell = "Icy Wind", minLv = 65, base1 = 100, base2 = 145, dista = 5, bonus = 5.5, target = "no", type = "ice", cd = 25}, move6 = {spell = "Aurora Beam", minLv = 69, base1 = 155, base2 = 189, dista = 4, target = "no", bonus = 3.3, type = "Ice", cd = 30}, move7 = {spell = "Blizzard", minLv = 65, base1 = 480, base2 = 500, dista = 5, target = "no", bonus = 8, type = "Ice", cd = 45}, move8 = {spell = "Restore", minLv = 35, base1 = 180, base2 = 240, dista = 5, target = "no", bonus = 2.9, type = "psychic", cd = 10}, }, ['Grimer'] = { move1 = {spell = "Mud Shot", minLv = 15, base1 = 15, base2 = 25, dista = 5, bonus = 1.5, type = "earth", cd = 10}, move2 = {spell = "Acid", minLv = 6, base1 = 60, base2 = 70, dista = 5, bonus = 5, type = "poison", cd = 14}, move3 = {spell = "Sludge", minLv = 14, base1 = 60, base2 = 70, dista = 5, bonus = 5, type = "poison", cd = 18}, move4 = {spell = "Mud Bomb", minLv = 17, base1 = 70, base2 = 80, dista = 3, bonus = 2.2, type = "ground", cd = 15}, move5 = {spell = "Poison Bomb", minLv = 22, base1 = 70, base2 = 80, dista = 4, bonus = 2.5, type = "poison", cd = 15}, move6 = {spell = "Harden", minLv = 22, ex = 8800006, lpl = 30, life = 600, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35}, }, ['Muk'] = { move1 = {spell = "Mud Shot", minLv = 35, base1 = 35, base2 = 45, dista = 5, bonus = 3.5, type = "earth", cd = 10}, move2 = {spell = "Acid", minLv = 6, base1 = 110, base2 = 120, dista = 5, bonus = 5.5, type = "poison", cd = 14}, move3 = {spell = "Sludge", minLv = 14, minLv = 14, base1 = 150, base2 = 160, dista = 5, bonus = 6, type = "poison", cd = 18}, move4 = {spell = "Mud Bomb", minLv = 35, base1 = 115, base2 = 126, dista = 5, bonus = 3.5, type = "ground", cd = 14}, move5 = {spell = "Poison Bomb", minLv = 40, base1 = 115, base2 = 126, dista = 4, bonus = 3.5, type = "poison", cd = 14}, move6 = {spell = "Body Slam", minLv = 89, base1 = 230, base2 = 255, dista = 1, bonus = 6.4, type = "normal", cd = 40}, move7 = {spell = "Harden", minLv = 47, lpl = 30, life = 600, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35}, }, ['Shellder'] = { move1 = {spell = "Lick", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 2, type = "normal", cd = 10}, move2 = {spell = "Super Sonic", minLv = 15, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move3 = {spell = "Clamp", minLv = 15, base1 = 20, base2 = 30, dista = 1, bonus = 3, type = "normal", cd = 6}, move4 = {spell = "Bubbles", minLv = 15, base1 = 65, base2 = 76, dista = 5, target = "yes", bonus = 2.3, type = "Water", cd = 10}, move5 = {spell = "Ice Beam", minLv = 22, base1 = 40, base2 = 80, dista = 4, bonus = 5, target = "no", type = "ice", cd = 14}, move6 = {spell = "Harden", minLv = 18, lpl = 45, life = 800, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35}, }, ['Cloyster'] = { move1 = {spell = "Lick", minLv = 35, base1 = 35, base2 = 45, dista = 1, bonus = 3.5, type = "normal", cd = 10}, move2 = {spell = "Super Sonic", minLv = 35, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move3 = {spell = "Clamp", minLv = 35, base1 = 50, base2 = 100, dista = 1, bonus = 6, type = "normal", cd = 6}, move4 = {spell = "Bubbles", minLv = 60, base1 = 126, base2 = 136, dista = 5, target = "yes", bonus = 3.8, type = "Water", cd = 10}, move5 = {spell = "Ice Beam", minLv = 60, base1 = 100, base2 = 136, dista = 4, bonus = 10, target = "no", type = "ice", cd = 14}, move6 = {spell = "Aurora Beam", minLv = 64, base1 = 186, base2 = 206, dista = 4, target = "no", bonus = 3.8, type = "ice", cd = 28}, move7 = {spell = "Blizzard", minLv = 64, base1 = 450, base2 = 500, dista = 5, target = "no", bonus = 7, type = "Ice", cd = 45}, move8 = {spell = "Harden", minLv = 62, lpl = 155, life = 5000, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "normal", cd = 8}, }, ['Gastly'] = { move1 = {spell = "Lick", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 8 }, move2 = {spell = "Shadow Ball", minLv = 20, ex = 9200002, base1 = 20, base2 = 30, dista = 5, bonus = 2, type = "ghost", cd = 11 }, move3 = {spell = "Night Shade", minLv = 20, ex = 9200003, base1 = 100, base2 = 101, dista = 4, bonus = 5, type = "ghost", cd = 25 }, move4 = {spell = "Invisible", minLv = 24, ex = 9200004, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 2.5, type = "Ghost", cd = 17 }, move5 = {spell = "Hypnosis", minLv = 28, ex = 9200005, base1 = 0, base2 = 0, dista = 3, bonus = 2.9, type = "psychic", cd = 5 }, move6 = {spell = "Fear", minLv = 30, ex = 9200006, base1 = 0, base2 = 0, dista = 5, bonus = 2.5, type = "ghost", cd = 50 }, }, ['Haunter'] = { move1 = {spell = "Lick", minLv = 47, ex = 9300001, base1 = 50, base2 = 60, dista = 1, bonus = 4.7, type = "normal", cd = 8 }, move2 = {spell = "Shadow Ball", minLv = 47, ex = 9300002, base1 = 50, base2 = 60, dista = 5, bonus = 4.7, type = "ghost", cd = 11 }, move3 = {spell = "Night Shade", minLv = 47, ex = 9300003, base1 = 150, base2 = 151, dista = 4, bonus = 6, type = "ghost", cd = 25 }, move4 = {spell = "Shadow Storm", minLv = 60, ex = 9300004, base1 = 206, base2 = 218, dista = 5, target = "no", bonus = 3.3, type = "Ghost", cd = 40 }, move5 = {spell = "Invisible", minLv = 60, ex = 9300004, base1 = 206, base2 = 218, dista = 5, target = "no", bonus = 3.3, type = "Ghost", cd = 17}, move6 = {spell = "Dream Eater", minLv = 50, ex = 9300006, base1 = 156, base2 = 178, dista = 3, bonus = 3.3, type = "ghost", cd = 15 }, move7 = {spell = "Hypnosis", minLv = 50, ex = 9300007, base1 = 156, base2 = 178, dista = 5, bonus = 4, type = "ghost", cd = 8 }, move8 = {spell = "Fear", minLv = 45, ex = 9300008, base1 = 0, base2 = 0, dista = 3, bonus = 3.5, type = "ghost", cd = 16 }, }, ['Gengar'] = { move1 = {spell = "Lick", minLv = 80, ex = 9400001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 8 }, move2 = {spell = "Shadow Ball", minLv = 80, ex = 9400002, base1 = 80, base2 = 90, dista = 5, bonus = 8, type = "ghost", cd = 11 }, move3 = {spell = "Shadow Punch", minLv = 80, ex = 9400003, base1 = 80, base2 = 110, dista = 1, bonus = 9, type = "ghost", cd = 15 }, move4 = {spell = "Night Shade", minLv = 84, ex = 9400004, base1 = 126, base2 = 139, dista = 5, target = "no", bonus = 4.4, type = "Ghost", cd = 25 }, move5 = {spell = "Shadow Storm", minLv = 86, ex = 9400005, base1 = 270, base2 = 350, dista = 5, target = "no", bonus = 4.5, type = "ghost", cd = 40 }, move6 = {spell = "Invisible", minLv = 24, ex = 9200014, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 2.5, type = "Ghost", cd = 17 }, move7 = {spell = "Dream Eater", minLv = 80, ex = 9400007, base1 = 200, base2 = 278, dista = 5, bonus = 8, type = "ghost", cd = 15 }, move8 = {spell = "Hypnosis", minLv = 80, ex = 9400008, base1 = 0, base2 = 0, dista = 3, bonus = 4.5, type = "ghost", cd = 40 }, move9 = {spell = "Fear", minLv = 86, ex = 9400009, base1 = 0, base2 = 0, dista = 4, bonus = 4.5, type = "ghost", cd = 10 }, }, ['Onix'] = { move1 = {spell = "Sand Attack", minLv = 40, ex = 9500001, base1 = 40, base2 = 50, dista = 5, bonus = 4, type = "earth", cd = 11 }, move2 = {spell = "Iron Tail", minLv = 40, ex = 9500002, base1 = 75, base2 = 90, dista = 5, bonus = 5, type = "normal", cd = 7 }, move3 = {spell = "Rock Throw", minLv = 40, ex = 9500003, base1 = 70, base2 = 80, dista = 5, bonus = 7, type = "rock", cd = 14 }, move4 = {spell = "Rock Slide", minLv = 50, ex = 9500004, base1 = 116, base2 = 133, dista = 4, bonus = 4, type = "rock", cd = 17 }, move5 = {spell = "Earthshock", minLv = 50, ex = 9500005, base1 = 100, base2 = 133, dista = 1, bonus = 4, target = "no", type = "ground", cd = 25 }, move6 = {spell = "Falling Rocks", minLv = 58, ex = 9500006, base1 = 156, base2 = 183, dista = 5, target = "no", bonus = 15, type = "rock", cd = 100 }, move7 = {spell = "Earthquake", minLv = 58, ex = 9500007, base1 = 300, base2 = 301, dista = 5, target = "no", bonus = 10, type = "rock", cd = 65 }, move8 = {spell = "Harden", minLv = 50, ex = 9500008, lpl = 150, life = 5300, base1 = 0, base2 = 0, dista = 4, target = "no", bonus = 0, type = "normal", cd = 25 }, }, ['Drowzee'] = { move1 = {spell = "Headbutt", minLv = 20, ex = 960001, base1 = 20, base2 = 30, dista = 1, bonus = 3, type = "normal", cd = 7 }, move2 = {spell = "Psybeam", minLv = 30, ex = 960002, base1 = 335, base2 = 345, dista = 5, bonus = 11, type = "psychic", target = "no", cd = 32 }, move3 = {spell = "Confusion", minLv = 20, ex = 960003, base1 = 40, base2 = 80, dista = 1, bonus = 2, type = "psychic", target = "no", cd = 12 }, move4 = {spell = "Hypnosis", minLv = 30, ex = 9600004, base1 = 68, base2 = 89, dista = 3, bonus = 2.4, type = "Psychic", cd = 5 }, move5 = {spell = "Fear", minLv = 32, ex = 9600005, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 35 }, }, ['Hypno'] = { move1 = {spell = "Headbutt", minLv = 20, ex = 970001, base1 = 85, base2 = 100, dista = 1, bonus = 6.5, type = "normal", cd = 7 }, move2 = {spell = "Psybeam", minLv = 50, ex = 970002, base1 = 435, base2 = 445, dista = 5, bonus = 14, type = "psychic", target = "no", cd = 32 }, move3 = {spell = "Psy Wave", minLv = 20, ex = 970003, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "psychic", cd = 15 }, move4 = {spell = "Confusion", minLv = 55, ex = 9700004, base1 = 121, base2 = 133, target = "no", dista = 4, bonus = 4.5, type = "Psychic", cd = 25 }, move5 = {spell = "Psychic", minLv = 58, ex = 9700005, base1 = 121, base2 = 133, target = "no", dista = 5, bonus = 4.8, type = "psychic", cd = 20 }, move6 = {spell = "Dream Eater", minLv = 55, ex = 9700006, base1 = 111, base2 = 143, target = "no", dista = 4, bonus = 5, type = "ghost", cd = 15 }, move7 = {spell = "Hypnosis", minLv = 55, ex = 9700007, base1 = 111, base2 = 143, dista = 4, bonus = 4, type = "ghost", cd = 5 }, move8 = {spell = "Focus", minLv = 45, ex = 4000007, base1 = 8, base2 = 9, dista = 5, bonus = 3, type = "normal", target = "no", cd = 50 }, }, ['Krabby'] = { move1 = {spell = "Bubbles", minLv = 20, ex = 980001, base1 = 60, base2 = 75, target = "yes", dista = 4, bonus = 3, type = "water", cd = 8 }, move2 = {spell = "Mud Shot", minLv = 20, ex = 980002, base1 = 60, base2 = 75, dista = 4, bonus = 3, type = "earth", cd = 8 }, move3 = {spell = "Bubble Beam", minLv = 20, ex = 980003, base1 = 75, base2 = 80, dista = 5, bonus = 5, target = "no", type = "water", cd = 18 }, move4 = {spell = "Crabhammer", minLv = 15, ex = 9800004, base1 = 55, base2 = 70, dista = 1, bonus = 2.2, type = "normal", cd = 18 }, move5 = {spell = "Harden", minLv = 13, ex = 9800004, lpl = 32, life = 850, base1 = 0, target = "no", base2 = 0, dista = 100, bonus = 0, type = "normal", cd = 17 }, }, ['Kingler'] = { move1 = {spell = "Bubbles", minLv = 20, ex = 990001, base1 = 120, target = "yes", base2 = 135, dista = 4, bonus = 5.6, type = "water", cd = 8 }, move2 = {spell = "Mud Shot", minLv = 20, ex = 990002, base1 = 120, base2 = 135, dista = 4, bonus = 6, type = "earth", cd = 8 }, move3 = {spell = "Bubble Beam", minLv = 20, ex = 990003, base1 = 200, base2 = 210, dista = 5, bonus = 7, target = "no", type = "water", cd = 18 }, move4 = {spell = "Crabhammer", minLv = 40, ex = 9900004, base1 = 82, base2 = 96, dista = 1, bonus = 3.3, type = "normal", cd = 18 }, move5 = {spell = "Fury Cutter", minLv = 45, ex = 9900005, base1 = 70, base2 = 96, dista = 1, bonus = 3, target = "no", type = "bug", cd = 19 }, move6 = {spell = "Guillotine", minLv = 50, ex = 9900006, base1 = 140, base2 = 156, dista = 1, bonus = 7.5, type = "normal", cd = 35 }, move7 = {spell = "Harden", minLv = 50, ex = 9900007, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35 }, }, ['Voltorb'] = { move1 = {spell = "Thunder Shock", minLv = 10, ex = 1000001, base1 = 10, base2 = 20, dista = 5, bonus = 1, type = "electric", cd = 16 }, move2 = {spell = "Spark", minLv = 1, ex = 1000002, base1 = 95, base2 = 112, target = "no", dista = 5, bonus = 4, type = "electric", cd = 16 }, move3 = {spell = "Thunder Wave", minLv = 1, ex = 1010003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Rollout", minLv = 15, ex = 1000003, base1 = 66, base2 = 79, dista = 3, target = "no", bonus = 3, type = "rock", cd = 30 }, move5 = {spell = "Selfdestruct", minLv = 20, ex = 1000005, base1 = 350, base2 = 600, dista = 5, target = "no", bonus = 10, type = "normal", cd = 3 }, }, ['Electrode'] = { move1 = {spell = "Thunder Shock", minLv = 35, ex = 1010001, base1 = 40, base2 = 50, dista = 5, bonus = 3.5, type = "electric", cd = 16 }, move2 = {spell = "Spark", minLv = 1, ex = 1010002, base1 = 105, base2 = 152, dista = 5, target = "no", bonus = 6, type = "electric", cd = 16 }, move3 = {spell = "Thunder Wave", minLv = 1, ex = 1010003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Rollout", minLv = 35, ex = 1010003, base1 = 95, base2 = 113, dista = 3, bonus = 4.7, type = "rock", target = "no", cd = 30 }, move5 = {spell = "Discharge", minLv = 40, ex = 1010005, base1 = 220, base2 = 250, dista = 5, target = "no", bonus = 4, type = "electric", cd = 19 }, move6 = {spell = "Electric Storm", minLv = 35, ex = 1010006, base1 = 105, base2 = 143, dista = 5, bonus = 4.7, type = "electric", target = "no", cd = 50 }, move7 = {spell = "Selfdestruct", minLv = 44, ex = 1010007, base1 = 1500, base2 = 2000, dista = 10, bonus = 18, type = "normal", target = "no", cd = 3 }, move8 = {spell = "Charge Beam", minLv = 40, ex = 1010008, base1 = 100, base2 = 187, dista = 5, target = "no", bonus = 10, type = "electric", cd = 19 }, }, ['Exeggcute'] = { move1 = {spell = "Hypnosis", minLv = 30, ex = 9600004, base1 = 68, base2 = 89, dista = 3, bonus = 2.4, type = "Psychic", cd = 5 }, move2 = {spell = "Leech Seed", minLv = 20, ex = 1020002, base1 = 15, base2 = 15, dista = 5, bonus = 1.5, type = "grass", cd = 20 }, move3 = {spell = "EggBomb", minLv = 60, ex = 1130003, base1 = 110, base2 = 190, dista = 3, bonus = 9, type = "normal", target = "yes", cd = 24 }, move4 = {spell = "Confusion", minLv = 16, ex = 1020004, base1 = 72, base2 = 86, dista = 5, target = "no", bonus = 2.3, type = "Psychic", cd = 30 }, }, ['Exeggutor'] = { move1 = {spell = "Psychic", minLv = 80, ex = 1030001, base1 = 80, base2 = 90, dista = 5, bonus = 8, type = "psychic", target = "no", cd = 23 }, move2 = {spell = "Razor Leaf", minLv = 50, ex = 1030002, base1 = 220, base2 = 235, dista = 4, target = "yes", bonus = 5.5, type = "grass", cd = 12 }, move3 = {spell = "Leech Seed", minLv = 80, ex = 1030003, base1 = 80, base2 = 90, dista = 5, bonus = 4, type = "grass", target = "yes", cd = 20 }, move4 = {spell = "Confusion", minLv = 55, ex = 1030004, base1 = 105, base2 = 113, dista = 5, target = "no", bonus = 4, type = "Psychic", cd = 30 }, move5 = {spell = "Psybeam", minLv = 55, ex = 1030005, base1 = 120, base2 = 157, dista = 4, target = "no", bonus = 13, type = "psychic", cd = 25 }, move6 = {spell = "Solar Beam", minLv = 65, ex = 1030006, base1 = 125, base2 = 153, dista = 4, target = "no", bonus = 4, type = "grass", cd = 55 }, move7 = {spell = "Stun Spore", minLv = 65, ex = 1030006, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 28 }, move8 = {spell = "Poison Powder", minLv = 55, ex = 1030008, base1 = 30, base2 = 50, dista = 5, target = "no", bonus = 4, type = "poison", cd = 32 }, move9 = {spell = "Leaf Storm", minLv = 55, ex = 1030005, base1 = 270, base2 = 410, dista = 5, target = "no", bonus = 4, type = "grass", cd = 32 }, }, ['Cubone'] = { move1 = {spell = "Headbutt", minLv = 10, ex = 1050001, base1 = 55, base2 = 65, dista = 1, bonus = 6, type = "normal", cd = 7 }, move2 = {spell = "Bone Slash", minLv = 27, ex = 1040004, base1 = 60, base2 = 78, dista = 1, bonus = 1.5, target = "no", type = "ground", cd = 16 }, move3 = {spell = "Rage", minLv = 32, ex = 1040005, base1 = 60, base2 = 80, dista = 1, bonus = 1.7, type = "dragon", cd = 19 }, }, ['Marowak'] = { move1 = {spell = "Headbutt", minLv = 55, ex = 1050001, base1 = 55, base2 = 65, dista = 1, bonus = 6, type = "normal", cd = 7 }, move2 = {spell = "Slash", minLv = 55, ex = 1050002, base1 = 55, base2 = 65, dista = 1, bonus = 6, type = "normal", cd = 7 }, move3 = {spell = "Bone Club", minLv = 55, ex = 1050003, base1 = 155, base2 = 165, dista = 4, bonus = 8, type = "ground", cd = 17 }, move4 = {spell = "Bone Slash", minLv = 55, ex = 1050004, base1 = 115, base2 = 125, dista = 1, bonus = 4.3, target = "no", type = "ground", cd = 16 }, move5 = {spell = "Mud Shot", minLv = 55, ex = 1050005, base1 = 10, base2 = 30, dista = 3, bonus = 4.5, type = "ground", cd = 12 }, move6 = {spell = "Earthshock", minLv = 59, ex = 1050006, base1 = 145, base2 = 175, dista = 5, target = "no", bonus = 4.3, type = "ground", cd = 85 }, move7 = {spell = "Shockwave", minLv = 59, ex = 1050007, base1 = 150, base2 = 200, dista = 10, bonus = 4, type = "ground", target = "no", cd = 28 }, move8 = {spell = "Rage", minLv = 65, ex = 1050008, base1 = 100, base2 = 130, dista = 1, bonus = 4.5, type = "dragon", cd = 12 }, }, ['Hitmonlee'] = { move1 = {spell = "Triple Kick", minLv = 60, ex = 1060001, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "fighting", cd = 7 }, move2 = {spell = "Mega Kick", minLv = 60, ex = 1060002, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "fighting", cd = 7 }, move3 = {spell = "Mass Kick", minLv = 60, ex = 1060004, base1 = 143, base2 = 156, dista = 5, target = "no", bonus = 5, type = "Fighting", cd = 20 }, }, ['Hitmonchan'] = { move1 = {spell = "Triple Punch", minLv = 60, ex = 1070001, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "fighting", cd = 7 }, move2 = {spell = "Mega Punch", minLv = 60, ex = 1070002, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "fighting", cd = 7 }, move3 = {spell = "Fire Punch", minLv = 60, ex = 1070003, base1 = 113, base2 = 128, dista = 1, bonus = 5, type = "fire", cd = 20 }, move4 = {spell = "Ice Punch", minLv = 60, ex = 1070004, base1 = 113, base2 = 128, dista = 1, bonus = 4.5, type = "Ice", cd = 20 }, move5 = {spell = "Thunder Punch", minLv = 60, ex = 1070005, base1 = 113, base2 = 128, dista = 1, bonus = 4.5, type = "electric", cd = 15}, move6 = {spell = "Shadow Punch", minLv = 60, ex = 1070006, base1 = 113, base2 = 138, dista = 1, bonus = 4.5, type = "ghost", cd = 25 }, move7 = {spell = "Multi Punch", minLv = 60, ex = 1070007, base1 = 113, base2 = 138, dista = 1, bonus = 4, type = "fighting", cd = 25 }, move8 = {spell = "Fist Machine", minLv = 60, ex = 1070008, base1 = 196, base2 = 219, target = "no", bonus = 7, type = "fighting", cd = 25 }, }, ['Lickitung'] = { move1 = {spell = "Lick", minLv = 55, ex = 1080001, base1 = 55, base2 = 65, dista = 1, bonus = 5.5, type = "normal", cd = 7 }, move2 = {spell = "Scratch", minLv = 55, ex = 1080002, base1 = 55, base2 = 65, dista = 1, bonus = 5.5, type = "normal", cd = 7 }, move3 = {spell = "Doubleslap", minLv = 55, ex = 1080003, base1 = 80, base2 = 90, dista = 1, bonus = 7, type = "normal", cd = 6 }, move4 = {spell = "Mega Punch", minLv = 55, ex = 1080004, base1 = 128, base2 = 139, dista = 1, bonus = 3.2, type = "Fighting", cd = 25 }, move5 = {spell = lickitung, spell = "Iron Tail", minLv = 55, ex = 1080005, base1 = 100, base2 = 140, dista = 1, bonus = 3.5, type = "normal", cd = 25 }, move6 = {spell = "Squishy Licking", minLv = 60, ex = 1080006, base1 = 148, base2 = 159, dista = 5, target = "no", bonus = 4, type = "Normal", cd = 40 }, move7 = {spell = "Super Sonic", minLv = 60, ex = 1080007, base1 = 40, base2 = 50, dista = 5, bonus = 4, type = "normal", cd = 16 }, move8 = {spell = "Strafe", minLv = 55, ex = 1080008, base1 = 100, base2 = 140, dista = 1, target = "no", bonus = 3.5, type = "normal", cd = 25 }, }, ['Koffing'] = { move1 = {spell = "Mud Shot", minLv = 15, ex = 1090001, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "earth", cd = 7 }, move2 = {spell = "Acid", minLv = 15, ex = 4300002, base1 = 54, base2 = 64, dista = 4, bonus = 2.7, type = "poison", cd = 14 }, move3 = {spell = "Headbutt", minLv = 15, ex = 1090003, base1 = 55, base2 = 65, dista = 1, bonus = 2.5, type = "normal", cd = 7 }, move4 = {spell = "Mud Bomb", minLv = 18, ex = 1090004, base1 = 50, base2 = 65, dista = 1, bonus = 2, type = "ground", cd = 20 }, move5 = {spell = "Poison Bomb", minLv = 20, ex = 1090005, base1 = 50, base2 = 70, dista = 4, bonus = 2, type = "poison", cd = 20 }, move6 = {spell = "Poison Gas", minLv = 20, ex = 1090006, base1 = 50, base2 = 65, dista = 5, target = "no", bonus = 3, type = "poison", cd = 45 }, move7 = {spell = "Selfdestruct", minLv = 44, ex = 1010007, base1 = 1500, base2 = 2000, dista = 10, bonus = 18, type = "normal", target = "no", cd = 3 }, }, ['Weezing'] = { move1 = {spell = "Mud Shot", minLv = 35, ex = 1100001, base1 = 35, base2 = 45, dista = 1, bonus = 3.5, type = "earth", cd = 7 }, move2 = {spell = "Acid", minLv = 15, ex = 4300002, base1 = 54, base2 = 64, dista = 4, bonus = 2.7, type = "poison", cd = 14 }, move3 = {spell = "Headbutt", minLv = 35, ex = 1100003, base1 = 55, base2 = 65, dista = 1, bonus = 6, type = "normal", cd = 7 }, move4 = {spell = "Mud Bomb", minLv = 37, ex = 1100004, base1 = 90, base2 = 100, dista = 1, bonus = 3.3, type = "ground", cd = 20 }, move5 = {spell = "Poison Bomb", minLv = 40, ex = 1100005, base1 = 90, base2 = 100, dista = 4, bonus = 3.5, type = "poison", cd = 13 }, move6 = {spell = "Poison Gas", minLv = 35, ex = 1100006, base1 = 50, base2 = 65, dista = 5, target = "no", bonus = 4, type = "poison", cd = 45 }, move7 = {spell = "Mortal Gas", minLv = 35, ex = 1100007, base1 = 150, base2 = 165, dista = 5, target = "no", bonus = 5, type = "poison", cd = 60 }, move8 = {spell = "Selfdestruct", minLv = 50, ex = 1100008, base1 = 350, base2 = 580, dista = 5, target = "no", bonus = 3.5, type = "normal", cd = 13 }, }, ['Rhyhorn'] = { move1 = {spell = "Iron Tail", minLv = 30, ex = 1110001, base1 = 30, base2 = 40, dista = 1, bonus = 3, type = "normal", cd = 9 }, move2 = {spell = "Horn Attack", minLv = 30, ex = 1110002, base1 = 30, base2 = 40, target = "yes", dista = 1, bonus = 4, type = "normal", cd = 11 }, move3 = {spell = "Stomp", minLv = 30, ex = 1110003, base1 = 100, base2 = 101, dista = 50, bonus = 4, target = "no", type = "earth", cd = 17 }, move4 = {spell = "Horn Drill", minLv = 35, ex = 1110004, base1 = 180, base2 = 145, dista = 1, target = "yes", bonus = 2.7, type = "Normal", cd = 26 }, move5 = {spell = "Shockwave", minLv = 37, ex = 1110005, base1 = 50, base2 = 75, dista = 5, bonus = 1.9, target = "no", type = "ground", cd = 26 }, }, ['Rhydon'] = { move1 = {spell = "Iron Tail", minLv = 75, ex = 1120001, base1 = 75, base2 = 80, dista = 1, bonus = 7, type = "normal", cd = 9 }, move2 = {spell = "Horn Attack", minLv = 75, ex = 1120002, base1 = 75, base2 = 100, target = "yes", dista = 1, bonus = 9, type = "normal", cd = 11 }, move3 = {spell = "Rock Throw", minLv = 75, ex = 1120003, base1 = 120, base2 = 160, dista = 5, bonus = 7, type = "rock", cd = 14 }, move4 = {spell = "Stomp", minLv = 75, ex = 1120004, base1 = 110, base2 = 135, dista = 5, target = "no", bonus = 4.1, type = "ground", cd = 25 }, move5 = {spell = "Horn Drill", minLv = 75, ex = 1120005, base1 = 110, base2 = 135, dista = 1, target = "yes", bonus = 4.5, type = "normal", cd = 15 }, move6 = {spell = "Shockwave", minLv = 78, ex = 1120006, base1 = 140, base2 = 175, dista = 5, target = "no", bonus = 10, type = "ground", cd = 35 }, move7 = {spell = "Falling Rocks", minLv = 78, ex = 1120007, base1 = 156, base2 = 253, dista = 5, target = "no", bonus = 18, type = "rock", cd = 100 }, move8 = {spell = "Mega Horn", minLv = 82, ex = 1120008, base1 = 110, base2 = 300, dista = 3, bonus = 9, type = "rock", cd = 15 }, }, ['Chansey'] = { move1 = {spell = "Doubleslap", minLv = 60, ex = 1130001, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "normal", cd = 7 }, move2 = {spell = "EggBomb", minLv = 60, ex = 1130003, base1 = 110, base2 = 190, dista = 3, bonus = 9, type = "normal", target = "yes", cd = 13 }, move3 = {spell = "Great Love", minLv = 60, ex = 1130003, base1 = 110, base2 = 190, dista = 5, bonus = 9, type = "normal", target = "no", cd = 24 }, move4 = {spell = "Selfheal", minLv = 60, ex = 1130004, base1 = 100, base2 = 110, dista = 5, target = "no", bonus = 4, type = "Normal", cd = 32 }, move5 = {spell = "Healarea", minLv = 60, ex = 1130005, base1 = 270, base2 = 340, dista = 5, target = "no", bonus = 4, type = "normal", cd = 50 }, }, ['Tangela'] = { move1 = {spell = "Absorb", minLv = 50, ex = 1140001, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "grass", cd = 7 }, move2 = {spell = "Leech Seed", minLv = 50, ex = 1140002, base1 = 15, base2 = 25, dista = 5, bonus = 1.5, type = "grass", cd = 20 }, move3 = {spell = "Vine Whip", minLv = 50, ex = 1140003, base1 = 120, base2 = 150, target = "no", dista = 2, bonus = 7, type = "grass", cd = 19 }, move4 = {spell = "Super Vines", minLv = 58, ex = 1140004, base1 = 160, base2 = 215, dista = 5, target = "no", bonus = 3.5, type = "grass", cd = 22 }, move5 = {spell = "Poison Powder", minLv = 50, ex = 1140005, base1 = 30, base2 = 60, dista = 5, target = "no", bonus = 3.5, type = "poison", cd = 15 }, move6 = {spell = "Sleep Powder", minLv = 55, ex = 1140006, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 3.5, type = "grass", cd = 80 }, move7 = {spell = "Stun Spore", minLv = 55, ex = 1140007, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 3.5, type = "grass", cd = 25 }, }, ['Kangaskhan'] = { move1 = {spell = "Bite", minLv = 80, ex = 1150001, base1 = 80, base2 = 95, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Dizzy Punch", minLv = 80, ex = 1150002, base1 = 200, base2 = 210, dista = 1, bonus = 6, type = "fighting", cd = 22 }, move3 = {spell = "Headbutt", minLv = 80, ex = 1150003, base1 = 80, base2 = 95, dista = 1, bonus = 8, type = "normal", cd = 7 }, move4 = {spell = "Mega Punch", minLv = 80, ex = 1150004, base1 = 136, base2 = 149, dista = 1, bonus = 4, type = "Fighting", cd = 23 }, move5 = {spell = "Shockwave", minLv = 80, ex = 1150005, base1 = 136, base2 = 149, dista = 5, target = "no", bonus = 4, type = "ground", cd = 25 }, move6 = {spell = "Earthshock", minLv = 86, ex = 1150006, base1 = 136, base2 = 159, dista = 5, target = "no", bonus = 4, type = "ground", cd = 40 }, move7 = {spell = "Epicenter", minLv = 86, ex = 1150006, base1 = 136, base2 = 159, dista = 5, target = "no", bonus = 8.5, type = "ground", cd = 100 }, move8 = {spell = "Rage", minLv = 80, ex = 1150008, base1 = 136, base2 = 149, dista = 1, target = "yes", bonus = 4, type = "dragon", cd = 25 }, }, ['Horsea'] = { move1 = {spell = "Mud Shot", minLv = 10, ex = 1160001, base1 = 10, base2 = 21, dista = 4, bonus = 1, type = "earth", cd = 10 }, move2 = {spell = "Water Pulse", minLv = 10, ex = 1160002, base1 = 50, base2 = 55, dista = 4, target = "no", bonus = 3.5, type = "water", cd = 13 }, move3 = {spell = "Bubble Beam", minLv = 12, ex = 1160003, base1 = 75, base2 = 80, dista = 5, bonus = 5, target = "no", type = "water", cd = 18 }, move4 = {spell = "Water Gun", minLv = 12, ex = 1160004, base1 = 68, base2 = 78, dista = 4, bonus = 2.5, type = "water", cd = 15 }, move5 = {spell = "Waterball", minLv = 10, ex = 1160005, base1 = 30, base2 = 70, dista = 4, bonus = 2.7, type = "water", cd = 10 }, }, ['Seadra'] = { move1 = {spell = "Mud Shot", minLv = 45, ex = 1170001, base1 = 50, base2 = 60, dista = 5, bonus = 4.5, type = "earth", cd = 14 }, move2 = {spell = "Water Pulse", minLv = 6, ex = 1170002, base1 = 210, base2 = 215, dista = 4, target = "no", bonus = 5, type = "water", cd = 13 }, move3 = {spell = "Quick Attack", minLv = 45, ex = 1170003, base1 = 191, base2 = 210, dista = 1, bonus = 3, type = "normal", cd = 7 }, move4 = {spell = "Bubbles", minLv = 45, ex = 1170002, base1 = 110, base2 = 125, target = "yes", dista = 4, bonus = 3.4, type = "water", cd = 8 }, move5 = {spell = "Bubblebeam", minLv = 45, ex = 1170005, base1 = 150, base2 = 225, dista = 4, bonus = 7, target = "no", type = "water", cd = 13 }, move6 = {spell = "Water Gun", minLv = 45, ex = 1170006, base1 = 150, base2 = 235, dista = 4, target = "no", bonus = 10, type = "water", cd = 20 }, move7 = {spell = "Water Oath", minLv = 52, ex = 1170007, base1 = 380, base2 = 400, dista = 10, bonus = 7.2, type = "water", target = "no", cd = 29 }, move8 = {spell = "Hydro Cannon", minLv = 55, ex = 1170008, base1 = 190, base2 = 245, dista = 1, bonus = 13, target = "no", type = "water", cd = 30 }, }, ['Goldeen'] = { move1 = {spell = "Horn Attack", minLv = 30, ex = 1110002, base1 = 30, base2 = 40, target = "yes", dista = 1, bonus = 4, type = "normal", cd = 11 }, move2 = {spell = "Poison Sting", minLv = 10, ex = 1180002, base1 = 25, base2 = 65, dista = 4, bonus = 4, type = "poison", cd = 12 }, move3 = {spell = "Water Gun", minLv = 15, ex = 1190003, base1 = 45, base2 = 60, target = "no", dista = 2, bonus = 7, type = "water", cd = 19 }, move4 = {spell = "Water Pulse", minLv = 15, ex = 1190004, base1 = 45, base2 = 60, dista = 50, bonus = 2, target = "no", type = "water", cd = 15 }, move5 = {spell = "Aqua Tail", minLv = 12, ex = 1190005, base1 = 40, base2 = 60, dista = 1, bonus = 2.5, type = "water", cd = 12 }, move6 = {spell = "Super Sonic", minLv = 18, ex = 1190006, base1 = 25, base2 = 30, dista = 3, bonus = 2, type = "normal", cd = 25 }, }, ['Seaking'] = { move1 = {spell = "Agility", minLv = 75, ex = 1510001, base1 = 200, base2 = 210, dista = 3, bonus = 9, type = "normal", cd = 15 }, move2 = {spell = "Poison Sting", minLv = 35, ex = 1190002, base1 = 50, base2 = 90, dista = 4, bonus = 9, type = "poison", cd = 12 }, move3 = {spell = "Water Gun", minLv = 35, ex = 1190003, base1 = 45, base2 = 60, target = "no", dista = 2, bonus = 7, type = "water", cd = 19 }, move4 = {spell = "Water Pulse", minLv = 35, ex = 1190004, base1 = 105, base2 = 110, dista = 50, bonus = 3.3, target = "no", type = "Water", cd = 15 }, move5 = {spell = "Aqua Tail", minLv = 35, ex = 1190005, base1 = 110, base2 = 130, dista = 1, bonus = 3.5, type = "water", cd = 11 }, move6 = {spell = "Super Sonic", minLv = 35, ex = 1190006, base1 = 25, base2 = 30, dista = 3, bonus = 3.3, type = "normal", cd = 25 }, move7 = {spell = "Horn Drill", minLv = 35, ex = 1190006, base1 = 130, base2 = 160, dista = 5, bonus = 5, target = "yes", type = "normal", cd = 16 }, }, ['Staryu'] = { move1 = {spell = "Swift", minLv = 15, ex = 1200001, base1 = 15, base2 = 25, dista = 1, bonus = 3, type = "normal", cd = 8 }, move2 = {spell = "Slash", minLv = 15, ex = 1200002, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "normal", cd = 7 }, move3 = {spell = "Bubbles", minLv = 15, ex = 1200003, base1 = 60, base2 = 75, target = "yes", dista = 4, bonus = 4, type = "water", cd = 8 }, move4 = {spell = "Water Gun", minLv = 20, ex = 1200004, base1 = 55, base2 = 70, dista = 4, target = "no", bonus = 2, type = "Water", cd = 18 }, move5 = {spell = "Waterball", minLv = 22, ex = 1200005, base1 = 50, base2 = 70, dista = 4, bonus = 2.3, type = "water", cd = 11 }, move6 = {spell = "Restore", minLv = 30, ex = 1200006, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 2, type = "psychic", cd = 70 }, }, ['Starmie'] = { move1 = {spell = "Swift", minLv = 35, ex = 1210001, base1 = 35, base2 = 45, dista = 1, bonus = 7, type = "normal", cd = 8 }, move2 = {spell = "Slash", minLv = 35, ex = 1210002, base1 = 35, base2 = 45, dista = 1, bonus = 3.5, type = "normal", cd = 7 }, move3 = {spell = "Bubbles", minLv = 35, ex = 1210003, base1 = 120, base2 = 135, target = "yes", dista = 4, bonus = 6, type = "water", cd = 8 }, move4 = {spell = "Water Gun", minLv = 35, ex = 1210004, base1 = 95, base2 = 103, dista = 4, target = "no", bonus = 2.5, type = "Water", cd = 18 }, move5 = {spell = "Waterball", minLv = 35, ex = 1210005, base1 = 95, base2 = 120, dista = 4, bonus = 2.9, type = "water", cd = 10 }, move6 = {spell = "Psybeam", minLv = 42, ex = 1210006, base1 = 140, base2 = 185, dista = 4, target = "no", bonus = 3, type = "psychic", cd = 70 }, move7 = {spell = "Thunder Wave", minLv = 42, ex = 1210007, base1 = 112, base2 = 123, dista = 5, bonus = 7, target = "no", type = "thunder", cd = 15 }, move8 = {spell = "Restore", minLv = 35, ex = 1210008, base1 = 180, base2 = 240, dista = 5, target = "no", bonus = 2.9, type = "psychic", cd = 10 }, }, ['MrMime'] = { move1 = {spell = "Lovely Kiss", minLv = 1, ex = 1220001, base1 = 180, base2 = 190, dista = 1, bonus = 6, type = "normal", cd = 10 }, move2 = {spell = "Psychic", minLv = 1, ex = 1220002, base1 = 180, base2 = 190, dista = 5, bonus = 8, type = "psychic", target = "no", cd = 23 }, move3 = {spell = "Psychic", minLv = 1, ex = 1220003, base1 = 80, base2 = 90, dista = 5, bonus = 8, type = "psychic", target = "no", cd = 12 }, move4 = {spell = "Psyusion", minLv = 60, ex = 1220004, base1 = 305, base2 = 325, dista = 11, bonus = 3, target = "no", type = "psychic", cd = 40 }, move5 = {spell = "Reflect", minLv = 60, ex = 1220005, base1 = 180, base2 = 220, dista = 5, bonus = 3, target = "no", type = "psychic", cd = 20 }, move6 = {spell = "Mimic Wall", minLv = 60, ex = 1220006, base1 = 0, target = "no", base2 = 0, dista = 5, bonus = 3, type = "psychic", cd = 3 }, }, ['Scyther'] = { move1 = {spell = "Quick Attack", minLv = 80, ex = 1230001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Slash", minLv = 80, ex = 1130002, base1 = 50, base2 = 150, dista = 1, bonus = 5.5, type = "normal", cd = 7 }, move3 = {spell = "Wing Attack", minLv = 80, ex = 1130003, base1 = 120, base2 = 235, dista = 1, target = "no", bonus = 8, type = "flying", cd = 30 }, move4 = {spell = "Fury Cutter", minLv = 85, ex = 1230004, base1 = 255, base2 = 263, dista = 1, bonus = 3.5, target = "no", type = "Bug", cd = 25 }, move5 = {spell = "Guillotine", minLv = 90, ex = 1270006, base1 = 128, base2 = 148, dista = 1, bonus = 7, type = "normal", cd = 35 }, move6 = {spell = "X-Scissor", minLv = 90, ex = 1230006, base1 = 245, base2 = 253, dista = 3, target = "no", bonus = 4, type = "bug", cd = 45 }, move7 = {spell = "Agility", minLv = 90, ex = 1230007, base1 = 300, base2 = 320, dista = 3, bonus = 8, type = "normal", cd = 15 }, }, ['Jynx'] = { move1 = {spell = "Slash", minLv = 75, ex = 1240001, base1 = 80, base2 = 90, dista = 1, bonus = 7.5, type = "normal", cd = 7 }, move2 = {spell = "Doubleslap", minLv = 75, ex = 1240002, base1 = 80, base2 = 90, dista = 1, bonus = 7, type = "normal", cd = 6 }, move3 = {spell = "Psy Wave", minLv = 75, ex = 1240003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "Psychic", cd = 15 }, move4 = {spell = "Ice Punch", minLv = 75, ex = 1240003, base1 = 115, base2 = 125, dista = 1, bonus = 3.2, type = "Ice", cd = 25 }, move5 = {spell = "Icy Wind", minLv = 75, ex = 1240005, base1 = 145, base2 = 165, dista = 5, target = "no", bonus = 6.2, type = "ice", cd = 18 }, move6 = {spell = "Ice Beam", minLv = 75, ex = 1240006, base1 = 115, base2 = 150, dista = 5, target = "no", bonus = 12, type = "ice", cd = 20 }, move7 = {spell = "Aurora Beam", minLv = 75, ex = 1240007, base1 = 253, base2 = 285, dista = 4, target = "no", bonus = 15, type = "Ice", cd = 40 }, move8 = {spell = "Blizzard", minLv = 81, ex = 1240008, base1 = 115, base2 = 150, dista = 5, target = "no", bonus = 10, type = "ice", cd = 30 }, move9 = {spell = "Great Love", minLv = 83, ex = 1240009, base1 = 240, base2 = 320, dista = 5, target = "no", bonus = 3.5, type = "normal", cd = 26 }, }, ['Electabuzz'] = { move1 = {spell = "Quick Attack", minLv = 80, ex = 1250001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Thunder Punch", minLv = 80, ex = 1250022, base1 = 130, base2 = 220, dista = 1, bonus = 9, type = "electric", cd = 12 }, move3 = {spell = "Thunder Shock", minLv = 80, ex = 1250003, base1 = 80, base2 = 120, dista = 5, bonus = 7, type = "electric", cd = 13 }, move4 = {spell = "Thunder Fang", minLv = 80, ex = 1350004, base1 = 106, base2 = 116, dista = 1, bonus = 2.6, type = "electric", cd = 20 }, move5 = {spell = "Thunder Wave", minLv = 80, ex = 1250005, base1 = 110, base2 = 140, dista = 5, bonus = 5, target = "no", type = "electric", cd = 12 }, move6 = {spell = "Thunder", minLv = 80, ex = 1250006, base1 = 225, base2 = 237, dista = 5, target = "no", bonus = 5.5, type = "electric", cd = 21 }, move7 = {spell = "Zap Cannon", minLv = 84, ex = 1390009, base1 = 230, base2 = 270, dista = 4, bonus = 3.5, target = "yes", type = "electric", cd = 25 }, }, ['Magmar'] = { move1 = {spell = "Scratch", minLv = 80, ex = 1260001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Fire Punch", minLv = 80, ex = 1260002, base1 = 80, base2 = 110, dista = 1, bonus = 9, type = "fire", cd = 12 }, move3 = {spell = "Ember", minLv = 80, ex = 1260003, base1 = 220, base2 = 235, dista = 4, bonus = 6, type = "fire", cd = 13 }, move4 = {spell = "Flamethrower", minLv = 80, ex = 1260003, base1 = 175, base2 = 180, dista = 3, target = "no", bonus = 3.5, type = "Fire", cd = 16 }, move5 = {spell = "Fireball", minLv = 80, ex = 1260005, base1 = 120, base2 = 180, dista = 4, bonus = 3.5, type = "fire", cd = 12 }, move6 = {spell = "Fire Blast", minLv = 80, ex = 1260006, base1 = 185, base2 = 198, dista = 5, target = "no", bonus = 3.5, type = "fire", cd = 75 }, move7 = {spell = "Magma Storm", minLv = 80, ex = 1260007, base1 = 400, base2 = 420, dista = 5, bonus = 6.5, target = "no", type = "Fire", cd = 50 }, }, ['Pinsir'] = { move1 = {spell = "Scratch", minLv = 45, ex = 1270001, base1 = 45, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 7 }, move2 = {spell = "Bug Bite", minLv = 45, ex = 1270002, base1 = 45, base2 = 80, dista = 1, bonus = 7, type = "bug", cd = 7 }, move3 = {spell = "Slash", minLv = 45, ex = 1270003, base1 = 100, base2 = 105, dista = 1, bonus = 7, type = "ground", cd = 13 }, move4 = {spell = "X-Scissor", minLv = 50, ex = 1270003, base1 = 208, base2 = 345, dista = 1, bonus = 8, target = "no", type = "Bug", cd = 40 }, move5 = {spell = "Fury Cutter", minLv = 53, ex = 1270005, base1 = 110, base2 = 130, dista = 1, bonus = 3.5, target = "no", type = "bug", cd = 17 }, move6 = {spell = "Guillotine", minLv = 50, ex = 1270006, base1 = 128, base2 = 148, dista = 1, bonus = 7, type = "normal", cd = 35 }, move7 = {spell = "Harden", minLv = 50, ex = 1270007, lpl = 111, life = 6500, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35 }, move8 = {spell = "Rage", minLv = 60, ex = 1270008, base1 = 110, base2 = 130, dista = 1, bonus = 3.5, type = "dragon", cd = 17 }, }, ['Tauros'] = { move1 = {spell = "Headbutt", minLv = 45, ex = 1280001, base1 = 45, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 7 }, move2 = {spell = "Quick Attack", minLv = 45, ex = 1280002, base1 = 45, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 6 }, move3 = {spell = "Horn Attack", minLv = 45, ex = 1210003, base1 = 75, base2 = 100, target = "yes", dista = 1, bonus = 7, type = "normal", cd = 11 }, move4 = {spell = "Hyper Beam", minLv = 50, ex = 1280004, base1 = 200, base2 = 283, dista = 4, target = "no", bonus = 12.5, type = "Normal", cd = 25 }, move5 = {spell = "Stomp", minLv = 51, ex = 1280005, base1 = 150, base2 = 213, dista = 1, bonus = 5, target = "no", type = "normal", cd = 25 }, move6 = {spell = "Rage", minLv = 45, ex = 1280006, base1 = 0, base2 = 0, dista = 1, target = "no", bonus = 2.5, type = "Normal", cd = 50 }, move7 = {spell = "Fear", minLv = 45, ex = 1280007, base1 = 0, base2 = 0, dista = 5, bonus = 2.5, type = "Normal", cd = 50 }, }, ['Magikarp'] = { move1 = {spell = "Splash", minLv = 5, ex = 1290001, base1 = 280, base2 = 300, dista = 1, bonus = 4, type = "normal", target = "no", cd = 6 }, }, ['Crystal Onix'] = { move1 = {spell = "Sand Attack", minLv = 40, ex = 9500001, base1 = 40, base2 = 50, dista = 5, bonus = 4, type = "earth", cd = 11 }, move2 = {spell = "Iron Tail", minLv = 40, ex = 9500002, base1 = 75, base2 = 90, dista = 5, bonus = 5, type = "normal", cd = 7 }, move3 = {spell = "Rock Throw", minLv = 40, ex = 9500003, base1 = 70, base2 = 80, dista = 5, bonus = 7, type = "rock", cd = 14 }, move4 = {spell = "Rock Slide", minLv = 50, ex = 9500004, base1 = 116, base2 = 133, dista = 4, bonus = 4, type = "rock", cd = 17 }, move5 = {spell = "Earthshock", minLv = 50, ex = 9500005, base1 = 100, base2 = 133, dista = 1, bonus = 4, target = "no", type = "ground", cd = 25 }, move6 = {spell = "Falling Rocks", minLv = 58, ex = 9500006, base1 = 156, base2 = 183, dista = 5, target = "no", bonus = 15, type = "rock", cd = 100 }, move7 = {spell = "Earthquake", minLv = 58, ex = 9500007, base1 = 300, base2 = 301, dista = 5, target = "no", bonus = 10, type = "rock", cd = 65 }, move8 = {spell = "Harden", minLv = 50, ex = 9500008, lpl = 150, life = 5300, base1 = 0, base2 = 0, dista = 4, target = "no", bonus = 0, type = "normal", cd = 25 }, }, ['Gyarados'] = { move1 = {spell = "Water Pulse", minLv = 35, ex = 1190004, base1 = 105, base2 = 110, dista = 50, bonus = 3.3, target = "no", type = "Water", cd = 15 }, move2 = {spell = "Bite", minLv = 95, ex = 1300002, base1 = 65, base2 = 101, dista = 1, bonus = 8, type = "normal", cd = 9 }, move3 = {spell = "Aqua Tail", minLv = 95, ex = 1300003, base1 = 190, base2 = 200, dista = 4, bonus = 6, type = "water", cd = 12 }, move4 = {spell = "Waterball", minLv = 85, ex = 1300004, base1 = 145, base2 = 160, dista = 4, bonus = 3.5, type = "Water", cd = 18 }, move5 = {spell = "Hydro Cannon", minLv = 85, ex = 1300005, base1 = 270, base2 = 340, dista = 5, target = "no", bonus = 3.5, type = "water", cd = 23 }, move6 = {spell = "Dragon Breath", minLv = 85, ex = 1300006, base1 = 165, base2 = 180, dista = 5, target = "no", bonus = 3.5, type = "Water", cd = 35 }, move7 = {spell = "Hyper Beam", minLv = 85, ex = 1300007, base1 = 282, base2 = 306, dista = 4, target = "no", bonus = 13, type = "normal", cd = 40 }, move8 = {spell = "Hydropump", minLv = 93, ex = 1900005, base1 = 160, base2 = 320, dista = 5, target = "no", bonus = 3.5, type = "water", cd = 23 }, }, ['Lapras'] = { move1 = {spell = "Horn Attack", minLv = 80, ex = 1310001, base1 = 80, target = "yes", base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 11 }, move2 = {spell = "Ice Beam", minLv = 80, ex = 1310002, base1 = 80, base2 = 120, dista = 5, bonus = 8, target = "no", type = "ice", cd = 16 }, move3 = {spell = "Ice Shards", minLv = 80, base1 = 250, base2 = 251, dista = 4, bonus = 7.2, type = "ice", cd = 22 }, move4 = {spell = "Water Gun", minLv = 80, ex = 1310004, base1 = 123, target = "no", base2 = 145, dista = 4, bonus = 3.6, type = "water", cd = 22 }, move5 = {spell = "Waterball", minLv = 80, ex = 1310005, base1 = 123, base2 = 145, dista = 4, bonus = 4, type = "water", cd = 12 }, move6 = {spell = "Aurora Beam", minLv = 80, ex = 1310006, base1 = 143, base2 = 185, dista = 4, target = "no", bonus = 7, type = "Ice", cd = 40 }, move7 = {spell = "Blizzard", minLv = 80, ex = 1310007, base1 = 450, base2 = 500, dista = 5, target = "no", bonus = 6, type = "Ice", cd = 45 }, move8 = {spell = "Hydropump", minLv = 90, ex = 1310008, base1 = 123, base2 = 287, dista = 5, target = "no", bonus = 4, type = "water", cd = 12 }, move9 = {spell = "Sing", minLv = 90, ex = 1310009, base1 = 0, base2 = 0, dista = 5, bonus = 4, target = "yes", type = "normal", cd = 30 }, }, --[[Ditto]] ['Eevee'] = { move1 = {spell = "Sand Attack", minLv = 20, ex = 1330002, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "earth", cd = 7 }, move2 = {spell = "Quick Attack", minLv = 20, ex = 1330002, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 7 }, move3 = {spell = "Bite", minLv = 20, ex = 1330003, base1 = 55, base2 = 65, dista = 1, bonus = 5, type = "normal", cd = 9 }, move4 = {spell = "Headbutt", minLv = 24, ex = 1330004, base1 = 55, base2 = 60, dista = 1, bonus = 2.3, type = "Normal", cd = 15 }, move5 = {spell = "Iron Tail", minLv = 28, ex = 1330005, base1 = 55, base2 = 75, dista = 1, bonus = 2.5, type = "normal", cd = 15 }, move6 = {spell = "Great Love", minLv = 35, ex = 1330006, base1 = 105, base2 = 116, dista = 5, target = "no", bonus = 2.3, type = "normal", cd = 85 }, move7 = {spell = "Agility", minLv = 1, ex = 2600007, base1 = 200, base2 = 210, dista = 3, bonus = 7.5, type = "normal", cd = 15 }, }, ['Vaporeon'] = { move1 = {spell = "Quick Attack", minLv = 55, ex = 1340001, base1 = 55, base2 = 65, dista = 1, bonus = 5, type = "normal", cd = 7 }, move2 = {spell = "Bite", minLv = 55, ex = 1340002, base1 = 55, base2 = 65, dista = 1, bonus = 7, type = "normal", cd = 9 }, move3 = {spell = "Water Gun", minLv = 55, ex = 1340003, base1 = 145, base2 = 160, target = "no", dista = 2, bonus = 10, type = "water", cd = 19 }, move4 = {spell = "Bubblebeam", minLv = 55, ex = 1340004, base1 = 109, base2 = 116, dista = 4, bonus = 2.6, target = "no", type = "Water", cd = 20 }, move5 = {spell = "Water Pulse", minLv = 55, ex = 1340005, base1 = 109, base2 = 120, dista = 3, bonus = 2.9, target = "no", type = "water", cd = 20 }, move6 = {spell = "Mud Shot", minLv = 55, ex = 1340006, base1 = 128, base2 = 135, dista = 5, target = "yes", bonus = 4.5, type = "poison", cd = 13 }, move7 = {spell = "Aurora Beam", minLv = 55, ex = 1340007, base1 = 158, base2 = 235, dista = 5, target = "no", bonus = 15, type = "normal", cd = 30 }, move8 = {spell = "Hydro Cannon", minLv = 65, ex = 1340008, base1 = 109, base2 = 189, dista = 1, bonus = 3, target = "no", type = "water", cd = 20 }, }, ['Jolteon'] = { move1 = {spell = "Quick Attack", minLv = 55, ex = 1350001, base1 = 55, base2 = 65, dista = 1, bonus = 5, type = "normal", cd = 7 }, move2 = {spell = "Bite", minLv = 55, ex = 1350002, base1 = 55, base2 = 65, dista = 1, bonus = 7, type = "normal", cd = 9 }, move3 = {spell = "Thunder Wave", minLv = 55, ex = 1150003, base1 = 112, base2 = 123, dista = 5, bonus = 8.5, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Thunder Fang", minLv = 55, ex = 1350004, base1 = 106, base2 = 116, dista = 3, bonus = 2.6, type = "electric", cd = 20 }, move5 = {spell = "Thunder Wave", minLv = 55, ex = 1350005, base1 = 110, base2 = 140, dista = 5, target = "no", bonus = 2.9, type = "electric", cd = 13 }, move6 = {spell = "Pin Missile", minLv = 55, ex = 1350006, base1 = 126, base2 = 146, dista = 3, bonus = 3.2, type = "bug", cd = 30 }, move7 = {spell = "Zap Cannon", minLv = 44, ex = 1370005, base1 = 230, base2 = 270, dista = 4, bonus = 3.5, target = "yes", type = "electric", cd = 30 }, move8 = {spell = "Thunder", minLv = 65, ex = 1350008, base1 = 110, base2 = 189, dista = 5, target = "no", bonus = 3, type = "electric", cd = 13 }, }, ['Flareon'] = { move1 = {spell = "Quick Attack", minLv = 55, ex = 1360001, base1 = 55, base2 = 65, dista = 1, bonus = 5, type = "normal", cd = 7 }, move2 = {spell = "Bite", minLv = 55, ex = 1360002, base1 = 55, base2 = 65, dista = 1, bonus = 7, type = "normal", cd = 9 }, move3 = {spell = "Flamethrower", minLv = 55, ex = 1360003, base1 = 270, base2 = 281, target = "no", bonus = 10, type = "fire", cd = 30 }, move4 = {spell = "Fireball", minLv = 24, ex = 4000004, base1 = 118, base2 = 123, dista = 3, bonus = 3, type = "Fire", cd = 22 }, move5 = {spell = "Flame Wheel", minLv = 70, ex = 3800005, base1 = 136, base2 = 165, dista = 1, bonus = 4, type = "fire", cd = 18 }, move6 = {spell = "Raging Blast", minLv = 55, ex = 1360006, base1 = 129, base2 = 136, dista = 5, target = "no", bonus = 3, type = "fire", cd = 40 }, move7 = {spell = "Fire Fang", minLv = 1, ex = 5900007, base1 = 245, base2 = 258, dista = 1, bonus = 7.1, type = "fire", cd = 18 }, move8 = {spell = "Fire Blast", minLv = 65, ex = 1360008, base1 = 110, base2 = 189, dista = 1, target = "no", bonus = 3, type = "fire", cd = 20 }, }, ['Porygon'] = { move1 = {spell = "Super Sonic", minLv = 40, ex = 1370001, base1 = 40, base2 = 50, dista = 5, bonus = 4, type = "normal", cd = 12 }, move2 = {spell = "Psybeam", minLv = 40, ex = 1370002, base1 = 435, base2 = 445, dista = 5, bonus = 14, type = "psychic", target = "no", cd = 32 }, move3 = {spell = "Psy Wave", minLv = 42, ex = 1240003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "Psychic", cd = 15 }, move4 = {spell = "Psychic", minLv = 45, ex = 1370003, base1 = 156, base2 = 188, dista = 5, bonus = 3.3, target = "no", type = "psychic", cd = 30 }, move5 = {spell = "Icy Wind", minLv = 45, ex = 1240005, base1 = 145, base2 = 165, dista = 5, target = "no", bonus = 6.2, type = "ice", cd = 25 }, move6 = {spell = "Zap Cannon", minLv = 45, ex = 1370005, base1 = 230, base2 = 270, dista = 4, bonus = 3.5, target = "yes", type = "electric", cd = 30 }, move7 = {spell = "Focus", minLv = 50, ex = 1370007, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 3.3, type = "normal", cd = 65 }, move8 = {spell = "Restore", minLv = 40, ex = 1370008, base1 = 165, base2 = 215, dista = 5, bonus = 3.5, target = "no", type = "psychic", cd = 30 }, }, ['Omanyte'] = { move1 = {spell = "Bite", minLv = 20, ex = 1380001, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 7 }, move2 = {spell = "Rock Throw", minLv = 20, ex = 1380002, base1 = 40, base2 = 60, dista = 5, bonus = 4, type = "rock", cd = 14 }, move3 = {spell = "Waterball", minLv = 20, ex = 1380003, base1 = 190, base2 = 200, dista = 4, bonus = 5, type = "water", cd = 17 }, move4 = {spell = "Water Gun", minLv = 24, ex = 1380003, base1 = 75, base2 = 85, dista = 4, target = "no", bonus = 2, type = "Water", cd = 16 }, move5 = {spell = "Mud Shot", minLv = 26, ex = 1380003, base1 = 75, base2 = 85, dista = 3, bonus = 2.5, type = "ground", cd = 12 }, move6 = {spell = "Harden", minLv = 20, ex = 1380006, lpl = 55, life = 1300, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35 }, move7 = {spell = "Ancient Power", minLv = 35, ex = 1400007, base1 = 100, base2 = 120, dista = 5, target = "no", bonus = 3, type = "rock", cd = 45 }, }, ['Omastar'] = { move1 = {spell = "Bite", minLv = 80, ex = 1390001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Rock Throw", minLv = 80, ex = 1390002, base1 = 80, base2 = 90, dista = 5, bonus = 9, type = "rock", cd = 14 }, move3 = {spell = "Waterball", minLv = 80, ex = 1390003, base1 = 190, base2 = 200, dista = 4, bonus = 7.5, type = "water", cd = 17 }, move4 = {spell = "Water Gun", minLv = 85, ex = 1390004, base1 = 150, base2 = 175, dista = 4, bonus = 4.5, target = "no", type = "Water", cd = 20 }, move5 = {spell = "Bubble Blast", minLv = 85, ex = 1390005, base1 = 190, base2 = 230, dista = 4, bonus = 5, type = "water", cd = 34 }, move6 = {spell = "Mud Shot", minLv = 85, ex = 1390006, base1 = 130, base2 = 145, dista = 4, bonus = 4.5, type = "ground", cd = 35 }, move7 = {spell = "Harden", minLv = 85, ex = 1380007, lpl = 55, life = 10000, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35 }, move8 = {spell = "Ancient Power", minLv = 95, ex = 1390008, base1 = 240, base2 = 380, dista = 5, target = "no", bonus = 5, type = "rock", cd = 34 }, }, ['Kabuto'] = { move1 = {spell = "Scratch", minLv = 20, ex = 1400001, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 7 }, move2 = {spell = "Bubbles", minLv = 20, ex = 1400002, base1 = 20, base2 = 30, target = "yes", dista = 1, bonus = 6, type = "water", cd = 8 }, move3 = {spell = "Slash", minLv = 20, ex = 1400003, base1 = 20, base2 = 30, dista = 2, bonus = 4, type = "normal", cd = 7 }, move4 = {spell = "Mud Shot", minLv = 25, ex = 1400004, base1 = 60, base2 = 70, dista = 1, bonus = 3, type = "ground", cd = 15 }, move5 = {spell = "Harden", minLv = 30, lpl = 32, life = 1300, ex = 1400005, base1 = 0, base2 = 0, dista = 100, target = "no", bonus = 0, type = "normal", cd = 15 }, move6 = {spell = kabuto, spell = "Absorb", minLv = 12, ex = 4100004, base1 = 32, base2 = 56, dista = 3, bonus = 3, type = "Grass", cd = 14 }, move7 = {spell = "Ancient Power", minLv = 35, ex = 1400007, base1 = 100, base2 = 120, dista = 5, target = "no", bonus = 3, type = "rock", cd = 45 }, }, ['Kabutops'] = { move1 = {spell = "Scratch", minLv = 80, ex = 1410001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Bubbles", minLv = 80, ex = 1410002, base1 = 120, target = "yes", base2 = 135, dista = 4, bonus = 8, type = "water", cd = 8 }, move3 = {spell = "Slash", minLv = 80, ex = 1410003, base1 = 120, base2 = 135, dista = 2, bonus = 8, type = "normal", cd = 7 }, move4 = {spell = "Fury Cutter", minLv = 80, ex = 1410004, base1 = 150, base2 = 165, dista = 1, bonus = 6, target = "no", type = "Bug", cd = 23 }, move5 = {spell = "Mud Shot", minLv = 80, ex = 1410005, base1 = 30, base2 = 100, dista = 3, bonus = 6, type = "ground", cd = 13 }, move6 = {spell = "Harden", minLv = 80, ex = 1410006, lpl = 150, life = 6500, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35 }, move7 = {spell = "Aurora Beam", minLv = 80, ex = 1410007, base1 = 500, base2 = 600, dista = 5, target = "no", bonus = 12, type = "normal", cd = 30 }, move8 = {spell = "Ancient Power", minLv = 95, ex = 1390008, base1 = 240, base2 = 380, dista = 5, target = "no", bonus = 5, type = "rock", cd = 34 }, }, ['Aerodactyl'] = { move1 = {spell = "Scratch", minLv = 110, ex = 1420001, base1 = 110, base2 = 120, dista = 1, bonus = 11, type = "normal", cd = 7 }, move2 = {spell = "Super Sonic", minLv = 100, ex = 1420002, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16 }, move3 = {spell = "Bite", minLv = 110, ex = 1410003, base1 = 120, base2 = 135, dista = 2, bonus = 7.5, type = "normal", cd = 8 }, move4 = {spell = "Headbutt", minLv = 90, ex = 1420004, base1 = 150, base2 = 185, dista = 5, bonus = 6.3, type = "Normal", cd = 15 }, move5 = {spell = "Rock Throw", minLv = 100, ex = 1420005, base1 = 150, base2 = 185, dista = 3, bonus = 6.5, type = "rock", cd = 12 }, move6 = {spell = "Rock Slide", minLv = 100, ex = 1420006, base1 = 140, base2 = 165, dista = 1, bonus = 6.5, type = "rock", cd = 15 }, move7 = {spell = "Fire Fang", minLv = 100, ex = 1420007, base1 = 140, base2 = 165, dista = 1, bonus = 6.3, type = "fire", cd = 30}, move8 = {spell = "Wing Attack", minLv = 100, ex = 1420008, base1 = 150, base2 = 345, dista = 1, bonus = 6.5, target = "no", type = "flying", cd = 12 }, move9 = {spell = "Falling Rocks", minLv = 105, ex = 1420009, base1 = 285, base2 = 450, dista = 5, bonus = 6.5, target = "no", type = "rock", cd = 49 }, move10 = {spell = "Hyper Beam", minLv = 105, ex = 1420010, base1 = 285, base2 = 450, dista = 5, bonus = 14, target = "no", type = "normal", cd = 25 }, move11 = {spell = "Ancient Power", minLv = 95, ex = 1390008, base1 = 240, base2 = 380, dista = 5, target = "no", bonus = 5, type = "rock", cd = 34 }, }, ['Snorlax'] = { move1 = {spell = "Scratch", minLv = 85, ex = 1430001, base1 = 90, base2 = 100, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Bite", minLv = 85, ex = 1430002, base1 = 50, base2 = 100, dista = 1, bonus = 8, type = "normal", cd = 11 }, move3 = {spell = "Dizzy Punch", minLv = 85, ex = 1430003, base1 = 200, base2 = 210, dista = 1, bonus = 8, type = "fighting", cd = 22 }, move4 = {spell = "Mega Punch", minLv = 85, ex = 1430004, base1 = 220, base2 = 235, dista = 1, bonus = 6.2, type = "Fighting", cd = 20 }, move5 = {spell = "Headbutt", minLv = 85, ex = 1430005, base1 = 220, base2 = 250, dista = 1, bonus = 6.5, type = "normal", cd = 14 }, move6 = {spell = "Body Slam", minLv = 89, ex = 1430006, base1 = 230, base2 = 255, dista = 1, bonus = 6.4, type = "normal", cd = 40 }, move7 = {spell = "Epicenter", minLv = 86, ex = 1150006, base1 = 136, base2 = 159, dista = 5, target = "no", bonus = 8.5, type = "ground", cd = 100 }, move8 = {spell = "Rest", minLv = 85, ex = 1430008, base1 = 1500, base2 = 2000, dista = 5, target = "no", bonus = 6, type = "normal", cd = 64 }, }, ['Dratini'] = { move1 = {spell = "Aqua Tail", minLv = 20, ex = 1470001, base1 = 20, base2 = 30, dista = 4, bonus = 2, type = "water", cd = 7 }, move2 = {spell = "Hyper Beam", minLv = 50, ex = 1280004, base1 = 200, base2 = 283, dista = 4, target = "no", bonus = 12.5, type = "Normal", cd = 25 }, move3 = {spell = "Thunder Wave", minLv = 60, ex = 1480003, base1 = 112, base2 = 123, dista = 5, bonus = 5, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Dragon Breath", minLv = 35, ex = 1470004, base1 = 100, target = "no", base2 = 123, dista = 5, bonus = 2.5, type = "Dragon", cd = 30 }, }, ['Dragonair'] = { move1 = {spell = "Headbutt", minLv = 60, ex = 1480001, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "normal", cd = 7}, move2 = {spell = "Aqua Tail", minLv = 60, ex = 1480002, base1 = 80, base2 = 100, dista = 2, bonus = 7, type = "water", cd = 9}, move3 = {spell = "Thunder Wave", minLv = 60, ex = 1480003, base1 = 112, base2 = 123, dista = 5, bonus = 5, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Dragon Breath", minLv = 62, ex = 1480004, base1 = 172, base2 = 186, dista = 5, bonus = 4.2, type = "Dragon", cd = 20 }, move5 = {spell = "Twister", minLv = 61, ex = 1480005, base1 = 172, base2 = 200, dista = 5, bonus = 4.5, type = "dragon", cd = 23 }, move6 = {spell = "Hyper Beam", minLv = 64, ex = 1480005, base1 = 182, base2 = 206, dista = 4, target = "no", bonus = 5, type = "normal", cd = 40 }, move7 = {spell = "Hyper Beam", minLv = 64, ex = 1480007, base1 = 182, base2 = 206, dista = 4, target = "no", bonus = 9, type = "normal", cd = 40 }, }, ['Dragonite'] = { move1 = {spell = "Headbutt", minLv = 100, ex = 1490001, base1 = 100, base2 = 110, dista = 1, bonus = 10, type = "normal", cd = 7 }, move2 = {spell = "Aqua Tail", minLv = 100, ex = 1490002, base1 = 100, base2 = 110, dista = 2, bonus = 10, type = "water", cd = 9 }, move3 = {spell = "Thunder Wave", minLv = 100, ex = 1490003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Thunder Punch", minLv = 100, ex = 1490004, base1 = 278, base2 = 299, dista = 5, bonus = 6.3, type = "Electric", cd = 20 }, move5 = {spell = "Fire Punch", minLv = 100, ex = 1490005, base1 = 278, base2 = 300, dista = 1, bonus = 6.5, type = "fire", cd = 20 }, move6 = {spell = "Dragon Claw", minLv = 100, ex = 1490004, base1 = 288, base2 = 309, dista = 1, bonus = 6.3, type = "dragon", cd = 35 }, move7 = {spell = "Dragon Breath", minLv = 100, ex = 1490007, base1 = 288, base2 = 309, dista = 1, bonus = 8.3, target = "no", type = "dragon", cd = 35 }, move8 = {spell = "Twister", minLv = 104, ex = 1490008, base1 = 278, base2 = 300, dista = 1, bonus = 6.5, target = "yes", type = "dragon", cd = 20 }, move9 = {spell = "Wing Attack", minLv = 102, ex = 1490009, base1 = 278, base2 = 300, dista = 1, bonus = 8.5, target = "no", type = "flying", cd = 25 }, move10 = {spell = "Hyper Beam", minLv = 105, ex = 1420010, base1 = 285, base2 = 450, dista = 5, bonus = 14, target = "no", type = "normal", cd = 25 }, }, --pokes shiny -- ['Red Gyarados'] = { move1 = {spell = "Water Pulse", minLv = 35, ex = 1190004, base1 = 105, base2 = 110, dista = 50, bonus = 3.3, target = "no", type = "Water", cd = 15 }, move2 = {spell = "Bite", minLv = 95, ex = 1300002, base1 = 65, base2 = 101, dista = 1, bonus = 8, type = "normal", cd = 9 }, move3 = {spell = "Aqua Tail", minLv = 95, ex = 1300003, base1 = 190, base2 = 200, dista = 4, bonus = 6, type = "water", cd = 12 }, move4 = {spell = "Waterball", minLv = 85, ex = 1300004, base1 = 145, base2 = 160, dista = 4, bonus = 3.5, type = "Water", cd = 18 }, move5 = {spell = "Hydro Cannon", minLv = 85, ex = 1300005, base1 = 270, base2 = 340, dista = 5, target = "no", bonus = 3.5, type = "water", cd = 23 }, move6 = {spell = "Dragon Breath", minLv = 85, ex = 1300006, base1 = 165, base2 = 180, dista = 5, target = "no", bonus = 3.5, type = "Water", cd = 35 }, move7 = {spell = "Hyper Beam", minLv = 85, ex = 1300007, base1 = 282, base2 = 306, dista = 4, target = "no", bonus = 13, type = "normal", cd = 40 }, move8 = {spell = "Hydropump", minLv = 93, ex = 1900005, base1 = 160, base2 = 320, dista = 5, target = "no", bonus = 3.5, type = "water", cd = 23 }, }, ['Elder Charizard'] = { move1 = {spell = "Scratch", minLv = 65, base1 = 85, base2 = 100,dista = 1, bonus = 8.5, target = "yes", type = "normal", cd = 10}, move2 = {spell = "Ember", minLv = 65, base1 = 220, base2 = 235,dista = 4, bonus = 5.9, target = "yes", type = "fire", cd = 14}, move3 = {spell = "Flamethrower", minLv = 65, base1 = 245, base2 = 258,dista = 1, bonus = 7.1, target = "yes", type = "fire", cd = 18}, move4 = {spell = "Fireball", minLv = 65, base1 = 219, base2 = 240,dista = 3, bonus = 6.5, target = "yes", type = "Fire", cd = 22}, move5 = {spell = "Fire Fang", minLv = 65, base1 = 178, base2 = 256,dista = 1, bonus = 6, target = "yes", type = "fire", cd = 20}, move6 = {spell = "Raging Blast", minLv = 65, base1 = 219, base2 = 226,dista = 5, bonus = 5.6, target = "no", type = "fire", cd = 35}, move7 = {spell = "Fire Blast", minLv = 65, base1 = 250, base2 = 300,dista = 10, bonus = 8, target = "no", type = "fire", cd = 35}, move8 = {spell = "Wing Attack", minLv = 65, base1 = 150, base2 = 200,dista = 1, bonus = 6, target = "no", type = "flying", cd = 20}, move9 = {spell = "Magma Storm", minLv = 65, base1 = 200, base2 = 300,dista = 5, bonus = 6, target = "no", type = "fire", cd = 20}, move10 = {spell = "Rage", minLv = 65, base1 = 0, base2 = 0,dista = 1, bonus = 2.5, target = "no", type = "Normal", cd = 30}, }, ['Shiny Magikarp'] = { move1 = {spell = "Splash", minLv = 5, ex = 1290001, base1 = 280, base2 = 300, dista = 1, bonus = 4, type = "normal", target = "no", cd = 6 }, }, ['Shiny Rattata'] = { move1 = {spell = "Quick Attack", minLv = 1, base1 = 20, base2 = 21, dista = 1, bonus = 2, type = "normal", cd = 7}, move2 = {spell = "Scratch", minLv = 1, base1 = 40, base2 = 50, dista = 1, bonus = 2, type = "normal", cd = 9}, move3 = {spell = "Bite", minLv = 7, base1 = 40, base2 = 50, dista = 1, bonus = 3, type = "normal", cd = 11}, move4 = {spell = "Super Fang", minLv = 12, base1 = 56, base2 = 69, dista = 1, bonus = 3, type = "normal", cd = 20}, }, ['Shiny Zubat'] = { move1 = {spell = "Super Sonic", minLv = 1, base1 = 20, base2 = 21, dista = 1, bonus = 1.7, type = "normal", cd = 11}, move2 = {spell = "Bite", minLv = 7, base1 = 20, base2 = 25, dista = 1, bonus = 2, type = "grass", cd = 14}, move3 = {spell = "Poison Fang", minLv = 15, base1 = 15, base2 = 25, dista = 1, bonus = 1.5, type = "poison", cd = 10}, move4 = {spell = "Absorb", minLv = 12, base1 = 32, base2 = 56, dista = 3, bonus = 3, type = "Grass", cd = 14}, move5 = {spell = "Toxic", minLv = 15, base1 = 70, base2 = 120, dista = 3, bonus = 2.7, target = "no", type = "poison", cd = 14}, }, ['Shiny Oddish'] = { move1 = {spell = "Absorb", minLv = 1, base1 = 25, base2 = 30, dista = 1, bonus = 2, type = "grass", cd = 10}, move2 = {spell = "Acid", minLv = 7, base1 = 54, base2 = 64, dista = 4, bonus = 2.7, type = "poison", cd = 14}, move3 = {spell = "Leech Seed", minLv = 11, base1 = 6, base2 = 6, dista = 5, bonus = 0.5, type = "grass", cd = 20}, move4 = {spell = "Sleep Powder", minLv = 12, base1 = 34, base2 = 44, dista = 5, target = "no", bonus = 2.4, type = "grass", cd = 14}, move5 = {spell = "Stun Spore", minLv = 10, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 10}, move6 = {spell = "Poison Powder", minLv = 5, base1 = 10, base2 = 20, dista = 5, target = "no", bonus = 2.4, type = "poison", cd = 50}, }, ['Shiny Paras'] = { move1 = {spell = "Scratch", minLv = 5, base1 = 5, base2 = 15, dista = 1, bonus = 1, type = "normal", cd = 9}, move2 = {spell = "Poison Sting", minLv = 5, base1 = 50, base2 = 90, dista = 4, bonus = 9, type = "poison", cd = 12}, move3 = {spell = "Slash", minLv = 10, base1 = 50, base2 = 75, dista = 1, bonus = 4, type = "normal", cd = 8}, move4 = {spell = "Stun Spore", minLv = 10, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 28}, move5 = {spell = "Poison Powder", minLv = 8, base1 = 56, base2 = 66, dista = 5, target = "no", bonus = 2, type = "poison", cd = 28}, move6 = {spell = "Sleep Powder", minLv = 12, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 2, type = "grass", cd = 68}, }, ['Shiny Parasect'] = { move1 = {spell = "Absorb", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 9}, move2 = {spell = "Scratch", minLv = 50, base1 = 50, base2 = 90, dista = 4, bonus = 5, type = "poison", cd = 12}, move3 = {spell = "Poison Sting", minLv = 50, base1 = 50, base2 = 80, dista = 1, bonus = 5, type = "normal", cd = 7}, move4 = {spell = "Slash", minLv = 50, base1 = 106, base2 = 113, dista = 1, bonus = 5, type = "normal", cd = 15}, move5 = {spell = "Poison Bomb", minLv = 50, base1 = 110, base2 = 140, dista = 3, bonus = 3, type = "poison", cd = 17}, move6 = {spell = "Stun Spore", minLv = 50, base1 = 0, base2 = 0, dista = 5, bonus = 0, target = "no", type = "grass", cd = 70}, move7 = {spell = "Poison Powder", minLv = 50, base1 = 10, base2 = 20, dista = 5, target = "no", bonus = 3, type = "poison", cd = 40}, move8 = {spell = "Sleep Powder", minLv = 50, base1 = 20, base2 = 40, dista = 4, bonus = 3, target = "no", type = "grass", cd = 17}, move9 = {spell = "Fury Cutter", minLv = 50, base1 = 255, base2 = 263, dista = 1, bonus = 3.5, target = "no", type = "Bug", cd = 25}, move10 = {spell = "X-Scissor", minLv = 90, base1 = 245, base2 = 253, dista = 3, target = "no", bonus = 3, type = "bug", cd = 45}, }, ['Shiny Growlithe'] = { move1 = {spell = "Bite", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 9}, move2 = {spell = "Roar", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 14}, move3 = {spell = "Quick Attack", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 7}, move4 = {spell = "Ember", minLv = 25, base1 = 78, base2 = 89, dista = 3, bonus = 2.6, type = "fire", cd = 20}, move5 = {spell = "Flamethrower", minLv = 25, base1 = 60, base2 = 80, bonus = 3, target = "no", type = "fire", cd = 12}, move6 = {spell = "Fireball", minLv = 27, base1 = 88, base2 = 96, dista = 4, bonus = 2.6, type = "fire", cd = 23}, move7 = {spell = "Rage", minLv = 45, base1 = 0, base2 = 0, dista = 1, target = "no", bonus = 2.5, type = "Normal", cd = 50}, }, ['Shiny Arcanine'] = { move1 = {spell = "Bite", minLv = 1, base1 = 100, base2 = 151, dista = 1, bonus = 6, type = "normal", cd = 11}, move2 = {spell = "Roar", minLv = 1, base1 = 100, base2 = 111, dista = 1, bonus = 5, type = "normal", cd = 14}, move3 = {spell = "Quick Attack", minLv = 1, base1 = 100, base2 = 111, dista = 1, bonus = 5, type = "normal", cd = 7}, move4 = {spell = "Ember", minLv = 80, base1 = 148, base2 = 169, dista = 3, bonus = 6, type = "fire", cd = 20}, move5 = {spell = "Flamethrower", minLv = 80, base1 = 120, base2 = 170, bonus = 4.5, target = "no", type = "fire", cd = 11}, move6 = {spell = "Fireball", minLv = 80, base1 = 158, base2 = 189, dista = 4, bonus = 4.5, type = "fire", cd = 23}, move7 = {spell = "Fire Fang", minLv = 1, base1 = 245, base2 = 258, dista = 1, bonus = 7.1, type = "fire", cd = 18}, move8 = {spell = "Fire Blast", minLv = 82, base1 = 120, base2 = 210, dista = 5, target = "no", bonus = 8, type = "fire", cd = 19}, move9 = {spell = "Tri Flames", minLv = 84, base1 = 130, base2 = 200, dista = 3, target = "no", bonus = 4.5, type = "fire", cd = 30}, move10 = {spell = "Wardog", minLv = 84, base1 = 130, base2 = 200, dista = 3, target = "no", bonus = 8, type = "normal", cd = 30}, }, ['Shiny Dragonair'] = { move1 = {spell = "Headbutt", minLv = 60, ex = 1480001, base1 = 60, base2 = 70, dista = 1, bonus = 6, type = "normal", cd = 7}, move2 = {spell = "Aqua Tail", minLv = 60, ex = 1480002, base1 = 80, base2 = 100, dista = 2, bonus = 7, type = "water", cd = 9}, move3 = {spell = "Thunder Wave", minLv = 60, ex = 1480003, base1 = 112, base2 = 123, dista = 5, bonus = 5, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Dragon Breath", minLv = 62, ex = 1480004, base1 = 172, base2 = 186, dista = 5, bonus = 4.2, type = "Dragon", cd = 20 }, move5 = {spell = "Twister", minLv = 61, ex = 1480005, base1 = 172, base2 = 200, dista = 5, bonus = 4.5, type = "dragon", cd = 23 }, move6 = {spell = "Hyper Beam", minLv = 64, ex = 1480005, base1 = 182, base2 = 206, dista = 4, target = "no", bonus = 5, type = "normal", cd = 40 }, move7 = {spell = "Hyper Beam", minLv = 64, ex = 1480007, base1 = 182, base2 = 206, dista = 4, target = "no", bonus = 9, type = "normal", cd = 40 }, }, ['Shiny Grimer'] = { move1 = {spell = "Mud Shot", minLv = 15, base1 = 15, base2 = 25, dista = 5, bonus = 1.5, type = "earth", cd = 10}, move2 = {spell = "Acid", minLv = 6, base1 = 60, base2 = 70, dista = 5, bonus = 5, type = "poison", cd = 14}, move3 = {spell = "Sludge", minLv = 14, base1 = 60, base2 = 70, dista = 5, bonus = 5, type = "poison", cd = 18}, move4 = {spell = "Mud Bomb", minLv = 17, base1 = 70, base2 = 80, dista = 3, bonus = 2.2, type = "ground", cd = 15}, move5 = {spell = "Poison Bomb", minLv = 22, base1 = 70, base2 = 80, dista = 4, bonus = 2.5, type = "poison", cd = 15}, move6 = {spell = "Harden", minLv = 22, ex = 8800006, lpl = 30, life = 600, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35}, }, ['Shiny Muk'] = { move1 = {spell = "Mud Shot", minLv = 35, base1 = 35, base2 = 45, dista = 5, bonus = 3.5, type = "earth", cd = 10}, move2 = {spell = "Acid", minLv = 6, base1 = 110, base2 = 120, dista = 5, bonus = 5.5, type = "poison", cd = 14}, move3 = {spell = "Sludge", minLv = 14, minLv = 14, base1 = 150, base2 = 160, dista = 5, bonus = 6, type = "poison", cd = 18}, move4 = {spell = "Mud Bomb", minLv = 35, base1 = 115, base2 = 126, dista = 5, bonus = 3.5, type = "ground", cd = 14}, move5 = {spell = "Poison Bomb", minLv = 40, base1 = 115, base2 = 126, dista = 4, bonus = 3.5, type = "poison", cd = 14}, move6 = {spell = "Body Slam", minLv = 89, base1 = 230, base2 = 255, dista = 1, bonus = 6.4, type = "normal", cd = 40}, move7 = {spell = "Harden", minLv = 47, lpl = 30, life = 600, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35}, }, ['Shiny Tentacool'] = { move1 = {spell = "Acid", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5.8, type = "poison", cd = 11}, move2 = {spell = "Bubbles", minLv = 20, base1 = 60, base2 = 75, dista = 4, target = "yes", bonus = 3.5, type = "water", cd = 8}, move3 = {spell = "Poison Sting", minLv = 30, base1 = 50, base2 = 90, dista = 4, bonus = 10, type = "poison", cd = 12}, move4 = {spell = "Psy Pulse", minLv = 17, base1 = 85, base2 = 90, dista = 5, target = "yes", bonus = 2.1, type = "Psychic", cd = 22}, move5 = {spell = "Mud Shot", minLv = 19, base1 = 20, base2 = 35, dista = 4, bonus = 2.5, type = "ground", cd = 15}, move6 = {spell = "Super Sonic", minLv = 21, base1 = 25, base2 = 35, dista = 3, bonus = 2.1, type = "normal", cd = 25}, }, ['Shiny Tentacruel'] = { move1 = {spell = "Acid", minLv = 70, base1 = 50, base2 = 60, dista = 1, bonus = 5.8, type = "poison", cd = 11}, move2 = {spell = "Bubbles", minLv = 50, base1 = 80, base2 = 90, dista = 1, target = "yes", bonus = 7 ,type = "water", cd = 8}, move3 = {spell = "Poison Sting", minLv = 30, base1 = 50, base2 = 90, dista = 4, bonus = 10, type = "poison", cd = 12}, move4 = {spell = "Waterball", minLv = 75, base1 = 125, base2 = 130, dista = 3, bonus = 3.2, type = "Water", cd = 22}, move5 = {spell = "Poison Sting", minLv = 75, base1 = 135, base2 = 140, dista = 1, bonus = 3.3, type = "poison", cd = 20}, move6 = {spell = "Poison Bomb", minLv = 75, base1 = 174, base2 = 184, dista = 4, bonus = 10, type = "poison", cd = 14}, move7 = {spell = "Psywave", minLv = 80, base1 = 125, base2 = 150, dista = 5, target = "no", bonus = 3.5, type = "psychic", cd = 15}, move8 = {spell = "Psy Pulse", minLv = 83, base1 = 125, base2 = 130, dista = 3, bonus = 3.5, type = "psychic", cd = 15}, }, ['Shiny Voltorb'] = { move1 = {spell = "Thunder Shock", minLv = 10, ex = 1000001, base1 = 10, base2 = 20, dista = 5, bonus = 1, type = "electric", cd = 16 }, move2 = {spell = "Spark", minLv = 1, ex = 1000002, base1 = 95, base2 = 112, target = "no", dista = 5, bonus = 4, type = "electric", cd = 16 }, move3 = {spell = "Thunder Wave", minLv = 1, ex = 1010003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Rollout", minLv = 15, ex = 1000003, base1 = 66, base2 = 79, dista = 3, target = "no", bonus = 3, type = "rock", cd = 30 }, move5 = {spell = "Selfdestruct", minLv = 20, ex = 1000005, base1 = 350, base2 = 600, dista = 5, target = "no", bonus = 10, type = "normal", cd = 3 }, }, ['Shiny Electrode'] = { move1 = {spell = "Thunder Shock", minLv = 35, ex = 1010001, base1 = 40, base2 = 50, dista = 5, bonus = 3.5, type = "electric", cd = 16 }, move2 = {spell = "Spark", minLv = 1, ex = 1010002, base1 = 105, base2 = 152, dista = 5, target = "no", bonus = 6, type = "electric", cd = 16 }, move3 = {spell = "Thunder Wave", minLv = 1, ex = 1010003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Rollout", minLv = 35, ex = 1010003, base1 = 95, base2 = 113, dista = 3, bonus = 4.7, type = "rock", target = "no", cd = 30 }, move5 = {spell = "Discharge", minLv = 40, ex = 1010005, base1 = 220, base2 = 250, dista = 5, target = "no", bonus = 4, type = "electric", cd = 19 }, move6 = {spell = "Electric Storm", minLv = 35, ex = 1010006, base1 = 105, base2 = 143, dista = 5, bonus = 4.7, type = "electric", target = "no", cd = 50 }, move7 = {spell = "Selfdestruct", minLv = 44, ex = 1010007, base1 = 1500, base2 = 2000, dista = 10, bonus = 18, type = "normal", target = "no", cd = 3 }, move8 = {spell = "Charge Beam", minLv = 40, ex = 1010008, base1 = 100, base2 = 187, dista = 5, target = "no", bonus = 10, type = "electric", cd = 19 }, }, ['Shiny Krabby'] = { move1 = {spell = "Bubbles", minLv = 20, ex = 980001, base1 = 60, base2 = 75, target = "yes", dista = 4, bonus = 3, type = "water", cd = 8 }, move2 = {spell = "Mud Shot", minLv = 20, ex = 980002, base1 = 60, base2 = 75, dista = 4, bonus = 3, type = "earth", cd = 8 }, move3 = {spell = "Bubble Beam", minLv = 20, ex = 980003, base1 = 75, base2 = 80, dista = 5, bonus = 5, target = "no", type = "water", cd = 18 }, move4 = {spell = "Crabhammer", minLv = 15, ex = 9800004, base1 = 55, base2 = 70, dista = 1, bonus = 2.2, type = "normal", cd = 18 }, move5 = {spell = "Harden", minLv = 13, ex = 9800004, lpl = 32, life = 850, base1 = 0, target = "no", base2 = 0, dista = 100, bonus = 0, type = "normal", cd = 17 }, }, ['Shiny Kingler'] = { move1 = {spell = "Bubbles", minLv = 20, ex = 990001, base1 = 120, target = "yes", base2 = 135, dista = 4, bonus = 5.6, type = "water", cd = 8 }, move2 = {spell = "Mud Shot", minLv = 20, ex = 990002, base1 = 120, base2 = 135, dista = 4, bonus = 6, type = "earth", cd = 8 }, move3 = {spell = "Bubble Beam", minLv = 20, ex = 990003, base1 = 200, base2 = 210, dista = 5, bonus = 7, target = "no", type = "water", cd = 18 }, move4 = {spell = "Crabhammer", minLv = 40, ex = 9900004, base1 = 82, base2 = 96, dista = 1, bonus = 3.3, type = "normal", cd = 18 }, move5 = {spell = "Fury Cutter", minLv = 45, ex = 9900005, base1 = 70, base2 = 96, dista = 1, bonus = 3, target = "no", type = "bug", cd = 19 }, move6 = {spell = "Guillotine", minLv = 50, ex = 9900006, base1 = 140, base2 = 156, dista = 1, bonus = 7.5, type = "normal", cd = 35 }, move7 = {spell = "Harden", minLv = 50, ex = 9900007, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "normal", cd = 35 }, }, ['Shiny Jynx'] = { move1 = {spell = "Slash", minLv = 75, ex = 1240001, base1 = 80, base2 = 90, dista = 1, bonus = 7.5, type = "normal", cd = 7 }, move2 = {spell = "Doubleslap", minLv = 75, ex = 1240002, base1 = 80, base2 = 90, dista = 1, bonus = 7, type = "normal", cd = 6 }, move3 = {spell = "Psy Wave", minLv = 75, ex = 1240003, base1 = 112, base2 = 123, dista = 5, bonus = 8, target = "no", type = "Psychic", cd = 15 }, move4 = {spell = "Ice Punch", minLv = 75, ex = 1240003, base1 = 115, base2 = 125, dista = 1, bonus = 3.2, type = "Ice", cd = 25 }, move5 = {spell = "Icy Wind", minLv = 75, ex = 1240005, base1 = 145, base2 = 165, dista = 5, target = "no", bonus = 6.2, type = "ice", cd = 18 }, move6 = {spell = "Ice Beam", minLv = 75, ex = 1240006, base1 = 115, base2 = 150, dista = 5, target = "no", bonus = 12, type = "ice", cd = 20 }, move7 = {spell = "Aurora Beam", minLv = 75, ex = 1240007, base1 = 253, base2 = 285, dista = 4, target = "no", bonus = 15, type = "Ice", cd = 40 }, move8 = {spell = "Blizzard", minLv = 81, ex = 1240008, base1 = 115, base2 = 150, dista = 5, target = "no", bonus = 10, type = "ice", cd = 30 }, move9 = {spell = "Great Love", minLv = 83, ex = 1240009, base1 = 240, base2 = 320, dista = 5, target = "no", bonus = 3.5, type = "normal", cd = 26 }, }, ['Shiny Venonat'] = { move1 = {spell = "Absorb", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 9}, move2 = {spell = "Headbutt", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "normal", cd = 9}, move3 = {spell = "Super Sonic", minLv = 20, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move4 = {spell = "Psychic", minLv = 20, base1 = 106, base2 = 116, dista = 5, bonus = 3, target = "no", type = "psychic", cd = 30}, move5 = {spell = "Poison Fang", minLv = 20, base1 = 50, base2 = 90, dista = 1, bonus = 3, type = "poison", cd = 20}, move6 = {spell = "Sleep Powder", minLv = 35, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 2.6, type = "grass", cd = 60}, move7 = {spell = "Poison Powder", minLv = 35, base1 = 10, base2 = 20, dista = 5, target = "no", bonus = 2, type = "grass", cd = 40}, move8 = {spell = "Stun Spore", minLv = 20, base1 = 0, base2 = 0, dista = 1, bonus = 0, target = "no", type = "grass", cd = 20}, }, ['Shiny Venomoth'] = { move1 = {spell = "Absorb", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "grass", cd = 9}, move2 = {spell = "Headbutt", minLv = 50, base1 = 50, base2 = 80, dista = 1, bonus = 4, type = "normal", cd = 9}, move3 = {spell = "Super Sonic", minLv = 50, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move4 = {spell = "Confusion", minLv = 50, base1 = 108, base2 = 119, dista = 5, bonus = 5.7, target = "no", type = "psychic", cd = 30}, move5 = {spell = "Psychic", minLv = 50, base1 = 110, base2 = 125, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 43}, move6 = {spell = "Poison Fang", minLv = 50, base1 = 118, base2 = 129, dista = 1, bonus = 3.6, type = "poison", cd = 20}, move7 = {spell = "Sleep Powder", minLv = 20, base1 = 40, base2 = 50, dista = 1, bonus = 4, type = "normal", target = "no", cd = 30}, move8 = {spell = "Poison Powder", minLv = 50, base1 = 50, base2 = 80, dista = 5, target = "no", bonus = 4, type = "poison", cd = 43}, move9 = {spell = "Stun Spore", minLv = 50, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 20}, move10 = {spell = "Tornado", minLv = 60, base1 = 280, base2 = 300, dista = 5, target = "no", bonus = 9, type = "flying", cd = 60}, }, ['Shiny Horsea'] = { move1 = {spell = "Mud Shot", minLv = 10, ex = 1160001, base1 = 10, base2 = 21, dista = 4, bonus = 1, type = "earth", cd = 10 }, move2 = {spell = "Water Pulse", minLv = 10, ex = 1160002, base1 = 50, base2 = 55, dista = 4, target = "no", bonus = 3.5, type = "water", cd = 13 }, move3 = {spell = "Bubble Beam", minLv = 12, ex = 1160003, base1 = 75, base2 = 80, dista = 5, bonus = 5, target = "no", type = "water", cd = 18 }, move4 = {spell = "Water Gun", minLv = 12, ex = 1160004, base1 = 68, base2 = 78, dista = 4, bonus = 2.5, type = "water", cd = 15 }, move5 = {spell = "Waterball", minLv = 10, ex = 1160005, base1 = 30, base2 = 70, dista = 4, bonus = 2.7, type = "water", cd = 10 }, }, ['Shiny Seadra'] = { move1 = {spell = "Mud Shot", minLv = 45, ex = 1170001, base1 = 50, base2 = 60, dista = 5, bonus = 4.5, type = "earth", cd = 14 }, move2 = {spell = "Water Pulse", minLv = 6, ex = 1170002, base1 = 210, base2 = 215, dista = 4, target = "no", bonus = 5, type = "water", cd = 13 }, move3 = {spell = "Quick Attack", minLv = 45, ex = 1170003, base1 = 191, base2 = 210, dista = 1, bonus = 3, type = "normal", cd = 7 }, move4 = {spell = "Bubbles", minLv = 45, ex = 1170002, base1 = 110, base2 = 125, target = "yes", dista = 4, bonus = 3.4, type = "water", cd = 8 }, move5 = {spell = "Bubblebeam", minLv = 45, ex = 1170005, base1 = 150, base2 = 225, dista = 4, bonus = 7, target = "no", type = "water", cd = 13 }, move6 = {spell = "Water Gun", minLv = 45, ex = 1170006, base1 = 150, base2 = 235, dista = 4, target = "no", bonus = 10, type = "water", cd = 20 }, move7 = {spell = "Water Oath", minLv = 52, ex = 1170007, base1 = 380, base2 = 400, dista = 10, bonus = 7.2, type = "water", target = "no", cd = 29 }, move8 = {spell = "Hydro Cannon", minLv = 55, ex = 1170008, base1 = 190, base2 = 245, dista = 1, bonus = 13, target = "no", type = "water", cd = 30 }, }, ['Shiny Butterfree'] = { move1 = {spell = "String Shot", minLv = 30, base1 = 30, base2 = 40, dista = 5, bonus = 3, type = "bug", cd = 4}, move2 = {spell = "Super Sonic", minLv = 1, base1 = 0, base2 = 0, dista = 4, bonus = 0, type = "normal", cd = 16}, move3 = {spell = "Headbutt", minLv = 1, base1 = 65, base2 = 70, dista = 1, bonus = 5, type = "normal", cd = 4}, move4 = {spell = "Whirlwind", minLv = 32, base1 = 200, base2 = 210, dista = 4, target = "no", bonus = 5.5, type = "flying", cd = 25}, move5 = {spell = "Psybeam", minLv = 36, base1 = 120, base2 = 157, dista = 4, target = "no", bonus = 12.8, type = "psychic", cd = 25}, move6 = {spell = "Confusion", minLv = 34, base1 = 112, base2 = 133, dista = 5, target = "no", bonus = 3.2, type = "psychic", cd = 36}, move7 = {spell = "Sleep Powder", minLv = 20, base1 = 40, base2 = 50, dista = 1, bonus = 4, type = "normal", target = "no", cd = 30}, move8 = {spell = "Stun Spore", minLv = 30, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 25}, move9 = {spell = "Poison Powder", minLv = 30, base1 = 15, base2 = 45, dista = 5, target = "no", bonus = 4, type = "poison", cd = 25}, }, ['Shiny Blastoise'] = { move1 = {spell = "Headbutt",minLv = 65, base1 = 85, base2 = 100, dista = 1, bonus = 8.5, type = "normal", cd = 8}, move2 = {spell = "Bubbles" ,minLv = 65, base1 = 220, base2 = 235, dista = 4, target = "yes", bonus = 5.6, type = "water", cd = 8}, move3 = {spell = "Water Gun", minLv = 65, base1 = 220, base2 = 235, dista = 5, bonus = 7.5, target = "no", type = "water", cd = 18}, move4 = {spell = "Waterball", minLv = 65, base1 = 189, base2 = 206, dista = 3, bonus = 6, type = "water", cd = 22}, move5 = {spell = "Aqua Tail", minLv = 65, base1 = 190, base2 = 225, dista = 1, bonus = 5, type = "water", cd = 18}, move6 = {spell = "Bubble Blast", minLv = 65, base1 = 189, base2 = 196, dista = 4, bonus = 5, type = "water", cd = 30}, move7 = {spell = "Hydro Cannon", minLv = 65, base1 = 425, base2 = 196, dista = 4, bonus = 5, type = "water", cd = 30}, move8 = {spell = "Skull Bash", minLv = 65, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 10, type = "normal", cd = 18}, move9 = {spell = "Hydropump", minLv = 65, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 6, type = "water", cd = 25}, move10 = {spell = "Harden", minLv = 65, lpl = 93, life = 2800, base1 = 0, base2 = 0, dista = 1, target = "no", bonus = 0, type = "normal", cd = 14}, }, ['Shiny Venusaur'] = { move1 = {spell = "Quick Attack", minLv = 65, base1 = 85, base2 = 100, dista = 1, bonus = 8.5, type = "normal", cd = 6}, move2 = {spell = "Razor Leaf", minLv = 65, base1 = 220, base2 = 235, dista = 4, target = "yes", bonus = 5.9, type = "grass", cd = 12}, move3 = {spell = "Vine Whip", minLv = 65, base1 = 230, base2 = 280, dista = 2, target = "no", bonus = 6.5, type = "grass", cd = 19}, move4 = {spell = "Headbutt", minLv = 65, base1 = 159, base2 = 198, dista = 1, bonus = 6, type = "Normal", cd = 15}, move5 = {spell = "Leech Seed", minLv = 65, base1 = 100, base2 = 130, dista = 3, bonus = 5, type = "grass", cd = 30}, move6 = {spell = "Bullet Seed", minLv = 65, base1 = 159, base2 = 188, dista = 5, target = "no", bonus = 7.5, type = "grass", cd = 33}, move7 = {spell = "Solar Beam", minLv = 65, base1 = 450, base2 = 480, dista = 5, bonus = 14, type = "psychic", target = "no", cd = 32}, move8 = {spell = "Sleep Powder", minLv = 65, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 30}, move9 = {spell = "Stun Spore", minLv = 65, base1 = 0, base2 = 0, dista = 5, target = "no", bonus = 0, type = "grass", cd = 30}, move10 = {spell = "Leaf Storm", minLv = 65, base1 = 400, base2 = 500, dista = 5, target = "no", bonus = 6.5, type = "grass", cd = 55}, }, ['Shiny Raticate'] = { move1 = {spell = "Quick Attack", minLv = 25, base1 = 25, base2 = 35, dista = 1, bonus = 2.5, type = "normal", cd = 7}, move2 = {spell = "Scratch", minLv = 1, base1 = 210, base2 = 255, dista = 1, bonus = 3, type = "normal", cd = 9}, move3 = {spell = "Bite", minLv = 1, base1 = 150, base2 = 200, dista = 1, bonus = 5, type = "normal", cd = 11}, move4 = {spell = "Super Fang", minLv = 25 ,base1 = 146, base2 = 159, dista = 1, bonus = 6, type = "normal", cd = 10}, }, ['Shiny Beedrill'] = { move1 = {spell = "String Shot", minLv = 25, base1 = 25, base2 = 35, dista = 5, bonus = 2.5, type = "bug", cd = 11}, move2 = {spell = "Poison Sting", minLv = 35, base1 = 50, base2 = 90, dista = 4, bonus = 9, type = "poison", cd = 12}, move3 = {spell = "Fury Cutter", minLv = 85, base1 = 255, base2 = 263, dista = 1, bonus = 3.5, target = "no", type = "Bug", cd = 25}, move4 = {spell = "Pin Missile", minLv = 30, base1 = 112, base2 = 138, dista = 7, target = "no", bonus = 3.3, type = "Bug", cd = 25}, move5 = {spell = "Rage", minLv = 25, base1 = 140, base2 = 160, dista = 1, target = "yes", bonus = 3.3, type = "dragon", cd = 35}, move6 = {spell = "Strafe", minLv = 33, base1 = 52, base2 = 68, dista = 5, target = "no", bonus = 3.3, type = "normal", cd = 25}, }, ['Shiny Raichu'] = { move1 = {spell = "Mega Punch", minLv = 50, base1 = 50, base2 = 60, dista = 1, bonus = 5, type = "normal", cd = 7}, move2 = {spell = "Thundershock", minLv = 1, base1 = 80, base2 = 120, dista = 5, bonus = 6, type = "electric", cd = 12}, move3 = {spell = "Thunder Wave", minLv = 1, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "electric", cd = 15}, move4 = {spell = "Thunder Bolt", minLv = 50, base1 = 250, base2 = 280, dista = 5, bonus = 6, type = "Electric", cd = 20}, move5 = {spell = "Thunder Punch", minLv = 50, base1 = 140, base2 = 186, dista = 1, bonus = 4.9, type = "electric", cd = 19}, move6 = {spell = "Iron Tail", minLv = 50, base1 = 135, base2 = 153, dista = 1, bonus = 4.6, type = "normal", cd = 20}, move7 = {spell = "Agility", minLv = 1, base1 = 200, base2 = 210, dista = 3, bonus = 7.5, type = "normal", cd = 15}, move8 = {spell = "Electric Storm", minLv = 65, base1 = 100, base2 = 200, dista = 5, target = "no", bonus = 5, type = "electric", cd = 19}, }, ['Dark Abra'] = { move1 = {spell = "Confusion", minLv = 20, base1 = 20, base2 = 30, dista = 1, bonus = 2, type = "psychic", target = "no", cd = 12}, move2 = {spell = "Restore", minLv = 13, base1 = 70, base2 = 140, dista = 100, bonus = 5, target = "no", type = "normal", cd = 26}, move3 = {spell = "Psy Pulse", minLv = 1, base1 = 135, base2 = 165, dista = 5, bonus = 6, type = "psychic", cd = 18}, move4 = {spell = "Calm Mind", minLv = 29, base1 = 75, base2 = 76, dista = 10, bonus = 2.3, target = "no", type = "Psychic", cd = 15}, }, --[[['Dark Kadabra'] = { move1 = {spell = "Psychic", minLv = 47, base1 = 50, base2 = 60, dista = 5, bonus = 4.7, type = "psychic", target = "no", cd = 23}, move2 = {spell = "Psy Wave", minLv = 48, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "psychic", cd = 15}, move3 = {spell = "Psy Pulse", minLv = 1, base1 = 135, base2 = 165, dista = 5, bonus = 6, type = "psychic", cd = 18}, move4 = {spell = "Confusion", minLv = 45, base1 = 133, base2 = 146, dista = 6, bonus = 3.6, target = "no", type = "psychic", cd = 30}, move5 = {spell = "Psychic", minLv = 47, base1 = 120, base2 = 145, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 30}, move6 = {spell = "Calm Mind", minLv = 45, base1 = 143, base2 = 196, dista = 7, target = "no", bonus = 5.6, type = "psychic", cd = 35}, move7 = {spell = "Hypnosis", minLv = 45, base1 = 156, base2 = 178, dista = 5, bonus = 4, type = "ghost", cd = 12}, move8 = {spell = "Reflect", minLv = 60, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 30}, move9 = {spell = "Restore", minLv = 60, base1 = 200, base2 = 250, dista = 3, target = "no", bonus = 4, type = "psychic", cd = 40}, }, ]]-- ['Dark Alakazam'] = { move1 = {spell = "Psychic", minLv = 80, base1 = 80, base2 = 90, dista = 5, bonus = 8, type = "psychic", target = "no", cd = 15}, move2 = {spell = "Psybeam", minLv = 1, base1 = 135, base2 = 245, dista = 5, bonus = 14, type = "psychic", target = "no", cd = 10}, move3 = {spell = "Psy Pulse", minLv = 70, base1 = 175, base2 = 185, dista = 5, bonus = 6, type = "psychic", cd = 10}, move4 = {spell = "Confusion", minLv = 80, base1 = 196, base2 = 208, dista = 5, target = "no", bonus = 4.6, type = "Psychic", cd = 30}, move5 = {spell = "Psychic", minLv = 80, base1 = 170, base2 = 210, dista = 5, target = "no", bonus = 5, type = "psychic", cd = 15}, move6 = {spell = "Psyusion", minLv = 80, base1 = 456, base2 = 488, dista = 5, target = "no", bonus = 4.6, type = "Psychic", cd = 40}, move7 = {spell = "Psy Wave", minLv = 48, base1 = 112, base2 = 123, dista = 5, bonus = 6, target = "no", type = "psychic", cd = 10}, move8 = {spell = "Reflect", minLv = 95, base1 = 190, base2 = 225, dista = 5, target = "no", bonus = 4, type = "psychic", cd = 30}, }, ['Shiny Scyther'] = { move1 = {spell = "Quick Attack", minLv = 80, ex = 1230001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Slash", minLv = 80, ex = 1130002, base1 = 50, base2 = 150, dista = 1, bonus = 5.5, type = "normal", cd = 7 }, move3 = {spell = "Wing Attack", minLv = 80, ex = 1130003, base1 = 120, base2 = 235, dista = 1, target = "no", bonus = 8, type = "flying", cd = 30 }, move4 = {spell = "Fury Cutter", minLv = 85, ex = 1230004, base1 = 255, base2 = 263, dista = 1, bonus = 3.5, target = "no", type = "Bug", cd = 25 }, move5 = {spell = "Guillotine", minLv = 90, ex = 1270006, base1 = 128, base2 = 148, dista = 1, bonus = 7, type = "normal", cd = 35 }, move6 = {spell = "X-Scissor", minLv = 90, ex = 1230006, base1 = 245, base2 = 253, dista = 3, target = "no", bonus = 4, type = "bug", cd = 45 }, move7 = {spell = "Agility", minLv = 90, ex = 1230007, base1 = 300, base2 = 320, dista = 3, bonus = 8, type = "normal", cd = 15 }, }, ['Shiny Electabuzz'] = { move1 = {spell = "Quick Attack", minLv = 80, ex = 1250001, base1 = 80, base2 = 90, dista = 1, bonus = 8, type = "normal", cd = 7 }, move2 = {spell = "Thunder Punch", minLv = 80, ex = 1250022, base1 = 130, base2 = 220, dista = 1, bonus = 9, type = "electric", cd = 12 }, move3 = {spell = "Thunder Shock", minLv = 80, ex = 1250003, base1 = 80, base2 = 120, dista = 5, bonus = 7, type = "electric", cd = 13 }, move4 = {spell = "Thunder Fang", minLv = 80, ex = 1350004, base1 = 106, base2 = 116, dista = 1, bonus = 2.6, type = "electric", cd = 20 }, move5 = {spell = "Thunder Wave", minLv = 80, ex = 1250005, base1 = 110, base2 = 140, dista = 5, bonus = 5, target = "no", type = "electric", cd = 12 }, move6 = {spell = "Thunder", minLv = 80, ex = 1250006, base1 = 225, base2 = 237, dista = 5, target = "no", bonus = 5.5, type = "electric", cd = 21 }, move7 = {spell = "Zap Cannon", minLv = 84, ex = 1390009, base1 = 230, base2 = 270, dista = 4, bonus = 3.5, target = "yes", type = "electric", cd = 25 }, }, ['Shiny Dratini'] = { move1 = {spell = "Aqua Tail", minLv = 20, ex = 1470001, base1 = 20, base2 = 30, dista = 4, bonus = 2, type = "water", cd = 7 }, move2 = {spell = "Hyper Beam", minLv = 50, ex = 1280004, base1 = 200, base2 = 283, dista = 4, target = "no", bonus = 12.5, type = "Normal", cd = 25 }, move3 = {spell = "Thunder Wave", minLv = 60, ex = 1480003, base1 = 112, base2 = 123, dista = 5, bonus = 5, target = "no", type = "thunder", cd = 15 }, move4 = {spell = "Dragon Breath", minLv = 35, ex = 1470004, base1 = 100, target = "no", base2 = 123, dista = 5, bonus = 2.5, type = "Dragon", cd = 30 }, }, } fotos = { ["Bulbasaur"] = {fotopoke = 2377}, ["Ivysaur"] = {fotopoke = 2378}, ["Venusaur"] = {fotopoke = 2379}, ["Charmander"] = {fotopoke = 2380}, ["Charmeleon"] = {fotopoke = 2381}, ["Charizard"] = {fotopoke = 2382}, ["Squirtle"] = {fotopoke = 2383}, ["Wartortle"] = {fotopoke = 2384}, ["Blastoise"] = {fotopoke = 2385}, ["Caterpie"] = {fotopoke = 2386}, ["Metapod"] = {fotopoke = 2387}, ["Butterfree"] = {fotopoke = 2388}, ["Weedle"] = {fotopoke = 2389}, ["Kakuna"] = {fotopoke = 2390}, ["Beedrill"] = {fotopoke = 2391}, ["Pidgey"] = {fotopoke = 2392}, ["Pidgeotto"] = {fotopoke = 2393}, ["Pidgeot"] = {fotopoke = 2394}, ["Rattata"] = {fotopoke = 2395}, ["Raticate"] = {fotopoke = 2396}, ["Spearow"] = {fotopoke = 2397}, ["Fearow"] = {fotopoke = 2398}, ["Ekans"] = {fotopoke = 2399}, ["Arbok"] = {fotopoke = 2400}, ["Pikachu"] = {fotopoke = 2401}, ["Raichu"] = {fotopoke = 2402}, ["Sandshrew"] = {fotopoke = 2403}, ["Sandslash"] = {fotopoke = 2404}, ["Nidoran Female"] = {fotopoke = 2405}, ["Nidorina"] = {fotopoke = 2406}, ["Nidoqueen"] = {fotopoke = 2407}, ["Nidoran Male"] = {fotopoke = 2408}, ["Nidorino"] = {fotopoke = 2409}, ["Nidoking"] = {fotopoke = 2410}, ["Clefairy"] = {fotopoke = 2411}, ["Clefable"] = {fotopoke = 2412}, ["Vulpix"] = {fotopoke = 2413}, ["Ninetales"] = {fotopoke = 2414}, ["Jigglypuff"] = {fotopoke = 2415}, ["Wigglytuff"] = {fotopoke = 2416}, ["Zubat"] = {fotopoke = 2417}, ["Golbat"] = {fotopoke = 2418}, ["Oddish"] = {fotopoke = 2419}, ["Gloom"] = {fotopoke = 2420}, ["Vileplume"] = {fotopoke = 2421}, ["Paras"] = {fotopoke = 2422}, ["Parasect"] = {fotopoke = 2423}, ["Venonat"] = {fotopoke = 2424}, ["Venomoth"] = {fotopoke = 2425}, ["Diglett"] = {fotopoke = 2426}, ["Dugtrio"] = {fotopoke = 2427}, ["Meowth"] = {fotopoke = 2428}, ["Persian"] = {fotopoke = 2429}, ["Psyduck"] = {fotopoke = 2430}, ["Golduck"] = {fotopoke = 2431}, ["Mankey"] = {fotopoke = 2432}, ["Primeape"] = {fotopoke = 2433}, ["Growlithe"] = {fotopoke = 2434}, ["Arcanine"] = {fotopoke = 2435}, ["Poliwag"] = {fotopoke = 2436}, ["Poliwhirl"] = {fotopoke = 2437}, ["Poliwrath"] = {fotopoke = 2438}, ["Abra"] = {fotopoke = 2439}, ["Kadabra"] = {fotopoke = 2440}, ["Alakazam"] = {fotopoke = 2441}, ["Machop"] = {fotopoke = 2442}, ["Machoke"] = {fotopoke = 2443}, ["Machamp"] = {fotopoke = 2444}, ["Bellsprout"] = {fotopoke = 2445}, ["Weepinbell"] = {fotopoke = 2446}, ["Victreebel"] = {fotopoke = 2447}, ["Tentacool"] = {fotopoke = 2448}, ["Tentacruel"] = {fotopoke = 2449}, ["Geodude"] = {fotopoke = 2450}, ["Graveler"] = {fotopoke = 2451}, ["Golem"] = {fotopoke = 2452}, ["Ponyta"] = {fotopoke = 2453}, ["Rapidash"] = {fotopoke = 2454}, ["Slowpoke"] = {fotopoke = 2455}, ["Slowbro"] = {fotopoke = 2456}, ["Magnemite"] = {fotopoke = 2457}, ["Magneton"] = {fotopoke = 2458}, ["Farfetchd"] = {fotopoke = 2459}, ["Doduo"] = {fotopoke = 2460}, ["Dodrio"] = {fotopoke = 2461}, ["Seel"] = {fotopoke = 2462}, ["Dewgong"] = {fotopoke = 2463}, ["Grimer"] = {fotopoke = 2464}, ["Muk"] = {fotopoke = 2465}, ["Shellder"] = {fotopoke = 2466}, ["Cloyster"] = {fotopoke = 2467}, ["Gastly"] = {fotopoke = 2468}, ["Haunter"] = {fotopoke = 2469}, ["Gengar"] = {fotopoke = 2470}, ["Onix"] = {fotopoke = 2471}, ["Drowzee"] = {fotopoke = 2472}, ["Hypno"] = {fotopoke = 2473}, ["Krabby"] = {fotopoke = 2474}, ["Kingler"] = {fotopoke = 2475}, ["Voltorb"] = {fotopoke = 2476}, ["Electrode"] = {fotopoke = 2477}, ["Exeggcute"] = {fotopoke = 2478}, ["Exeggutor"] = {fotopoke = 2479}, ["Cubone"] = {fotopoke = 2480}, ["Marowak"] = {fotopoke = 2481}, ["Hitmonlee"] = {fotopoke = 2482}, ["Hitmonchan"] = {fotopoke = 2483}, ["Lickitung"] = {fotopoke = 2484}, ["Koffing"] = {fotopoke = 2485}, ["Weezing"] = {fotopoke = 2486}, ["Rhyhorn"] = {fotopoke = 2487}, ["Rhydon"] = {fotopoke = 2488}, ["Chansey"] = {fotopoke = 2489}, ["Tangela"] = {fotopoke = 2490}, ["Kangaskhan"] = {fotopoke = 2491}, ["Horsea"] = {fotopoke = 2492}, ["Seadra"] = {fotopoke = 2493}, ["Goldeen"] = {fotopoke = 2494}, ["Seaking"] = {fotopoke = 2495}, ["Staryu"] = {fotopoke = 2496}, ["Starmie"] = {fotopoke = 2497}, ["Mr Mime"] = {fotopoke = 2498}, ["Scyther"] = {fotopoke = 2499}, ["Jynx"] = {fotopoke = 2500}, ["Electabuzz"] = {fotopoke = 2501}, ["Magmar"] = {fotopoke = 2502}, ["Pinsir"] = {fotopoke = 2503}, ["Tauros"] = {fotopoke = 2504}, ["Magikarp"] = {fotopoke = 2505}, ["Gyarados"] = {fotopoke = 2506}, ["Lapras"] = {fotopoke = 2507}, ["Ditto"] = {fotopoke = 2508}, ["Eevee"] = {fotopoke = 2509}, ["Vaporeon"] = {fotopoke = 2510}, ["Jolteon"] = {fotopoke = 2511}, ["Flareon"] = {fotopoke = 2512}, ["Porygon"] = {fotopoke = 2513}, ["Omanyte"] = {fotopoke = 2514}, ["Omastar"] = {fotopoke = 2515}, ["Kabuto"] = {fotopoke = 2516}, ["Kabutops"] = {fotopoke = 2517}, ["Aerodactyl"] = {fotopoke = 2518}, ["Snorlax"] = {fotopoke = 2519}, ["Articuno"] = {fotopoke = 2520}, ["Zapdos"] = {fotopoke = 2521}, ["Moltres"] = {fotopoke = 2522}, ["Dratini"] = {fotopoke = 2523}, ["Dragonair"] = {fotopoke = 2524}, ["Dragonite"] = {fotopoke = 2525}, ["Mewtwo"] = {fotopoke = 2526}, ["Mew"] = {fotopoke = 2527}, ---segundageração fotopoke-- ["Shiny Bulbasaur"] = {fotopoke = 2377}, ["Shiny Ivysaur"] = {fotopoke = 2378}, ["Shiny Venusaur"] = {fotopoke = 174}, ["Shiny Charmander"] = {fotopoke = 2380}, ["Shiny Charmeleon"] = {fotopoke = 2381}, ["Elder Charizard"] = {fotopoke = 2528}, ["Shiny Squirtle"] = {fotopoke = 2383}, ["Shiny Wartortle"] = {fotopoke = 2384}, ["Shiny Blastoise"] = {fotopoke = 156}, ["Shiny Caterpie"] = {fotopoke = 2386}, ["Shiny Metapod"] = {fotopoke = 2387}, ["Shiny Butterfree"] = {fotopoke = 173}, ["Shiny Weedle"] = {fotopoke = 2389}, ["Shiny Kakuna"] = {fotopoke = 2390}, ["Shiny Beedrill"] = {fotopoke = 166}, ["Shiny Pidgey"] = {fotopoke = 2392}, ["Shiny Pidgeotto"] = {fotopoke = 2393}, ["Shiny Pidgeot"] = {fotopoke = 2394}, ["Shiny Rattata"] = {fotopoke = 107}, ["Shiny Raticate"] = {fotopoke = 2396}, ["Shiny Spearow"] = {fotopoke = 2397}, ["Shiny Fearow"] = {fotopoke = 2398}, ["Shiny Ekans"] = {fotopoke = 2399}, ["Shiny Arbok"] = {fotopoke = 2400}, ["Shiny Pikachu"] = {fotopoke = 2401}, ["Shiny Raichu"] = {fotopoke = 148}, ["Shiny Sandshrew"] = {fotopoke = 2403}, ["Shiny Sandslash"] = {fotopoke = 2404}, ["Shiny Nidoran Female"] = {fotopoke = 2405}, ["Shiny Nidorina"] = {fotopoke = 2406}, ["Shiny Nidoqueen"] = {fotopoke = 2407}, ["Shiny Nidoran Male"] = {fotopoke = 2408}, ["Shiny Nidorino"] = {fotopoke = 2409}, ["Shiny Nidoking"] = {fotopoke = 2410}, ["Shiny Clefairy"] = {fotopoke = 2411}, ["Shiny Clefable"] = {fotopoke = 2412}, ["Shiny Vulpix"] = {fotopoke = 2413}, ["Shiny Ninetales"] = {fotopoke = 2414}, ["Shiny Jigglypuff"] = {fotopoke = 2415}, ["Shiny Wigglytuff"] = {fotopoke = 2416}, ["Shiny Zubat"] = {fotopoke = 112}, ["Shiny Golbat"] = {fotopoke = 2418}, ["Shiny Oddish"] = {fotopoke = 111}, ["Shiny Gloom"] = {fotopoke = 2420}, ["Shiny Vileplume"] = {fotopoke = 2421}, ["Shiny Paras"] = {fotopoke = 113}, ["Shiny Parasect"] = {fotopoke = 165}, ["Shiny Venonat"] = {fotopoke = 155}, ["Shiny Venomoth"] = {fotopoke = 147}, ["Shiny Diglett"] = {fotopoke = 2426}, ["Shiny Dugtrio"] = {fotopoke = 2427}, ["Shiny Meowth"] = {fotopoke = 2428}, ["Shiny Persian"] = {fotopoke = 2429}, ["Shiny Psyduck"] = {fotopoke = 2430}, ["Shiny Golduck"] = {fotopoke = 2431}, ["Shiny Mankey"] = {fotopoke = 2432}, ["Shiny Primeape"] = {fotopoke = 2433}, ["Shiny Growlithe"] = {fotopoke = 154}, ["Shiny Arcanine"] = {fotopoke = 146}, ["Shiny Poliwag"] = {fotopoke = 2436}, ["Shiny Poliwhirl"] = {fotopoke = 2437}, ["Shiny Poliwrath"] = {fotopoke = 2438}, ["Dark Abra"] = {fotopoke = 145}, ["Dark Kadabra"] = {fotopoke = 2440}, ["Dark Alakazam"] = {fotopoke = 2441}, ["Shiny Machop"] = {fotopoke = 2442}, ["Shiny Machoke"] = {fotopoke = 2443}, ["Shiny Machamp"] = {fotopoke = 2444}, ["Shiny Bellsprout"] = {fotopoke = 2445}, ["Shiny Weepinbell"] = {fotopoke = 2446}, ["Shiny Victreebel"] = {fotopoke = 2447}, ["Shiny Tentacool"] = {fotopoke = 163}, ["Shiny Tentacruel"] = {fotopoke = 153}, ["Shiny Geodude"] = {fotopoke = 2450}, ["Shiny Graveler"] = {fotopoke = 2451}, ["Shiny Golem"] = {fotopoke = 2452}, ["Shiny Ponyta"] = {fotopoke = 2453}, ["Shiny Rapidash"] = {fotopoke = 2454}, ["Shiny Slowpoke"] = {fotopoke = 2455}, ["Shiny Slowbro"] = {fotopoke = 2456}, ["Shiny Magnemite"] = {fotopoke = 2457}, ["Shiny Magneton"] = {fotopoke = 2458}, ["Shiny Farfetchd"] = {fotopoke = 172}, ["Shiny Doduo"] = {fotopoke = 2460}, ["Shiny Dodrio"] = {fotopoke = 2461}, ["Shiny Seel"] = {fotopoke = 2462}, ["Shiny Dewgong"] = {fotopoke = 2463}, ["Shiny Grimer"] = {fotopoke = 171}, ["Shiny Muk"] = {fotopoke = 162}, ["Shiny Shellder"] = {fotopoke = 2466}, ["Shiny Cloyster"] = {fotopoke = 2467}, ["Shiny Gastly"] = {fotopoke = 2468}, ["Shiny Haunter"] = {fotopoke = 2469}, ["Shiny Gengar"] = {fotopoke = 2470}, ["Crystal Onix"] = {fotopoke = 2529}, ["Shiny Drowzee"] = {fotopoke = 2472}, ["Shiny Hypno"] = {fotopoke = 2473}, ["Shiny Krabby"] = {fotopoke = 170}, ["Shiny Kingler"] = {fotopoke = 161}, ["Shiny Voltorb"] = {fotopoke = 151}, ["Shiny Electrode"] = {fotopoke = 158}, ["Shiny Exeggcute"] = {fotopoke = 2478}, ["Shiny Exeggutor"] = {fotopoke = 2479}, ["Shiny Cubone"] = {fotopoke = 2480}, ["Shiny Marowak"] = {fotopoke = 2481}, ["Elite Hitmonlee"] = {fotopoke = 150}, ["Elite Hitmonchan"] = {fotopoke = 149}, ["Shiny Lickitung"] = {fotopoke = 2484}, ["Shiny Koffing"] = {fotopoke = 2485}, ["Shiny Weezing"] = {fotopoke = 2486}, ["Shiny Rhyhorn"] = {fotopoke = 2487}, ["Shiny Rhydon"] = {fotopoke = 2488}, ["Shiny Chansey"] = {fotopoke = 2489}, ["Shiny Tangela"] = {fotopoke = 2490}, ["Shiny Kangaskhan"] = {fotopoke = 2491}, ["Shiny Horsea"] = {fotopoke = 152}, ["Shiny Seadra"] = {fotopoke = 164}, ["Shiny Goldeen"] = {fotopoke = 2494}, ["Shiny Seaking"] = {fotopoke = 2495}, ["Shiny Staryu"] = {fotopoke = 2496}, ["Shiny Starmie"] = {fotopoke = 2497}, ["Shiny Mr Mime"] = {fotopoke = 2498}, ["Shiny Scyther"] = {fotopoke = 168}, ["Shiny Jynx"] = {fotopoke = 169}, ["Shiny Electabuzz"] = {fotopoke = 160}, ["Shiny Magmar"] = {fotopoke = 2502}, ["Shiny Pinsir"] = {fotopoke = 2503}, ["Shiny Tauros"] = {fotopoke = 2504}, ["Shiny Magikarp"] = {fotopoke = 102}, ["Red Gyarados"] = {fotopoke = 167}, ["Shiny Lapras"] = {fotopoke = 2507}, ["Shiny Ditto"] = {fotopoke = 2508}, ["Shiny Eevee"] = {fotopoke = 2509}, ["Shiny Vaporeon"] = {fotopoke = 2510}, ["Shiny Jolteon"] = {fotopoke = 2511}, ["Shiny Flareon"] = {fotopoke = 2512}, ["Shiny Porygon"] = {fotopoke = 2513}, ["Shiny Omanyte"] = {fotopoke = 2514}, ["Shiny Omastar"] = {fotopoke = 2515}, ["Shiny Kabuto"] = {fotopoke = 2516}, ["Shiny Kabutops"] = {fotopoke = 2517}, ["Shiny Aerodactyl"] = {fotopoke = 2518}, ["Shiny Snorlax"] = {fotopoke = 2519}, ["Shiny Articuno"] = {fotopoke = 2520}, ["Shiny Zapdos"] = {fotopoke = 2521}, ["Shiny Moltres"] = {fotopoke = 2522}, ["Shiny Dratini"] = {fotopoke = 159}, ["Shiny Dragonair"] = {fotopoke = 2524}, ["Shiny Dragonite"] = {fotopoke = 2525}, ["Shiny Mewtwo"] = {fotopoke = 2526}, ["Shiny Mew"] = {fotopoke = 2527}, } pokesCatch = { ["Bulbasaur"] = {chance = 45, corpse = 5969, health = 1200, maxhealth = 1200}, ["Ivysaur"] = {chance = 70, corpse = 5982, health = 2600, maxhealth = 2600}, ["Venusaur"] = {chance = 110, corpse = 5962, health = 5200, maxhealth = 5200}, ["Shiny Venusaur"] = {chance = 500, corpse = 135, health = 10400, maxhealth = 10400}, ["Charmander"] = {chance = 45, corpse = 5983, health = 970, maxhealth = 970}, ["Charmeleon"] = {chance = 70, corpse = 5981, health = 2900, maxhealth = 2900}, ["Charizard"] = {chance = 110, corpse = 6005, health = 5200, maxhealth = 5200}, ["Squirtle"] = {chance = 45, corpse =6008, health = 1350, maxhealth = 1350}, ["Wartortle"] = {chance = 70, corpse =5978, health = 2800, maxhealth = 2800}, ["Blastoise"] = {chance = 110, corpse =5999, health = 5900, maxhealth = 5900}, ["Shiny Blastoise"] = {chance = 500, corpse =134, health = 12000, maxhealth = 12000}, ["Caterpie"] = {chance = 25, corpse =5971, health = 300, maxhealth = 300}, ["Metapod"] = {chance = 50, corpse =5970, health = 1100, maxhealth = 1100}, ["Butterfree"] = {chance = 85, corpse =5985, health = 2000, maxhealth = 2000}, ["Shiny Butterfree"] = {chance = 500, corpse =133, health = 4000, maxhealth = 4000}, ["Weedle"] = {chance = 25, corpse =5964, health = 325, maxhealth = 325}, ["Kakuna"] = {chance = 50, corpse =6000, health = 900, maxhealth = 900}, ["Beedrill"] = {chance = 85, corpse =5990, health = 1900, maxhealth = 1900}, ["Shiny Beedrill"] = {chance = 500, corpse =137, health = 4000, maxhealth = 4000}, ["Pidgey"] = {chance = 25, corpse =5961, health = 380, maxhealth = 380}, ["Pidgeotto"] = {chance = 50, corpse =5966 , health = 1400, maxhealth = 1400}, ["Pidgeot"] = {chance = 85, corpse =6020, health = 3800, maxhealth = 3800}, ["Rattata"] = {chance = 35, corpse =5974, health = 350, maxhealth = 350}, ["Shiny Rattata"] = {chance = 500, corpse =110, health = 800, maxhealth = 800}, ["Raticate"] = {chance = 75, corpse =6007, health = 900, maxhealth = 900}, ["Shiny Raticate"] = {chance = 300, corpse =136, health = 1800, maxhealth = 1800}, ["Spearow"] = {chance = 35, corpse =5968, health = 450, maxhealth = 450}, ["Fearow"] = {chance = 95, corpse =5992, health = 3300, maxhealth = 3300}, ["Ekans"] = {chance = 35, corpse =5979, health = 600, maxhealth = 600}, ["Arbok"] = {chance = 75, corpse =5984, health = 2900, maxhealth = 2900}, ["Pikachu"] = {chance = 35, corpse =6001, health = 900, maxhealth = 900}, ["Raichu"] = {chance = 75, corpse =5996, health = 3200, maxhealth = 3200}, ["Shiny Raichu"] = {chance = 300,corpse =140, health = 6400, maxhealth = 6400}, ["Sandshrew"] = {chance = 35, corpse =5988, health = 700, maxhealth = 700}, ["Sandslash"] = {chance = 75, corpse =6041, health = 3400, maxhealth = 3400}, ["Nidoran Female"] = {chance = 25, corpse =6013, health = 600, maxhealth = 600}, ["Nidorina"] = {chance = 70, corpse =6014, health = 2000, maxhealth = 2000}, ["Nidoqueen"] = {chance = 110, corpse =6021, health = 4200, maxhealth = 4200}, ["Nidoran Male"] = {chance = 25, corpse =6015, health = 650, maxhealth = 650}, ["Nidorino"] = {chance = 70, corpse =6019, health = 2500, maxhealth = 2500}, ["Nidoking"] = {chance = 110, corpse =5995, health = 4800, maxhealth = 4800}, ["Clefairy"] = {chance = 35, corpse =2966, health = 600, maxhealth = 600}, ["Clefable"] = {chance = 75, corpse =6006, health = 2400, maxhealth = 2400}, ["Vulpix"] = {chance = 35, corpse =6003, health = 680, maxhealth = 680}, ["Ninetales"] = {chance = 75, corpse =6040, health = 3400, maxhealth = 3400}, ["Jigglypuff"] = {chance = 35, corpse =6011, health = 550, maxhealth = 550}, ["Wigglytuff"] = {chance = 75, corpse =6012, health = 2900, maxhealth = 2900}, ["Zubat"] = {chance = 35, corpse =5989, health = 450, maxhealth = 450}, ["Shiny Zubat"] = {chance = 100, corpse = 114, health = 1000, maxhealth = 1000}, ["Golbat"] = {chance = 110, corpse =6053, health = 1900, maxhealth = 1900}, ["Oddish"] = {chance = 25, corpse =3008, health = 340, maxhealth = 340}, ["Shiny Oddish"] = {chance = 100,corpse =115, health = 700, maxhealth = 700}, ["Gloom"] = {chance = 70, corpse =6017, health = 1400, maxhealth = 1400}, ["Vileplume"] = {chance = 110, corpse =6025, health = 3300, maxhealth = 3300}, ["Paras"] = {chance = 35, corpse =3007, health = 850, maxhealth = 850}, ["Shiny Paras"] = {chance = 120, corpse =116, health = 1800, maxhealth = 1800}, ["Parasect"] = {chance = 75, corpse =6027, health = 3800, maxhealth = 3800}, ["Shiny Parasect"] = {chance = 300, corpse =127, health = 8000, maxhealth = 8000}, ["Venonat"] = {chance = 35, corpse =5997, health = 1350, maxhealth = 1350}, ["Shiny Venonat"] = {chance = 100, corpse =130, health = 1350, maxhealth = 1350}, ["Venomoth"] = {chance = 75, corpse =2925, health = 3850, maxhealth = 3850}, ["Shiny Venomoth"] = {chance = 75, corpse =132, health = 3850, maxhealth = 3850}, ["Diglett"] = {chance = 35, corpse =6023, health = 900, maxhealth = 900}, ["Dugtrio"] = {chance = 70, corpse =6024, health = 3450, maxhealth = 3450}, ["Meowth"] = {chance = 35, corpse =6034, health = 950, maxhealth = 950}, ["Persian"] = {chance = 75, corpse =6009, health = 2250, maxhealth = 2250}, ["Psyduck"] = {chance = 35, corpse =6029, health = 950, maxhealth = 950}, ["Golduck"] = {chance = 75, corpse =6028, health = 4000, maxhealth = 4000}, ["Mankey"] = {chance = 35, corpse =6035, health = 1050, maxhealth = 1050}, ["Primeape"] = {chance = 75, corpse =6032, health = 4500, maxhealth = 4500}, ["Ponyta"] = {chance = 35, corpse =5975, health = 1400, maxhealth = 1400}, ["Rapidash"] = {chance = 75, corpse =4323, health = 5500, maxhealth = 5500}, ["Slowpoke"] = {chance = 35, corpse =2926, health = 1200, maxhealth = 1200}, ["Slowbro"] = {chance = 75, corpse =5986, health = 4600, maxhealth = 4600}, ["Doduo"] = {chance = 35, corpse =2842, health = 600, maxhealth = 600}, ["Dodrio"] = {chance = 75, corpse =6047, health = 2650, maxhealth = 2650}, ["Seel"] = {chance = 35, corpse =6030, health = 1000, maxhealth = 1000}, ["Dewgong"] = {chance = 75, corpse =6038, health = 5200, maxhealth = 5200}, ["Magnemite"] = {chance = 35, corpse =6056, health = 450, maxhealth = 450}, ["Magneton"] = {chance = 75, corpse =6076, health = 1750, maxhealth = 1750}, ["Growlithe"] = {chance = 35, corpse =6036, health = 1000, maxhealth = 1000}, ["Shiny Growlithe"] = {chance = 100, corpse =117, health = 2000, maxhealth = 2000}, ["Shiny Arcanine"] = {chance = 300, corpse =120, health = 14000, maxhealth = 14000}, ["Arcanine"] = {chance = 75, corpse =6031, health = 6800, maxhealth = 6800}, ["Grimer"] = {chance = 35, corpse =6055, health = 600, maxhealth = 600}, ["Shiny Grimer"] = {chance = 100, corpse =123, health = 1200, maxhealth = 1200}, ["Muk"] = {chance = 75, corpse =2845, health = 2400, maxhealth = 2400}, ["Shiny Muk"] = {chance = 300, corpse =121, health = 5000, maxhealth = 5000}, ["Shellder"] = {chance = 35, corpse =2837, health = 800, maxhealth = 800}, ["Cloyster"] = {chance = 75, corpse =2932, health = 5000, maxhealth = 5000}, ["Gastly"] = {chance = 25, corpse =5993, health = 1000, maxhealth = 1000}, ["Haunter"] = {chance = 70, corpse =6004, health = 3000, maxhealth = 3000}, ["Gengar"] = {chance = 110, corpse =6336, health = 7000, maxhealth = 7000}, ["Onix"] = {chance = 75, corpse =2990, health = 5300, maxhealth = 5300}, ["Drowzee"] = {chance = 35, corpse =6026, health = 1150, maxhealth = 1150}, ["Hypno"] = {chance = 75, corpse =6046, health = 4600, maxhealth = 4600}, ["Shiny Krabby"] = {chance = 35, corpse =126, health =1700, maxhealth =1700}, ["Krabby"] = {chance = 100,corpse =126, health = 850, maxhealth = 850}, ["Shiny Kingler"] = {chance = 300, corpse =138, health = 6600, maxhealth = 6600}, ["Kingler"] = {chance = 75, corpse =6340, health = 3250, maxhealth = 3250}, ["Voltorb"] = {chance = 35, corpse =6049, health = 620, maxhealth = 620}, ["Shiny Voltorb"] = {chance = 100, corpse =125, health = 1200, maxhealth = 1200}, ["Electrode"] = {chance = 75, corpse =6051, health = 2000, maxhealth = 2000}, ["Shiny Electrode"] = {chance = 300, corpse =124, health = 4000, maxhealth = 4000}, ["Exeggcute"] = {chance = 35, corpse =2982, health = 800, maxhealth = 800}, ["Exeggutor"] = {chance = 75, corpse =3005, health = 4000, maxhealth = 4000}, -- PAREI AQUI! ["Cubone"] = {chance = 35, corpse =6050, health = 1200, maxhealth = 1200}, ["Marowak"] = {chance = 75, corpse =6072, health = 3900, maxhealth = 3900}, ["Lickitung"] = {chance = 75, corpse =2953, health = 5800, maxhealth = 5800}, ["Hitmonlee"] = {chance = 110, corpse =6067, health = 5500, maxhealth = 5500}, ["Hitmonchan"] = {chance = 110, corpse =5977, health = 5500, maxhealth = 5500}, ["Goldeen"] = {chance = 35, corpse = 2970, health = 950, maxhealth = 950}, ["Seaking"] = {chance = 75, corpse =3038, health = 2000, maxhealth = 2000}, ["Koffing"] = {chance = 35, corpse = 2936, health = 900, maxhealth = 900}, ["Weezing"] = {chance = 75, corpse =6306, health = 2800, maxhealth = 2800}, ["Rhydon"] = {chance = 35, corpse = 2858, health = 7000, maxhealth = 7000}, ["Rhyhorn"] = {chance = 75, corpse =3035, health = 3800, maxhealth = 3800}, ["Chansey"] = {chance = 110, corpse = 6010, health = 7500, maxhealth = 7500}, ["Tangela"] = {chance = 75, corpse = 5976, health = 3500, maxhealth = 3500}, ["Kangaskhan"] = {chance = 110, corpse = 6073, health = 7000, maxhealth = 7000}, ["Shiny Horsea"] = {chance = 100, corpse = 139, health = 600, maxhealth = 600}, ["Horsea"] = {chance = 35, corpse = 2973, health = 300, maxhealth = 300}, ["Shiny Seadra"] = {chance = 300, corpse = 131, health =5000, maxhealth = 5000 }, ["Seadra"] = {chance = 75, corpse = 2872, health =2500, maxhealth = 2500 }, ["Staryu"] = {chance = 35, corpse = 5987, health = 1050, maxhealth = 1050}, ["Starmie"] = {chance = 75, corpse = 7320, health = 3800, maxhealth = 3800}, ["Mrmime"] = {chance = 35, corpse =6069, health = 5500, maxhealth = 5500}, ["Scyther"] = {chance = 110, corpse =3002, health = 6500, maxhealth = 6500}, ["Shiny Scyther"] = {chance = 500, corpse =142, health = 13000, maxhealth = 13000}, ["Jynx"] = {chance = 110, corpse = 6077, health = 6000, maxhealth = 6000}, ["Shiny Jynx"] = {chance = 500, corpse = 129, health = 12000, maxhealth = 12000}, ["Electabuzz"] = {chance = 110, corpse =6065, health = 6800, maxhealth = 6800}, ["Shiny Electabuzz"] = {chance = 500, corpse =143, health = 14000, maxhealth = 14000}, ["Magmar"] = {chance = 110, corpse =7283, health = 7200, maxhealth = 7200}, ["Pinsir"] = {chance = 75, corpse = 7282, health = 4000, maxhealth = 4000}, ["Tauros"] = {chance = 75, corpse = 6302, health = 4200, maxhealth = 4200}, ["Magikarp"] = {chance = 3, corpse = 2818, health = 120, maxhealth = 120 }, ["Shiny Magikarp"] = {chance = 300, corpse = 105, health = 240, maxhealth = 240}, ["Gyarados"] = {chance = 110, corpse = 6331, health = 7800, maxhealth = 7800}, ["Red Gyarados"] = {chance = 500, corpse = 144, health = 18000, maxhealth = 18000}, ["Lapras"] = {chance = 110, corpse = 6018, health = 7000, maxhealth = 7000}, ["Ditto"] = {chance = 110, corpse = 2817, health = 4000, maxhealth = 4000}, ["Vaporeon"] = {chance = 75, corpse = 5960, health = 4500, maxhealth = 4500}, ["Eevee"] = {chance = 35, corpse = 6364, health = 1500, maxhealth = 1500}, ["Flareon"] = {chance = 75, corpse = 6059, health = 4500, maxhealth = 4500}, ["Jolteon"] = {chance = 75, corpse = 6044, health = 4500, maxhealth = 4500}, ["Porygon"] = {chance = 110, corpse = 5963 , health = 1700, maxhealth = 1700}, ["Omanyte"] = {chance = 50, corpse = 5998, health = 1300, maxhealth = 1300}, ["Omastar"] = {chance = 110, corpse = 5994, health = 6000, maxhealth = 6000}, ["Kabutops"] = {chance = 110, corpse = 6345, health = 6500, maxhealth = 6500}, ["Kabuto"] = {chance = 50, corpse = 5972, health = 1300, maxhealth = 1300}, ["Aerodactyl"] = {chance = 110, corpse = 6338, health = 8000, maxhealth = 8000}, ["Snorlax"] = {chance = 110, corpse = 6016, health = 9500, maxhealth = 9500}, ["Moltres"] = {chance = 1000, corpse = 7330, health = 11000, maxhealth = 11000}, ["Articuno"] = {chance = 1000, corpse = 7256, health = 11000, maxhealth = 11000}, ["Zapdos"] = {chance = 1000, corpse = 6074, health = 11000, maxhealth = 11000}, ["Crystal Onix"] = {chance = 500, corpse = 6320, health = 10000, maxhealth = 10000}, ["Mew"] = {chance = 1000, corpse = 2939, health = 7200, maxhealth = 7200}, ["Mewtwo"] = {chance = 2000, corpse = 5973, health = 8500, maxhealth = 8500}, ["Elder Charizard"] = {chance = 500, corpse = 2954, health = 10000, maxhealth = 10000}, ["Dragonite"] = {chance = 150, corpse = 4295, health = 10800, maxhealth = 10800}, ["Dragonair"] = {chance = 100, corpse = 6002, health = 5600, maxhealth = 5600}, ["Dratini"] = {chance = 40, corpse = 2879, health = 1200, maxhealth = 1200}, ["Shiny Dratini"] = {chance = 100, corpse = 118, health = 1200, maxhealth = 1200}, ["Farfetch'd"] = {chance = 110, corpse = 2836, health = 3000, maxhealth = 3000}, ["Shiny Farfetch'd"] = {chance = 300, corpse = 8745, health = 6000, maxhealth = 6000}, ["Machop"] = {chance = 35, corpse = 6045, health = 1100, maxhealth = 1100}, ["Machoke"] = {chance = 85, corpse = 4251, health = 3500, maxhealth = 3500}, ["Machamp"] = {chance = 110, corpse = 6048, health = 7500, maxhealth = 7500}, ["Geodude"] = {chance = 25, corpse = 6071, health = 700, maxhealth = 700}, ["Graveler"] = {chance = 85, corpse = 6516, health = 3000, maxhealth = 3000}, ["Golem"] = {chance = 110, corpse = 6043, health = 6500, maxhealth = 6500}, ["Poliwag"] = {chance = 25, corpse = 6042, health = 400, maxhealth = 400}, ["Poliwhirl"] = {chance = 85, corpse = 6054, health = 1200, maxhealth = 1200}, ["Poliwrath"] = {chance = 110, corpse = 6033, health = 4400, maxhealth = 4400}, ["Tentacool"] = {chance = 25, corpse = 2961, health = 1050, maxhealth = 1050}, ["Shiny Tentacool"] = {chance = 100, corpse = 122, health = 2100, maxhealth = 2100}, ["Tentacruel"] = {chance = 75, corpse = 6037, health = 7500, maxhealth = 7500}, ["Shiny Tentacruel"] = {chance = 32.5, corpse = 8757, health = 15000, maxhealth = 15000}, ["Bellsprout"] = {chance = 35, corpse = 2806, health = 420, maxhealth = 420}, ["Weepinbell"] = {chance = 85, corpse = 2928, health = 1100, maxhealth = 1100}, ["Victreebel"] = {chance = 110, corpse = 6332, health = 4000, maxhealth = 4000}, ["Abra"] = {chance = 30, corpse = 2905, health = 620, maxhealth = 620}, ["Dark Abra"] = {chance = 200, corpse = 141, health = 10000, maxhealth = 10000}, ["Kadabra"] = {chance = 85, corpse = 6060, health = 2500, maxhealth = 2500}, ["Alakazam"] = {chance = 110, corpse = 6057, health = 4000, maxhealth = 4000}, ["Dark Alakazam"] = {chance = 500, corpse = 6057, health = 20000, maxhealth = 20000} } pokesEvo = { ["Bulbasaur"] = {level = 24, evolution = "Ivysaur", maxh = 2900, count = 1, stoneid = 2276, stoneid2 = 0}, ["Ivysaur"] = {level = 65, evolution = "Venusaur", maxh = 5200, count = 2, stoneid = 2276, stoneid2 = 0}, ["Charmander"] = {level = 24, evolution = "Charmeleon", maxh = 2900, count = 1, stoneid = 2283, stoneid2 = 0}, ["Charmeleon"] = {level = 65, evolution = "Charizard", maxh = 5200, count = 2, stoneid = 2283, stoneid2 = 0}, ["Squirtle"] = {level = 24, evolution = "Wartortle", maxh = 2900, count = 1, stoneid = 2277, stoneid2 = 0}, ["Wartortle"] = {level = 65, evolution = "Blastoise", maxh = 5200, count = 2, stoneid = 2277, stoneid2 = 0}, ["Caterpie"] = {level = 15, evolution = "Metapod", maxh = 1400, count = 1, stoneid = 2284, stoneid2 = 0}, ["Metapod"] = {level = 30, evolution = "Butterfree", maxh = 1400, count = 2, stoneid = 2284, stoneid2 = 0}, ["Weedle"] = {level = 15, evolution = "Kakuna", maxh = 1400, count = 1, stoneid = 2284, stoneid2 = 0}, ["Kakuna"] = {level = 25, evolution = "Beedrill", maxh = 1400, count = 2, stoneid = 2284, stoneid2 = 0}, ["Pidgey"] = {level = 20, evolution = "Pidgeotto", maxh = 1400, count = 1, stoneid = 2289, stoneid2 = 0}, ["Pidgeotto"] = {level = 65, evolution = "Pidgeot", maxh = 1400, count = 2, stoneid = 2289, stoneid2 = 0}, ["Rattata"] = {level = 25, evolution = "Raticate", maxh = 1400, count = 1, stoneid = 2289, stoneid2 = 0}, ["Spearow"] = {level = 50, evolution = "Fearow", maxh = 1400, count = 2, stoneid = 2289, stoneid2 = 0}, ["Ekans"] = {level = 35, evolution = "Arbok", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 0}, ["Pikachu"] = {level = 50, evolution = "Raichu", maxh = 1400, count = 2, stoneid = 2279, stoneid2 = 0}, ["Sandshrew"] = {level = 55, evolution = "Sandslash", maxh = 1400, count = 2, stoneid = 2287, stoneid2 = 0}, ["Nidoran Female"] = {level = 30, evolution = "Nidorina", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 0}, ["Nidorina"] = {level = 65, evolution = "Nidoqueen", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 2287}, ["Nidoran Male"] = {level = 30, evolution = "Nidorino", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 0}, ["Nidorino"] = {level = 65, evolution = "Nidoking", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 2287}, ["Clefairy"] = {level = 45, evolution = "Clefable", maxh = 1400, count = 1, stoneid = 2289, stoneid2 = 0}, ["Vulpix"] = {level = 70, evolution = "Ninetales", maxh = 1400, count = 2, stoneid = 2283, stoneid2 = 0}, ["Jigglypuff"] = {level = 45, evolution = "Wigglytuff", maxh = 1400, count = 1, stoneid = 2289, stoneid2 = 0}, ["Zubat"] = {level = 35, evolution = "Golbat", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 0}, ["Oddish"] = {level = 25, evolution = "Gloom", maxh = 1400, count = 1, stoneid = 2276, stoneid2 = 0}, ["Gloom"] = {level = 50, evolution = "Vileplume", maxh = 1400, count = 1, stoneid = 2276, stoneid2 = 2278}, ["Paras"] = {level = 50, evolution = "Parasect", maxh = 1400, count = 2, stoneid = 2284, stoneid2 = 0}, ["Venonat"] = {level = 50, evolution = "Venomoth", maxh = 1400, count = 1, stoneid = 2284, stoneid2 = 2278}, ["Diglett"] = {level = 35, evolution = "Dugtrio", maxh = 1400, count = 1, stoneid = 2287, stoneid2 = 0}, ["Meowth"] = {level = 30, evolution = "Persian", maxh = 1400, count = 1, stoneid = 2289, stoneid2 = 0}, ["Psyduck"] = {level = 55, evolution = "Golduck", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 2288}, ["Mankey"] = {level = 50, evolution = "Primeape", maxh = 1400, count = 1, stoneid = 2281, stoneid2 = 0}, ["Growlithe"] = {level = 80, evolution = "Arcanine", maxh = 1400, count = 2, stoneid = 2283, stoneid2 = 0}, ["Poliwag"] = {level = 25, evolution = "Poliwhirl", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 0}, ["Poliwhirl"] = {level = 65, evolution = "Poliwrath", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 2281}, ["Abra"] = {level = 45, evolution = "Kadabra", maxh = 1400, count = 1, stoneid = 2288, stoneid2 = 0}, ["Kadabra"] = {level = 80, evolution = "Alakazam", maxh = 1400, count = 2, stoneid = 2288, stoneid2 = 0}, ["Machop"] = {level = 45, evolution = "Machoke", maxh = 1400, count = 1, stoneid = 2281, stoneid2 = 0}, ["Machoke"] = {level = 70, evolution = "Machamp", maxh = 1400, count = 2, stoneid = 2281, stoneid2 = 0}, ["Bellsprout"] = {level = 25, evolution = "Weepinbell", maxh = 1400, count = 1, stoneid = 2276, stoneid2 = 0}, ["Weepinbell"] = {level = 50, evolution = "Victreebel", maxh = 1400, count = 2, stoneid = 2276, stoneid2 = 0}, ["Tentacool"] = {level = 75, evolution = "Tentacruel", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 2278}, ["Geodude"] = {level = 40, evolution = "Graveler", maxh = 1400, count = 1, stoneid = 2280, stoneid2 = 0}, ["Graveler"] = {level = 70, evolution = "Golem", maxh = 1400, count = 2, stoneid = 2280, stoneid2 = 0}, ["Ponyta"] = {level = 55, evolution = "Rapidash", maxh = 1400, count = 1, stoneid = 2283, stoneid2 = 0}, ["Slowpoke"] = {level = 45, evolution = "Slowbro", maxh = 1400, count = 1, stoneid = 2288, stoneid2 = 0}, ["Magnemite"] = {level = 40, evolution = "Magneton", maxh = 1400, count = 1, stoneid = 2279, stoneid2 = 0}, ["Doduo"] = {level = 45, evolution = "Dodrio", maxh = 1400, count = 1, stoneid = 2289, stoneid2 = 0}, ["Seel"] = {level = 65, evolution = "Dewgong", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 2290}, ["Grimer"] = {level = 45, evolution = "Muk", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 0}, ["Shellder"] = {level = 60, evolution = "Cloyster", maxh = 1400, count = 2, stoneid = 2290, stoneid2 = 0}, ["Gastly"] = {level = 45, evolution = "Haunter", maxh = 1400, count = 1, stoneid = 2286, stoneid2 = 0}, ["Haunter"] = {level = 80, evolution = "Gengar", maxh = 1400, count = 2, stoneid = 2286, stoneid2 = 0}, ["Drowzee"] = {level = 55, evolution = "Hypno", maxh = 1400, count = 2, stoneid = 2288, stoneid2 = 0}, ["Krabby"] = {level = 40, evolution = "Kingler", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 0}, ["Voltorb"] = {level = 35, evolution = "Electrode", maxh = 1400, count = 1, stoneid = 2279, stoneid2 = 0}, ["Exeggcute"] = {level = 55, evolution = "Exeggutor", maxh = 1400, count = 1, stoneid = 2276, stoneid2 = 2288}, ["Cubone"] = {level = 55, evolution = "Marowak", maxh = 1400, count = 2, stoneid = 2287, stoneid2 = 0}, ["Koffing"] = {level = 35, evolution = "Weezing", maxh = 1400, count = 1, stoneid = 2278, stoneid2 = 0}, ["Rhyhorn"] = {level = 75, evolution = "Rhydon", maxh = 1400, count = 2, stoneid = 2280, stoneid2 = 0}, ["Horsea"] = {level = 45, evolution = "Seadra", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 0}, ["Goldeen"] = {level = 35, evolution = "Seaking", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 0}, ["Staryu"] = {level = 15, evolution = "Starmie", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 0}, ["Magikarp"] = {level = 85, evolution = "Gyarados", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 2285}, ["Omanyte"] = {level = 80, evolution = "Omastar", maxh = 1400, count = 1, stoneid = 2277, stoneid2 = 2285}, ["Kabuto"] = {level = 80, evolution = "Kabutops", maxh = 1400, count = 1, stoneid = 2280, stoneid2 = 2285}, ["Dratini"] = {level = 60, evolution = "Dragonair", maxh = 1400, count = 1, stoneid = 2285, stoneid2 = 0}, ["Dragonair"] = {level = 100, evolution = "Dragonite", maxh = 1400, count = 2, stoneid = 2285, stoneid2 = 0}, ["Hitmonlee"] = {level = 100, evolution = "Elite Hitmonlee", maxh = 16500, count = 10, stoneid = 2281, stoneid2 = 0}, ["Hitmonchan"] = {level = 100, evolution = "Elite Hitmonchan", maxh = 17500, count = 10, stoneid = 2281, stoneid2 = 0}, ['Shiny Magikarp'] = {level = 120, evolution = "Red Gyarados", maxh = 18000, count = 1, stoneid = 2277, stoneid2 = 2285}, ['Shiny Rattata'] = {level = 25, evolution = "Shiny Raticate", maxh = 2900, count = 1, stoneid = 2289, stoneid2 = 2289}, } DexLib = { {"Bulbasaur", 1, 1001}, {"Ivysaur", 1, 1002}, {"Venusaur", 1, 1003}, {"Charmander", 1, 1004}, {"Charmeleon", 1, 1005}, {"Charizard", 1, 1006}, {"Squirtle", 1, 1007}, {"Wartortle", 1, 1008}, {"Blastoise", 1, 1009}, {"Caterpie", 1, 1010}, {"Metapod", 1, 1011}, {"Butterfree", 1, 1012}, {"Weedle", 1, 1013}, {"Kakuna", 1, 1014}, {"Beedrill", 1, 1015}, {"Pidgey", 1, 1016}, {"Pidgeotto", 1, 1017}, {"Pidgeot", 1, 1018}, {"Rattata", 1, 1019}, {"Raticate", 1, 1020}, {"Spearow", 1, 1021}, {"Fearow", 1, 1022}, {"Ekans", 1, 1023}, {"Arbok", 1, 1024}, {"Pikachu", 1, 1025}, {"Raichu", 1, 1026}, {"Sandshrew", 1, 1027}, {"Sandslash", 1, 1028}, {"Nidoran Female", 1, 1029}, {"Nidorina", 1, 1030}, {"Nidoqueen", 1, 1031}, {"Nidoran Male", 1, 1032}, {"Nidorino", 1, 1033}, {"Nidoking", 1, 1034}, {"Clefairy", 1, 1035}, {"Clefable", 1, 1036}, {"Vulpix", 1, 1037}, {"Ninetales", 1, 1038}, {"Jigglypuff", 1, 1039}, {"Wigglytuff", 1, 1040}, {"Zubat", 1, 1041}, {"Golbat", 1, 1042}, {"Oddish", 1, 1043}, {"Gloom", 1, 1044}, {"Vileplume", 1, 1045}, {"Paras", 1, 1046}, {"Parasect", 1, 1047}, {"Venonat", 1, 1048}, {"Venomoth", 1, 1049}, {"Diglett", 1, 1050}, {"Dugtrio", 1, 1051}, {"Meowth", 1, 1052}, {"Persion", 1, 1053}, {"Psyduck", 1, 1054}, {"Golduck", 1, 1055}, {"Mankey", 1, 1056}, {"Primeape", 1, 1057}, {"Growlithe", 1, 1058}, {"Arcanine", 1, 1059}, {"Poliwag", 1, 1060}, {"Poliwhirl", 1, 1061}, {"Poliwrath", 1, 1062}, {"Abra", 1, 1063}, {"Kadabra", 1, 1064}, {"Alakazam", 1, 1065}, {"Machop", 1, 1066}, {"Machoke", 1, 1067}, {"Machamp", 1, 1068}, {"Bellsprout", 1, 1069}, {"Weepinbell", 1, 1070}, {"Victreebel", 1, 1071}, {"Tentacool", 1, 1072}, {"Tentacruel", 1, 1073}, {"Geodude", 1, 1074}, {"Graveler", 1, 1075}, {"Golem", 1, 1076}, {"Ponyta", 1, 1077}, {"Rapidash", 1, 1078}, {"Slowpoke", 1, 1079}, {"Slowbro", 1, 1080}, {"Magnemite", 1, 1081}, {"Magneton", 1, 1082}, {"Farfetchd", 1, 1083}, {"Doduo", 1, 1084}, {"Dodrio", 1, 1085}, {"Seel", 1, 1086}, {"Dewgong", 1, 1087}, {"Grimer", 1, 1088}, {"Muk", 1, 1089}, {"Shellder", 1, 1090}, {"Cloyster", 1, 1091}, {"Gastly", 1, 1092}, {"Haunter", 1, 1093}, {"Gengar", 1, 1094}, {"Onix", 1, 1095}, {"Drowzee", 1, 1096}, {"Hypno", 1, 1097}, {"Krabby", 1, 1098}, {"Kingler", 1, 1099}, {"Voltorb", 1, 1100}, {"Electrode", 1, 1101}, {"Exeggcute", 1, 1102}, {"Exeggutor", 1, 1103}, {"Cubone", 1, 1104}, {"Marowak", 1, 1105}, {"Hitmonlee", 1, 1106}, {"Hitmonchan", 1, 1107}, {"Lickitung", 1, 1108}, {"Koffing", 1, 1109}, {"Weezing", 1, 1110}, {"Rhyhorn", 1, 1111}, {"Rhydon", 1, 1112}, {"Chansey", 1, 1113}, {"Tangela", 1, 1114}, {"Kangaskhan", 1, 1115}, {"Horsea", 1, 1116}, {"Seadra", 1, 1117}, {"Goldeen", 1, 1118}, {"Seaking", 1, 1119}, {"Staryu", 1, 1120}, {"Starmie", 1, 1121}, {"Mr.mime", 1, 1122}, {"Scyther", 1, 1123}, {"Jynx", 1, 1124}, {"Electabuzz", 1, 1125}, {"Magmar", 1, 1126}, {"Pinsir", 1, 1127}, {"Tauros", 1, 1128}, {"Magikarp", 1, 1129}, {"Gyarados", 1, 1130}, {"Red Gyarados", 1, 167}, {"Lapras", 1, 1131}, {"Ditto", 1, 1132}, {"Eevee", 1, 1133}, {"Vaporeon", 1, 1134}, {"Jolteon", 1, 1135}, {"Flareon", 1, 1136}, {"Porygon", 1, 1137}, {"Omanyte", 1, 1138}, {"Omastar", 1, 1139}, {"Kabuto", 1, 1140}, {"Kabutops", 1, 1141}, {"Aerodactyl", 1, 1142}, {"Snorlax", 1, 1143}, {"Articuno", 1, 1144}, {"Zapdos", 1, 1145}, {"Moltres", 1, 1146}, {"Dratini", 1, 1147}, {"Dragonair", 1, 1148}, {"Dragonite", 1, 1149}, {"Mewtwo", 1, 1150}, {"Mew", 1, 1151}, --Shinys portrait pokedex -- {"Shiny Bulbasaur", 1, 1001}, {"Shiny Ivysaur", 1, 1002}, {"Shiny Venusaur", 1, 1003}, {"Shiny Charmander", 1, 1004}, {"Shiny Charmeleon", 1, 1005}, {"Elder Charizard", 1, 1006}, {"Shiny Squirtle", 1, 1007}, {"Shiny Wartortle", 1, 1008}, {"Shiny Blastoise", 1, 1009}, {"Shiny Caterpie", 1, 1010}, {"Shiny Metapod", 1, 1011}, {"Shiny Butterfree", 1, 1012}, {"Shiny Weedle", 1, 1013}, {"Shiny Kakuna", 1, 1014}, {"Shiny Beedrill", 1, 1015}, {"Shiny Pidgey", 1, 1016}, {"Shiny Pidgeotto", 1, 1017}, {"Shiny Pidgeot", 1, 1018}, {"Shiny Rattata", 1, 1019}, {"Shiny Raticate", 1, 1020}, {"Shiny Spearow", 1, 1021}, {"Shiny Fearow", 1, 1022}, {"Shiny Ekans", 1, 1023}, {"Shiny Arbok", 1, 1024}, {"Shiny Pikachu", 1, 1025}, {"Shiny Raichu", 1, 1026}, {"Shiny Sandshrew", 1, 1027}, {"Shiny Sandslash", 1, 1028}, {"Shiny Nidoran Female", 1, 1029}, {"Shiny Nidorina", 1, 1030}, {"Shiny Nidoqueen", 1, 1031}, {"Shiny Nidoran Male", 1, 1032}, {"Shiny Nidorino", 1, 1033}, {"Shiny Nidoking", 1, 1034}, {"Shiny Clefairy", 1, 1035}, {"Shiny Clefable", 1, 1036}, {"Shiny Vulpix", 1, 1037}, {"Shiny Ninetales", 1, 1038}, {"Shiny Jigglypuff", 1, 1039}, {"Shiny Wigglytuff", 1, 1040}, {"Shiny Zubat", 1, 1041}, {"Shiny Golbat", 1, 1042}, {"Shiny Oddish", 1, 1043}, {"Shiny Gloom", 1, 1044}, {"Shiny Vileplume", 1, 1045}, {"Shiny Paras", 1, 1046}, {"Shiny Parasect", 1, 1047}, {"Shiny Venonat", 1, 1048}, {"Shiny Venomoth", 1, 1049}, {"Shiny Diglett", 1, 1050}, {"Shiny Dugtrio", 1, 1051}, {"Shiny Meowth", 1, 1052}, {"Shiny Persion", 1, 1053}, {"Shiny Psyduck", 1, 1054}, {"Shiny Golduck", 1, 1055}, {"Shiny Mankey", 1, 1056}, {"Shiny Primeape", 1, 1057}, {"Shiny Growlithe", 1, 1058}, {"Shiny Arcanine", 1, 1059}, {"Shiny Poliwag", 1, 1060}, {"Shiny Poliwhirl", 1, 1061}, {"Shiny Poliwrath", 1, 1062}, {"Dark Abra", 1, 1063}, {"Dark Kadabra", 1, 1064}, {"Dark Alakazam", 1, 1065}, {"Shiny Machop", 1, 1066}, {"Shiny Machoke", 1, 1067}, {"Shiny Machamp", 1, 1068}, {"Shiny Bellsprout", 1, 1069}, {"Shiny Weepinbell", 1, 1070}, {"Shiny Victreebel", 1, 1071}, {"Shiny Tentacool", 1, 1072}, {"Shiny Tentacruel", 1, 1073}, {"Shiny Geodude", 1, 1074}, {"Shiny Graveler", 1, 1075}, {"Shiny Golem", 1, 1076}, {"Shiny Ponyta", 1, 1077}, {"Shiny Rapidash", 1, 1078}, {"Shiny Slowpoke", 1, 1079}, {"Shiny Slowbro", 1, 1080}, {"Shiny Magnemite", 1, 1081}, {"Shiny Magneton", 1, 1082}, {"Shiny Farfetchd", 1, 1083}, {"Shiny Doduo", 1, 1084}, {"Shiny Dodrio", 1, 1085}, {"Shiny Seel", 1, 1086}, {"Shiny Dewgong", 1, 1087}, {"Shiny Grimer", 1, 1088}, {"Shiny Muk", 1, 1089}, {"Shiny Shellder", 1, 1090}, {"Shiny Cloyster", 1, 1091}, {"Shiny Gastly", 1, 1092}, {"Shiny Haunter", 1, 1093}, {"Shiny Gengar", 1, 1094}, {"Crystal Onix", 1, 1095}, {"Shiny Drowzee", 1, 1096}, {"Shiny Hypno", 1, 1097}, {"Shiny Krabby", 1, 1098}, {"Shiny Kingler", 1, 1099}, {"Shiny Voltorb", 1, 1100}, {"Shiny Electrode", 1, 1101}, {"Shiny Exeggcute", 1, 1102}, {"Shiny Exeggutor", 1, 1103}, {"Shiny Cubone", 1, 1104}, {"Shiny Marowak", 1, 1105}, {"Elite Hitmonlee", 1, 1106}, {"Elite Hitmonchan", 1, 1107}, {"Shiny Lickitung", 1, 1108}, {"Shiny Koffing", 1, 1109}, {"Shiny Weezing", 1, 1110}, {"Shiny Rhyhorn", 1, 1111}, {"Shiny Rhydon", 1, 1112}, {"Shiny Chansey", 1, 1113}, {"Shiny Tangela", 1, 1114}, {"Shiny Kangaskhan", 1, 1115}, {"Shiny Horsea", 1, 1116}, {"Shiny Seadra", 1, 1117}, {"Shiny Goldeen", 1, 1118}, {"Shiny Seaking", 1, 1119}, {"Shiny Staryu", 1, 1120}, {"Shiny Starmie", 1, 1121}, {"Shiny Mr.mime", 1, 1122}, {"Shiny Scyther", 1, 1123}, {"Shiny Jynx", 1, 1124}, {"Shiny Electabuzz", 1, 1125}, {"Shiny Magmar", 1, 1126}, {"Shiny Pinsir", 1, 1127}, {"Shiny Tauros", 1, 1128}, {"Shiny Magikarp", 1, 1129}, {"Red Gyarados", 1, 167}, {"Shiny Lapras", 1, 1131}, {"Shiny Ditto", 1, 1132}, {"Shiny Eevee", 1, 1133}, {"Shiny Vaporeon", 1, 1134}, {"Shiny Jolteon", 1, 1135}, {"Shiny Flareon", 1, 1136}, {"Shiny Porygon", 1, 1137}, {"Shiny Omanyte", 1, 1138}, {"Shiny Omastar", 1, 1139}, {"Shiny Kabuto", 1, 1140}, {"Shiny Kabutops", 1, 1141}, {"Shiny Aerodactyl", 1, 1142}, {"Shiny Snorlax", 1, 1143}, {"Shiny Articuno", 1, 1144}, {"Shiny Zapdos", 1, 1145}, {"Shiny Moltres", 1, 1146}, {"Shiny Dratini", 1, 1147}, {"Shiny Dragonair", 1, 1148}, {"Shiny Dragonite", 1, 1149}, {"Shiny Mewtwo", 1, 1150}, {"Shiny Mew", 1, 1151}, } local shinys = { "Venusaur", "Blastoise", "Butterfree", "Beedrill", "Rattata", "Raticate", "Raichu", "Zubat", "Paras", "Parasect", "Venonat", "Venomoth", "Growlithe", "Arcanine", "Tentacool", "Grimer", "Muk", "Kingler", "Voltorb", "Electrode", "Horsea", "Seadra", "Scyther", "Electabuzz", "Gyarados", "Dratini", "Oddish"} local raros = {"Magikarp"} function isNpcSummon(cid) return isNpc(getCreatureMaster(cid)) end local function doShiny(cid) if isCreature(cid) then if isSummon(cid) then return true end if isNpcSummon(cid) then return true end if isInArray(shinys, getCreatureName(cid)) then chance = 3 --1% chance elseif isInArray(raros, getCreatureName(cid)) then chance = 1 --1% chance else return true end if math.random(1, 1000) <= chance*10 then doSendMagicEffect(getThingPos(cid), 18) local name, pos = "Shiny ".. getCreatureName(cid), getThingPos(cid) doRemoveCreature(cid) local shi = doCreateMonster(name, pos, false) setPlayerStorageValue(shi, 74469, 1) else setPlayerStorageValue(cid, 74469, 1) end --/\ else return true end end local function doSetRandomGender(cid) if not isCreature(cid) then return true end if isSummon(cid) then return true end local gender = 0 local rate = 70 if getCreatureName(cid) == "Nidoran Male" then gender = 4 elseif getCreatureName(cid) == "Nidoran Female" then gender = 3 elseif getCreatureName(cid) == "Dragonite" then gender = 0 elseif getCreatureName(cid) == "Magneton" then gender = 0 else if rate == 0 then gender = 3 elseif rate == 100 then gender = 4 elseif rate == -1 then gender = 0 elseif math.random(1, 100) <= rate then gender = 4 else gender = 3 end end doCreatureSetSkullType(cid, gender) end function setPokemonWildStatus(cid) if isMonster(cid) and pokes[getCreatureName(cid)] then local plvl = 0 local b = getCreatureOutfit(cid).lookBody local lvl = pokes[getCreatureName(cid)].level local maxh = (pokes[getCreatureName(cid)].cons * lvl) setCreatureMaxHealth(cid, (maxh +pokes[getCreatureName(cid)].vida)) doCreatureAddHealth(cid, getCreatureMaxHealth(cid)) end return true end function onSpawn(cid) registerCreatureEvent(cid, "Exp") if isSummon(cid) then registerCreatureEvent(cid, "DiePoke") if not getItemAttribute(getPlayerSlotItem(getCreatureMaster(cid), CONST_SLOT_FEET).uid, "ExpLevel") then doItemSetAttribute(getPlayerSlotItem(getCreatureMaster(cid), CONST_SLOT_FEET).uid, "ExpLevel", 1) end return true end if not isPlayer(cid) and not isSummon(cid) then registerCreatureEvent(cid, "Aloot") if pokes[getCreatureName(cid)] then setPlayerStorageValue(cid, 993615, pokes[getCreatureName(cid)].level) end --addEvent(setPokemonWildStatus, 5, cid) end addEvent(doSetRandomGender, 5, cid) addEvent(doShiny, 10, cid) return true end
  8. Qualquer arquivo em minha pasta LIB que seja alterado ocorre erros. Pretendo por exemplo mudar o level de uso de certo pokemon por exemplo, após salvar e abrir o server aparece uma sequencia de erros no distro, o qual não reconhece mais a pasta. Favor VEJA as FOTOS, desde já, Obrigado!
  9. Olá, Script Perfeito se não fosse ela andar sobre a água. Só acontece quando estou com um pokemon Surf. Se estou em Surf e clico na bike ela aparece sobre a agua lol Fora isso está 100% do jeito que eu quero. Existe algum complemento de script que impeça de usar bike em modo surf, ou impeça de usar surf enquanto estive em modo bike? Meu script: local function BikeSpeedOn(cid, t) setPlayerStorageValue(cid, t.s, t.speed) doChangeSpeed(cid, -getCreatureSpeed(cid)) doChangeSpeed(cid, t.speed) end local function BikeSpeedOff(cid, t) setPlayerStorageValue(cid, t.s, -1) end function onUse(cid, item, fromPosition, itemEx, toPosition) local pos = getThingPos(cid) local t = {text='Mount, bike!', dtext='Demount, bike!', s=5700, speed = 1675} if getPlayerStorageValue(cid, t.s) <= 0 then doSendMagicEffect(pos, 177) doCreatureSay(cid, t.text, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You have mounted in a bike.') BikeSpeedOn(cid, t) if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = 738}, -1) else doSetCreatureOutfit(cid, {lookType = 737}, -1) end else doSendMagicEffect(pos, 177) doCreatureSay(cid, t.dtext, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You haven demouted of a bike.') BikeSpeedOff(cid, t) doRemoveCondition(cid, CONDITION_OUTFIT) end return true end
  10. E como eu CAMUFLO o ip ? meu poketibia apareceu online mas o cliente da error 10061. Net compartilhada com portas liberadas e firewall desativado :,((((( aguardo ajuda pls

Informação Importante

Confirmação de Termo