Ir para conteúdo

[Encerrado] [Pokemon] Dúvidas? - Pda


lucashgas

Posts Recomendados

yahooABC

 

 

 

Créditos erondino ?

 

Então estou vendo que ele usou partes do MEU mapa e não colocou créditos, se é que for igual mesmo, afinal eu fiz o mapa e esse tal de Erondino acho que nem existia aqui no xtibia, então pergunte antes e não afirme !

@betinhowz666 esse mapa é totalmente seu, mais eu to editando ele agr para por hunts de johto.

 

Créditos Do Mapa: Betinhowz666

Link para o comentário
Compartilhar em outros sites

@Topic

Como eu tinha dito, o NPC Professor Burton está bugado.

Refiz ele e ta ai pra quem quiser:

30% de Creditos pro Slicer pq copiei parte do codigo do npc dele.

 

local keywordHandler = KeywordHandler:new()

local npcHandler = NpcHandler:new(keywordHandler)

NpcSystem.parseParameters(npcHandler)

local talkState = {}

function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end

function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end

function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end

function onThink() npcHandler:onThink() end

function creatureSayCallback(cid, type, msg)

if(not npcHandler:isFocused(cid)) then

return false

end

local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT

if(msgcontains(msg, 'help')) then

selfSay('Hello, Im professor burton and i study pokemon evolutions. Would you like some help to evolve your pokemons?', cid)

talkState[talkUser] = 1

elseif(msgcontains(msg, 'yes') and talkState[talkUser] == 1) then

selfSay('Ok i can give you one {water}, {leaf}, {heart}, {coccon} or {venom} stone. You can choose only one, what will it be?', cid)

talkState[talkUser] = 2

elseif (msgcontains(msg, 'water') and talkState[talkUser] == 2) then

selfSay('Water stones are used to evolve water pokemons, but i can only give water stones to players at level 20 or higher, with at least 12 pokemon registred on your pokedex, do you have those requirements?', cid)

talkState[talkUser] = 4

elseif (msgcontains(msg, 'leaf') and talkState[talkUser] == 2) then

selfSay('Leaf stones evolve grass pokemon. You need to be level 18 and have at least 10 pokemons registrations in your pokedex, do you have these requirements?', cid)

talkState[talkUser] = 5

elseif (msgcontains(msg, 'coccon') and talkState[talkUser] == 2) then

selfSay('Coccon stones are very common and they evolve bug pokemons, the only requirement is to be level 15, are you at this level?', cid)

talkState[talkUser] = 6

elseif (msgcontains(msg, 'heart') and talkState[talkUser] == 2) then

selfSay('Heart stones evolve either flying or normal pokemon, and you gotta be level 20 with 12 pokemon registrations in your pokedex, are you ok with that?', cid)

talkState[talkUser] = 7

elseif (msgcontains(msg, 'venom') and talkState[talkUser] == 2) then

selfSay('Ah, venom, used to evolve poison pokemons, this isnt the rarest stone but its used only with strong pokemons, you need level 28 and 18 pokemons registrations in your pokedex to get this stone, fine?', cid)

talkState[talkUser] = 8

 

elseif (msgcontains(msg, 'yes') and talkState[talkUser] == 4) then

if getPlayerStorageValue(cid, 200) ~= 1 then

local unlock = 0

for i = 1, #oldpokedex do

if getPlayerInfoAboutPokemon(cid, oldpokedex[1]).dex then

unlock = unlock + 1

end

end

if unlock >= 12 and getPlayerLevel(cid) >= 20 then

selfSay("Oh, Good! Get this water stone.", cid)

doPlayerAddItem(cid,11442,1)

setPlayerStorageValue(cid, 200, 1)

else

selfSay("You don't have level 20 or You haven't 12 pokemons in your pokedex yet, come back when you do that...", cid)

talkState[cid] = 0

return true

end

else

selfSay("I already give you a stone.", cid)

talkState[cid] = 0

return true

end

elseif (msgcontains(msg, 'yes') and talkState[talkUser] == 5) then

if getPlayerStorageValue(cid, 200) ~= 1 then

local unlock = 0

for i = 1, #oldpokedex do

if getPlayerInfoAboutPokemon(cid, oldpokedex[1]).dex then

unlock = unlock + 1

end

end

if unlock >= 10 and getPlayerLevel(cid) >= 18 then

selfSay("Oh, Good! Get this leaf stone.", cid)

doPlayerAddItem(cid,11441,1)

setPlayerStorageValue(cid, 200, 1)

else

selfSay("You don't have level 18 or You haven't 10 pokemons in your pokedex yet, come back when you do that...", cid)

talkState[cid] = 0

return true

end

else

selfSay("I already give you a stone.", cid)

talkState[cid] = 0

return true

end

elseif (msgcontains(msg, 'yes') and talkState[talkUser] == 6) then

if getPlayerStorageValue(cid, 200) ~= 1 then

local unlock = 0

for i = 1, #oldpokedex do

if getPlayerInfoAboutPokemon(cid, oldpokedex[1]).dex then

unlock = unlock + 1

end

end

if unlock >= 0 and getPlayerLevel(cid) >= 15 then

selfSay("Oh, Good! Get this coccon stone.", cid)

doPlayerAddItem(cid,11448,1)

setPlayerStorageValue(cid, 200, 1)

else

selfSay("You don't have level 15 yet, come back when you do that...", cid)

talkState[cid] = 0

return true

end

else

selfSay("I already give you a stone.", cid)

talkState[cid] = 0

return true

end

elseif (msgcontains(msg, 'yes') and talkState[talkUser] == 7) then

if getPlayerStorageValue(cid, 200) ~= 1 then

local unlock = 0

for i = 1, #oldpokedex do

if getPlayerInfoAboutPokemon(cid, oldpokedex[1]).dex then

unlock = unlock + 1

end

end

if unlock >= 12 and getPlayerLevel(cid) >= 20 then

selfSay("Oh, Good! Get this heart stone.", cid)

doPlayerAddItem(cid,11453,1)

setPlayerStorageValue(cid, 200, 1)

else

selfSay("You don't have level 20 or You haven't 12 pokemons in your pokedex yet, come back when you do that...", cid)

talkState[cid] = 0

return true

end

else

selfSay("I already give you a stone.", cid)

talkState[cid] = 0

return true

end

elseif (msgcontains(msg, 'yes') and talkState[talkUser] == 8) then

if getPlayerStorageValue(cid, 200) ~= 1 then

local unlock = 0

for i = 1, #oldpokedex do

if getPlayerInfoAboutPokemon(cid, oldpokedex[1]).dex then

unlock = unlock + 1

end

end

if unlock >= 18 and getPlayerLevel(cid) >= 28 then

selfSay("Oh, Good! Get this venom stone.", cid)

doPlayerAddItem(cid,11443,1)

setPlayerStorageValue(cid, 200, 1)

else

selfSay("You don't have level 28 or You haven't 18 pokemons in your pokedex yet, come back when you do that...", cid)

talkState[cid] = 0

return true

end

else

selfSay("I already give you a stone.", cid)

talkState[cid] = 0

return true

end

end

 

return true

end

npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)

npcHandler:addModule(FocusModule:new())

 

 

Editado por luposlps
Link para o comentário
Compartilhar em outros sites

@betinhowz666

NOOOSSAA a bixinha ficou brava... Cara, malz ae, so que o seguinte esse pedaço de mapa ai tem no mapa do erondino, como eu nunca vi em outro local imaginei que seria do erondino... E se voce prestar atenção eu não afirmei nada, eu falei que se não me enganava, poderia estar enganado (o que de acordo com voce estou). Não precisa dessa falta de educação toda por um mal entendido.

 

______________________________________________________________________________________________________________________

 

@Dudu08267

 

Cara pra ficar com o look do jeito que tu falo é so editar no look.lua (creaturescript/script/look.lua)

 

Vai la e procura por:

 

 

 

local npcname = getCreatureName(thing.uid)

local l = string.len(npcname)

if not isPlayer(thing.uid) and not isMonster(thing.uid) then

--string.sub(npcname, l - 1, l) == " " then

local article = getPlayerStorageValue(thing.uid, 9891) == 1 and "He is" or "She is"

local nname = string.sub(npcname, 1, l - 2)

if nname == getCreatureName(cid) then

nname = "yourself"

article = "You are"

end

str = "You see "..nname..". "..article.." a pokemon trainer."

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str)

return false

end

 

 

 

E logo a baixo coloque isso:

 

 

 

local pname = getCreatureName(thing.uid)

local l = string.len(pname)

if isPlayer(thing.uid) and not isMonster(thing.uid) then

--string.sub(npcname, l - 1, l) == " " then

local article = getPlayerSex(thing.uid) and "He is" or "She is"

local nname = string.sub(pname, 1)

if nname == getCreatureName(cid) then

nname = "yourself"

article = "You are"

str = "You see "..nname..". "..article.." a pokemon trainer.\n Citizen of "..getTownName(getPlayerTown(cid)).." City."

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str)

else

str = "You see "..nname..". "..article.." a pokemon trainer.\n Citizen of "..getTownName(getPlayerTown(thing.uid)).." City."

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str)

end

return false

end

 

 

 

Espero ter ajudado

Link para o comentário
Compartilhar em outros sites

@All To Usand o Patch 1.1b nibelins

Baxei o Patch 1.1B

 

Sempre que atualizo a bar do poke e cliko no poke para sair aparece !code 64 !cd 64 algo assim e so aqui?

poderia me ajudar =S

Link para o comentário
Compartilhar em outros sites

@uchiha1madara

vai em talkaction/cdbar.lua e ve se tem isso dentro do script..

if words == "!code64" then
return 0
end

 

se n tiver coloque isso em baixo de..

if not useKpdoDlls then return true end

 

se tiver isso la.. tente ir talkactions/talkactions.xml e ve se tem essa linha la..

 

<talkaction words="!code64" case-sensitive="no" event="script" value="cdbar.lua"/>

 

se n tiver.. coloque la em qlqr parte... e se tiver isso tb la... dai ja n sei.. ;x

Link para o comentário
Compartilhar em outros sites

uchiha1madara

 

 

Isso fica em talkactions veja se voce tem este comando.

 

 

@All Estou abrindo o cliente com o HexEditor, mudo o ip 127.0.0.1 pelo meu e vou em save, salvado vou na pasta do .exe que fica desconhecido e não abre, alguem teria uma video aula de como mecher ? ou o que eu poderia estar fazendo de errado.

Link para o comentário
Compartilhar em outros sites

@betinhowz666

NOOOSSAA a bixinha ficou brava... Cara, malz ae, so que o seguinte esse pedaço de mapa ai tem no mapa do erondino, como eu nunca vi em outro local imaginei que seria do erondino... E se voce prestar atenção eu não afirmei nada, eu falei que se não me enganava, poderia estar enganado (o que de acordo com voce estou). Não precisa dessa falta de educação toda por um mal entendido.

 

______________________________________________________________________________________________________________________

 

@Dudu08267

 

Cara pra ficar com o look do jeito que tu falo é so editar no look.lua (creaturescript/script/look.lua)

 

Vai la e procura por:

 

 

 

local npcname = getCreatureName(thing.uid)

local l = string.len(npcname)

if not isPlayer(thing.uid) and not isMonster(thing.uid) then

--string.sub(npcname, l - 1, l) == " " then

local article = getPlayerStorageValue(thing.uid, 9891) == 1 and "He is" or "She is"

local nname = string.sub(npcname, 1, l - 2)

if nname == getCreatureName(cid) then

nname = "yourself"

article = "You are"

end

str = "You see "..nname..". "..article.." a pokemon trainer."

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str)

return false

end

 

 

 

E logo a baixo coloque isso:

 

 

 

local pname = getCreatureName(thing.uid)

local l = string.len(pname)

if isPlayer(thing.uid) and not isMonster(thing.uid) then

--string.sub(npcname, l - 1, l) == " " then

local article = getPlayerSex(thing.uid) and "He is" or "She is"

local nname = string.sub(pname, 1)

if nname == getCreatureName(cid) then

nname = "yourself"

article = "You are"

str = "You see "..nname..". "..article.." a pokemon trainer.\n Citizen of "..getTownName(getPlayerTown(cid)).." City."

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str)

else

str = "You see "..nname..". "..article.." a pokemon trainer.\n Citizen of "..getTownName(getPlayerTown(thing.uid)).." City."

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str)

end

return false

end

 

 

 

Espero ter ajudado

 

n funcionou:

13:51 You see yourself. You are a pokemon trainer.

 

coloquei isso no starter:

 

getPlayerTown(cid, 2)

 

2(cerulean)(eu axo)

 

pra quando abrir o bau do poke ganhar a town 2 soq n funcionou.

Link para o comentário
Compartilhar em outros sites

@uchiha1madara

vai em talkaction/cdbar.lua e ve se tem isso dentro do script..

if words == "!code64" then
return 0
end

 

se n tiver coloque isso em baixo de..

if not useKpdoDlls then return true end

 

se tiver isso la.. tente ir talkactions/talkactions.xml e ve se tem essa linha la..

 

<talkaction words="!code64" case-sensitive="no" event="script" value="cdbar.lua"/>

 

se n tiver.. coloque la em qlqr parte... e se tiver isso tb la... dai ja n sei.. ;x

a parte do cdbar.lua ja tinha...

+ no .xml n puis la

testando# se pegar rep+ -D

Link para o comentário
Compartilhar em outros sites

uchiha1madara

 

 

Isso fica em talkactions veja se voce tem este comando.

 

 

@All Estou abrindo o cliente com o HexEditor, mudo o ip 127.0.0.1 pelo meu e vou em save, salvado vou na pasta do .exe que fica desconhecido e não abre, alguem teria uma video aula de como mecher ? ou o que eu poderia estar fazendo de errado.

Seguinte da esse erro pois tu edita o .exe com o client aberto Tenta fechar o client abrir o HexEditor e editar os ips' 127.0.0.1 e depois salva ai tu abre o client.

Obs:Qualquer "backspace" que tu der no client e deletar ele vai deixar de funcionar nunca deleta sempre "sobreescreve".

Link para o comentário
Compartilhar em outros sites

como falei estava arrumando os pokemons para aguentar +

pq estavam morrendo muito facil

 

é só ir no configuration.lua

 

é só substituir o original por esse

 

 

pokes = {

------------------------------------------------------------------Statos Pokemon Kanto------------------------------------------------------------------

["Bulbasaur"] = {offense = 4.9, defense = 4.9, specialattack = 6.5, vitality = 9, agility = 0.1, exp = 64, level = 18, type = "grass", type2 = "poison"},

["Ivysaur"] = {offense = 6.2, defense = 6.3, specialattack = 8, vitality = 12, agility = 0.2, exp = 141, level = 38, type = "grass", type2 = "poison"},

["Venusaur"] = {offense = 8.2, defense = 8.3, specialattack = 10, vitality = 16, agility = 0.3, exp = 208, level = 75, type = "grass", type2 = "poison"},

["Charmander"] = {offense = 5.2, defense = 4.3, specialattack = 6, vitality = 7.8, agility = 0.1, exp = 65, level = 18, type = "fire", type2 = "no type"},

["Charmeleon"] = {offense = 6.5, defense = 5.8, specialattack = 8.5, vitality = 11.6, agility = 0.2, exp = 142, level = 38, type = "fire", type2 = "no type"},

["Charizard"] = {offense = 8.5, defense = 7.8, specialattack = 11, vitality = 15.6, agility = 0.3, exp = 209, level = 75, type = "fire", type2 = "flying"},

["Squirtle"] = {offense = 4.8, defense = 6.5, specialattack = 5, vitality = 8.8, agility = 0.1, exp = 66, level = 18, type = "water", type2 = "no type"},

["Wartortle"] = {offense = 6.3, defense = 8, specialattack = 6.5, vitality = 11.8, agility = 0.2, exp = 143, level = 38, type = "water", type2 = "no type"},

["Blastoise"] = {offense = 8.3, defense = 10, specialattack = 8.5, vitality = 15.8, agility = 0.3, exp = 210, level = 75, type = "water", type2 = "no type"},

["Caterpie"] = {offense = 3, defense = 3.5, specialattack = 2, vitality = 9, agility = 0.1, exp = 53, level = 3, type = "bug", type2 = "no type"},

["Metapod"] = {offense = 2, defense = 5.5, specialattack = 2.5, vitality = 10, agility = 0.2, exp = 72, level = 10, type = "bug", type2 = "no type"},

["Butterfree"] = {offense = 4.5, defense = 5, specialattack = 8, vitality = 12, agility = 0.3, exp = 160, level = 30, type = "bug", type2 = "flying"},

["Weedle"] = {offense = 3.5, defense = 3, specialattack = 2, vitality = 8, agility = 0.1, exp = 52, level = 3, type = "bug", type2 = "poison"},

["Kakuna"] = {offense = 2.5, defense = 5, specialattack = 2.5, vitality = 9, agility = 0.2, exp = 120, level = 10, type = "bug", type2 = "poison"},

["Beedrill"] = {offense = 8, defense = 4, specialattack = 4.5, vitality = 13, agility = 0.3, exp = 159, level = 30, type = "bug", type2 = "poison"},

["Pidgey"] = {offense = 4.5, defense = 4, specialattack = 3.5, vitality = 8, agility = 0.1, exp = 55, level = 5, type = "normal", type2 = "flying"},

["Pidgeotto"] = {offense = 6, defense = 5.5, specialattack = 5, vitality = 12.6, agility = 0.2, exp = 113, level = 20, type = "normal", type2 = "flying"},

["Pidgeot"] = {offense = 8, defense = 7.5, specialattack = 7, vitality = 16.3, agility = 0.3, exp = 172, level = 60, type = "normal", type2 = "flying"},

["Rattata"] = {offense = 5.6, defense = 3.5, specialattack = 2.5, vitality = 6, agility = 0.1, exp = 57, level = 3, type = "normal", type2 = "no type"},

["Raticate"] = {offense = 8.1, defense = 6, specialattack = 5, vitality = 11, agility = 0.2, exp = 116, level = 20, type = "normal", type2 = "no type"},

["Spearow"] = {offense = 6, defense = 3, specialattack = 3.1, vitality = 8, agility = 0.1, exp = 58, level = 5, type = "normal", type2 = "flying"},

["Fearow"] = {offense = 9, defense = 6.5, specialattack = 6.1, vitality = 13, agility = 0.2, exp = 162, level = 50, type = "normal", type2 = "flying"},

["Ekans"] = {offense = 6, defense = 4.4, specialattack = 4, vitality = 7, agility = 0.1, exp = 62, level = 12, type = "poison", type2 = "no type"},

["Arbok"] = {offense = 8.5, defense = 6.9, specialattack = 6.5, vitality = 12, agility = 0.2, exp = 147, level = 30, type = "poison", type2 = "no type"},

["Pikachu"] = {offense = 5.5, defense = 3, specialattack = 5, vitality = 7, agility = 0.2, exp = 82, level = 20, type = "electric", type2 = "no type"},

["Raichu"] = {offense = 9, defense = 5.5, specialattack = 9, vitality = 12, agility = 0.3, exp = 122, level = 50, type = "electric", type2 = "no type"},

["Sandshrew"] = {offense = 7.5, defense = 8.5, specialattack = 2, vitality = 10, agility = 0.1, exp = 93, level = 18, type = "ground", type2 = "no type"},

["Sandslash"] = {offense = 10, defense = 11, specialattack = 4.5, vitality = 15, agility = 0.2, exp = 163, level = 55, type = "ground", type2 = "no type"},

["Nidoran Female"] = {offense = 4.7, defense = 5.2, specialattack = 4, vitality = 11, agility = 0.1, exp = 59, level = 10, type = "poison", type2 = "no type"},

["Nidorina"] = {offense = 6.2, defense = 6.7, specialattack = 5.5, vitality = 14, agility = 0.2, exp = 59, level = 25, type = "poison", type2 = "no type"},

["Nidoqueen"] = {offense = 8.2, defense = 8.7, specialattack = 7.5, vitality = 18, agility = 0.3, exp = 194, level = 65, type = "poison", type2 = "ground"},

["Nidoran Male"] = {offense = 5.7, defense = 4, specialattack = 4, vitality = 9.2, agility = 0.1, exp = 60, level = 10, type = "poison", type2 = "no type"},

["Nidorino"] = {offense = 7.2, defense = 5.7, specialattack = 5.5, vitality = 12.2, agility = 0.2, exp = 118, level = 25, type = "poison", type2 = "no type"},

["Nidoking"] = {offense = 9.2, defense = 7.7, specialattack = 8.5, vitality = 16.2, agility = 0.3, exp = 195, level = 65, type = "poison", type2 = "ground"},

["Clefairy"] = {offense = 4.5, defense = 4.8, specialattack = 6, vitality = 14, agility = 0.2, exp = 68, level = 10, type = "normal", type2 = "no type"},

["Clefable"] = {offense = 7, defense = 7.3, specialattack = 8.5, vitality = 19, agility = 0.3, exp = 129, level = 35, type = "normal", type2 = "no type"},

["Vulpix"] = {offense = 4.1, defense = 4, specialattack = 5, vitality = 7.6, agility = 0.1, exp = 63, level = 16, type = "fire", type2 = "no type"},

["Ninetales"] = {offense = 7.6, defense = 7.5, specialattack = 8.1, vitality = 14.6, agility = 0.2, exp = 178, level = 65, type = "fire", type2 = "no type"},

["Jigglypuff"] = {offense = 4.5, defense = 2, specialattack = 4.5, vitality = 23, agility = 0.2, exp = 76, level = 10, type = "normal", type2 = "no type"},

["Wigglytuff"] = {offense = 7, defense = 4.5, specialattack = 7.5, vitality = 28, agility = 0.3, exp = 109, level = 42, type = "normal", type2 = "no type"},

["Zubat"] = {offense = 4.5, defense = 3.5, specialattack = 3, vitality = 8, agility = 0.1, exp = 54, level = 5, type = "poison", type2 = "flying"},

["Golbat"] = {offense = 8, defense = 7, specialattack = 6.5, vitality = 15, agility = 0.2, exp = 171, level = 30, type = "poison", type2 = "flying"},

["Oddish"] = {offense = 5, defense = 5.5, specialattack = 7.5, vitality = 9, agility = 0.1, exp = 78, level = 5, type = "grass", type2 = "poison"},

["Gloom"] = {offense = 6.5, defense = 7, specialattack = 8.5, vitality = 12, agility = 0.2, exp = 132, level = 18, type = "grass", type2 = "poison"},

["Vileplume"] = {offense = 8, defense = 8.5, specialattack = 10, vitality = 15, agility = 0.3, exp = 184, level = 50, type = "grass", type2 = "poison"},

["Paras"] = {offense = 7, defense = 5.5, specialattack = 4.5, vitality = 7, agility = 0.1, exp = 70, level = 5, type = "bug", type2 = "grass"},

["Parasect"] = {offense = 9.5, defense = 8, specialattack = 6, vitality = 12, agility = 0.2, exp = 128, level = 40, type = "bug", type2 = "grass"},

 

["Venonat"] = {offense = 5.5, defense = 5, specialattack = 4, vitality = 12, agility = 0.1, exp = 75, level = 14, type = "bug", type2 = "poison"},

["Venomoth"] = {offense = 6.5, defense = 6, specialattack = 9, vitality = 13, agility = 0.2, exp = 138, level = 40, type = "bug", type2 = "poison"},

["Diglett"] = {offense = 5.5, defense = 2.5, specialattack = 3.5, vitality = 3, agility = 0.1, exp = 81, level = 5, type = "ground", type2 = "no type"},

["Dugtrio"] = {offense = 8, defense = 5, specialattack = 5, vitality = 8, agility = 0.2, exp = 153, level = 35, type = "ground", type2 = "no type"},

["Meowth"] = {offense = 4.5, defense = 3.5, specialattack = 4, vitality = 8, agility = 0.1, exp = 69, level = 12, type = "normal", type2 = "no type"},

["Persian"] = {offense = 7, defense = 6, specialattack = 6.5, vitality = 13, agility = 0.2, exp = 148, level = 25, type = "normal", type2 = "no type"},

["Psyduck"] = {offense = 5.2, defense = 4.8, specialattack = 6.5, vitality = 10, agility = 0.1, exp = 80, level = 12, type = "water", type2 = "no type"},

["Golduck"] = {offense = 8.2, defense = 7.8, specialattack = 9.5, vitality = 16, agility = 0.2, exp = 174, level = 55, type = "water", type2 = "no type"},

["Mankey"] = {offense = 8, defense = 3.5, specialattack = 3.5, vitality = 8, agility = 0.1, exp = 74, level = 10, type = "fighting", type2 = "no type"},

["Primeape"] = {offense = 10.5, defense = 6, specialattack = 6, vitality = 13, agility = 0.2, exp = 149, level = 45, type = "fighting", type2 = "no type"},

["Growlithe"] = {offense = 7, defense = 4.5, specialattack = 7, vitality = 11, agility = 0.1, exp = 91, level = 16, type = "fire", type2 = "no type"},

["Arcanine"] = {offense = 11, defense = 8, specialattack = 10, vitality = 18, agility = 0.2, exp = 213, level = 70, type = "fire", type2 = "no type"},

["Poliwag"] = {offense = 5, defense = 4, specialattack = 4, vitality = 8, agility = 0.1, exp = 77, level = 5, type = "water", type2 = "no type"},

["Poliwhirl"] = {offense = 6.5, defense = 6.5, specialattack = 5, vitality = 13, agility = 0.2, exp = 131, level = 20, type = "water", type2 = "no type"},

["Poliwrath"] = {offense = 8.5, defense = 9.5, specialattack = 7, vitality = 18, agility = 0.3, exp = 185, level = 60, type = "water", type2 = "fighting"},

["Abra"] = {offense = 2, defense = 1.5, specialattack = 10.5, vitality = 5, agility = 0.1, exp = 75, level = 12, type = "psychic", type2 = "no type"},

["Kadabra"] = {offense = 3.5, defense = 3, specialattack = 12, vitality = 8, agility = 0.2, exp = 145, level = 40, type = "psychic", type2 = "no type"},

["Alakazam"] = {offense = 5.5, defense = 4.5, specialattack = 13.5, vitality = 11, agility = 0.3, exp = 186, level = 70, type = "psychic", type2 = "no type"},

["Machop"] = {offense = 8, defense = 5, specialattack = 3.5, vitality = 14, agility = 0.1, exp = 75, level = 16, type = "fighting", type2 = "no type"},

["Machoke"] = {offense = 10, defense = 7, specialattack = 5, vitality = 16, agility = 0.2, exp = 146, level = 38, type = "fighting", type2 = "no type"},

["Machamp"] = {offense = 13, defense = 8, specialattack = 6.5, vitality = 18, agility = 0.3, exp = 193, level = 70, type = "fighting", type2 = "no type"},

["Bellsprout"] = {offense = 7.5, defense = 3.5, specialattack = 7, vitality = 10, agility = 0.1, exp = 84, level = 5, type = "grass", type2 = "poison"},

["Weepinbell"] = {offense = 9, defense = 5, specialattack = 8.5, vitality = 13, agility = 0.2, exp = 151, level = 18, type = "grass", type2 = "poison"},

["Victreebel"] = {offense = 10.5, defense = 6.5, specialattack = 10, vitality = 16, agility = 0.3, exp = 191, level = 50, type = "grass", type2 = "poison"},

["Tentacool"] = {offense = 4, defense = 3.5, specialattack = 5, vitality = 8, agility = 0.1, exp = 105, level = 12, type = "water", type2 = "poison"},

["Tentacruel"] = {offense = 7, defense = 6.5, specialattack = 8, vitality = 16, agility = 0.2, exp = 205, level = 70, type = "water", type2 = "poison"},

["Geodude"] = {offense = 8, defense = 10, specialattack = 3, vitality = 8, agility = 0.1, exp = 73, level = 15, type = "rock", type2 = "ground"},

["Graveler"] = {offense = 9.5, defense = 11.5, specialattack = 4.5, vitality = 11, agility = 0.2, exp = 134, level = 40, type = "rock", type2 = "ground"},

["Golem"] = {offense = 11, defense = 13, specialattack = 5.5, vitality = 16, agility = 0.3, exp = 177, level = 70, type = "rock", type2 = "ground"},

["Ponyta"] = {offense = 8.5, defense = 5.5, specialattack = 6.5, vitality = 10, agility = 0.1, exp = 152, level = 15, type = "fire", type2 = "no type"},

["Rapidash"] = {offense = 10, defense = 7, specialattack = 8, vitality = 13, agility = 0.2, exp = 192, level = 55, type = "fire", type2 = "no type"},

["Slowpoke"] = {offense = 6.5, defense = 6.5, specialattack = 4, vitality = 18, agility = 0.1, exp = 99, level = 12, type = "water", type2 = "psychic"},

["Slowbro"] = {offense = 7.5, defense = 11, specialattack = 10, vitality = 19, agility = 0.2, exp = 164, level = 45, type = "water", type2 = "psychic"},

["Magnemite"] = {offense = 3.5, defense = 7, specialattack = 9.5, vitality = 5, agility = 0.1, exp = 89, level = 15, type = "electric", type2 = "steel"},

["Magneton"] = {offense = 6, defense = 9.5, specialattack = 12, vitality = 10, agility = 0.2, exp = 161, level = 38, type = "electric", type2 = "steel"},

["Farfetch'd"] = {offense = 6.5, defense = 5.5, specialattack = 5.8, vitality = 10.4, agility = 0.1, exp = 94, level = 35, type = "normal", type2 = "flying"},

["Doduo"] = {offense = 8.5, defense = 4.5, specialattack = 3.5, vitality = 7, agility = 0.1, exp = 96, level = 12, type = "normal", type2 = "flying"},

["Dodrio"] = {offense = 11, defense = 7, specialattack = 6, vitality = 12, agility = 0.2, exp = 158, level = 42, type = "normal", type2 = "flying"},

["Seel"] = {offense = 4.5, defense = 5.5, specialattack = 4.5, vitality = 13, agility = 0.1, exp = 100, level = 47, type = "water", type2 = "no type"},

["Dewgong"] = {offense = 7, defense = 8, specialattack = 7, vitality = 18, agility = 0.2, exp = 176, level = 55, type = "water", type2 = "ice"},

["Grimer"] = {offense = 8, defense = 5, specialattack = 4, vitality = 16, agility = 0.1, exp = 90, level = 12, type = "poison", type2 = "no type"},

["Muk"] = {offense = 10.5, defense = 7.5, specialattack = 6.5, vitality = 21, agility = 0.2, exp = 157, level = 30, type = "poison", type2 = "no type"},

["Shellder"] = {offense = 6.5, defense = 10, specialattack = 4.5, vitality = 6, agility = 0.1, exp = 97, level = 5, type = "water", type2 = "no type"},

["Cloyster"] = {offense = 9.5, defense = 18, specialattack = 8.5, vitality = 10, agility = 0.2, exp = 203, level = 65, type = "water", type2 = "ice"},

["Gastly"] = {offense = 3.5, defense = 3, specialattack = 10, vitality = 6, agility = 0.1, exp = 95, level = 14, type = "ghost", type2 = "poison"},

["Haunter"] = {offense = 5, defense = 4.5, specialattack = 11.5, vitality = 9, agility = 0.2, exp = 126, level = 40, type = "ghost", type2 = "poison"},

["Gengar"] = {offense = 6.5, defense = 6, specialattack = 13, vitality = 12, agility = 0.3, exp = 190, level = 70, type = "ghost", type2 = "poison"},

["Onix"] = {offense = 4.5, defense = 16, specialattack = 3, vitality = 7, agility = 0.2, exp = 108, level = 50, type = "rock", type2 = "ground"},

["Drowzee"] = {offense = 4.8, defense = 4.5, specialattack = 4.3, vitality = 12, agility = 0.1, exp = 102, level = 18, type = "psychic", type2 = "no type"},

["Hypno"] = {offense = 7.3, defense = 7, specialattack = 7.3, vitality = 17, agility = 0.2, exp = 165, level = 50, type = "psychic", type2 = "no type"},

["Krabby"] = {offense = 10.5, defense = 9, specialattack = 2.5, vitality = 6, agility = 0.1, exp = 115, level = 5, type = "water", type2 = "no type"},

["Kingler"] = {offense = 13, defense = 11.5, specialattack = 5, vitality = 11, agility = 0.2, exp = 206, level = 35, type = "water", type2 = "no type"},

["Voltorb"] = {offense = 3, defense = 5, specialattack = 5.5, vitality = 8, agility = 0.1, exp = 103, level = 14, type = "electric", type2 = "no type"},

["Electrode"] = {offense = 5, defense = 7, specialattack = 8, vitality = 12, agility = 0.2, exp = 150, level = 38, type = "electric", type2 = "no type"},

["Exeggcute"] = {offense = 4, defense = 8, specialattack = 6, vitality = 12, agility = 0.1, exp = 98, level = 8, type = "grass", type2 = "psychic"},

["Exeggutor"] = {offense = 9.5, defense = 8.5, specialattack = 12.5, vitality = 19, agility = 0.2, exp = 212, level = 48, type = "grass", type2 = "psychic"},

["Cubone"] = {offense = 5, defense = 9.5, specialattack = 4, vitality = 10, agility = 0.1, exp = 87, level = 18, type = "ground", type2 = "no type"},

["Marowak"] = {offense = 8, defense = 11, specialattack = 5, vitality = 12, agility = 0.2, exp = 124, level = 45, type = "ground", type2 = "no type"},

["Hitmonlee"] = {offense = 12, defense = 5.3, specialattack = 3.5, vitality = 10, agility = 0.3, exp = 139, level = 60, type = "fighting", type2 = "no type"},

["Hitmonchan"] = {offense = 10.5, defense = 7.9, specialattack = 3.5, vitality = 10, agility = 0.3, exp = 140, level = 60, type = "fighting", type2 = "no type"},

["Lickitung"] = {offense = 5.5, defense = 7.5, specialattack = 6, vitality = 18, agility = 0.2, exp = 127, level = 45, type = "normal", type2 = "no type"},

["Koffing"] = {offense = 6.5, defense = 9.5, specialattack = 6, vitality = 8, agility = 0.1, exp = 114, level = 15, type = "poison", type2 = "no type"},

["Weezing"] = {offense = 9, defense = 12, specialattack = 8.5, vitality = 13, agility = 0.2, exp = 173, level = 30, type = "poison", type2 = "no type"},

["Rhyhorn"] = {offense = 8.5, defense = 9.5, specialattack = 3, vitality = 16, agility = 0.1, exp = 135, level = 35, type = "ground", type2 = "rock"},

["Rhydon"] = {offense = 13, defense = 12, specialattack = 4.5, vitality = 21, agility = 0.2, exp = 204, level = 65, type = "ground", type2 = "rock"},

["Chansey"] = {offense = 0.5, defense = 0.5, specialattack = 3.5, vitality = 50, agility = 0.2, exp = 255, level = 50, type = "normal", type2 = "no type"},

["Tangela"] = {offense = 5.5, defense = 11.5, specialattack = 10, vitality = 13, agility = 0.1, exp = 166, level = 35, type = "grass", type2 = "no type"},

["Kangaskhan"] = {offense = 9.5, defense = 8, specialattack = 4, vitality = 21, agility = 0.2, exp = 175, level = 65, type = "normal", type2 = "no type"},

["Horsea"] = {offense = 4, defense = 7, specialattack = 7, vitality = 6, agility = 0.1, exp = 83, level = 5, type = "water", type2 = "no type"},

["Seadra"] = {offense = 6.5, defense = 9.5, specialattack = 9.5, vitality = 11, agility = 0.2, exp = 155, level = 40, type = "water", type2 = "no type"},

["Goldeen"] = {offense = 6.7, defense = 6, specialattack = 3.5, vitality = 9, agility = 0.1, exp = 111, level = 10, type = "water", type2 = "no type"},

["Seaking"] = {offense = 9.2, defense = 6.5, specialattack = 6.5, vitality = 16, agility = 0.2, exp = 170, level = 25, type = "water", type2 = "no type"},

["Staryu"] = {offense = 4.5, defense = 5.5, specialattack = 7, vitality = 6, agility = 0.1, exp = 106, level = 15, type = "water", type2 = "no type"},

["Starmie"] = {offense = 7.5, defense = 8.5, specialattack = 10, vitality = 12, agility = 0.2, exp = 207, level = 38, type = "water", type2 = "psychic"},

["Mr. Mime"] = {offense = 4.5, defense = 6.5, specialattack = 10, vitality = 8, agility = 0.3, exp = 136, level = 45, type = "psychic", type2 = "no type"},

["Scyther"] = {offense = 11, defense = 8, specialattack = 5.5, vitality = 14, agility = 0.3, exp = 187, level = 60, type = "bug", type2 = "flying"},

["Jynx"] = {offense = 5, defense = 3.5, specialattack = 11.5, vitality = 13, agility = 0.3, exp = 137, level = 55, type = "ice", type2 = "psychic"},

["Electabuzz"] = {offense = 8.3, defense = 5.7, specialattack = 9.5, vitality = 13, agility = 0.3, exp = 156, level = 60, type = "electric", type2 = "no type"},

["Magmar"] = {offense = 9.5, defense = 5.7, specialattack = 10, vitality = 13, agility = 0.3, exp = 167, level = 60, type = "fire", type2 = "no type"},

["Pinsir"] = {offense = 12.5, defense = 10, specialattack = 5.5, vitality = 13, agility = 0.3, exp = 200, level = 42, type = "bug", type2 = "no type"},

["Tauros"] = {offense = 10, defense = 9.5, specialattack = 4, vitality = 15, agility = 0.3, exp = 211, level = 40, type = "normal", type2 = "no type"},

["Magikarp"] = {offense = 1, defense = 5.5, specialattack = 1.5, vitality = 4, agility = 0.1, exp = 20, level = 1, type = "water", type2 = "no type"},

["Gyarados"] = {offense = 12.5, defense = 7.9, specialattack = 6, vitality = 19, agility = 0.3, exp = 214, level = 75, type = "water", type2 = "flying"},

["Lapras"] = {offense = 8.5, defense = 8, specialattack = 8.5, vitality = 26, agility = 0.3, exp = 219, level = 65, type = "water", type2 = "ice"},

["Ditto"] = {offense = 4.8, defense = 4.8, specialattack = 4.8, vitality = 9.6, agility = 0.3, exp = 61, level = 40, type = "normal", type2 = "no type"},

["Eevee"] = {offense = 5.5, defense = 5, specialattack = 4.5, vitality = 11, agility = 0.1, exp = 92, level = 20, type = "normal", type2 = "no type"},

["Vaporeon"] = {offense = 6.5, defense = 6, specialattack = 11, vitality = 26, agility = 0.3, exp = 196, level = 55, type = "water", type2 = "no type"},

["Jolteon"] = {offense = 6.5, defense = 6, specialattack = 11, vitality = 13, agility = 0.3, exp = 197, level = 55, type = "electric", type2 = "no type"},

["Flareon"] = {offense = 13, defense = 6, specialattack = 9.5, vitality = 13, agility = 0.3, exp = 198, level = 55, type = "fire", type2 = "no type"},

["Porygon"] = {offense = 6, defense = 7, specialattack = 8.5, vitality = 13, agility = 0.1, exp = 130, level = 45, type = "normal", type2 = "no type"},

["Omanyte"] = {offense = 4, defense = 10, specialattack = 9, vitality = 7, agility = 0.1, exp = 99, level = 20, type = "rock", type2 = "water"},

["Omastar"] = {offense = 6, defense = 12.5, specialattack = 11.5, vitality = 14, agility = 0.2, exp = 199, level = 70, type = "rock", type2 = "water"},

["Kabuto"] = {offense = 8, defense = 9, specialattack = 5.5, vitality = 6, agility = 0.1, exp = 99, level = 20, type = "rock", type2 = "water"},

["Kabutops"] = {offense = 11.5, defense = 10.5, specialattack = 6.5, vitality = 12, agility = 0.2, exp = 199, level = 70, type = "rock", type2 = "water"},

["Aerodactyl"] = {offense = 10.5, defense = 6.5, specialattack = 6, vitality = 16, agility = 0.3, exp = 202, level = 85, type = "rock", type2 = "Flying"},

["Snorlax"] = {offense = 11, defense = 6.5, specialattack = 6.5, vitality = 32, agility = 0.3, exp = 154, level = 85, type = "normal", type2 = "no type"},

["Articuno"] = {offense = 8.5, defense = 10, specialattack = 9.5, vitality = 18, agility = 0.3, exp = 215, level = 100, type = "ice", type2 = "flying"},

["Zapdos"] = {offense = 9, defense = 8.5, specialattack = 12.5, vitality = 18, agility = 0.3, exp = 216, level = 100, type = "electric", type2 = "flying"},

["Moltres"] = {offense = 10, defense = 9, specialattack = 12.5, vitality = 18, agility = 0.3, exp = 217, level = 100, type = "fire", type2 = "flying"},

["Dratini"] = {offense = 6.5, defense = 4.5, specialattack = 5, vitality = 8.2, agility = 0.1, exp = 67, level = 15, type = "dragon", type2 = "no type"},

["Dragonair"] = {offense = 8.4, defense = 6.5, specialattack = 7, vitality = 12.2, agility = 0.2, exp = 144, level = 45, type = "dragon", type2 = "no type"},

["Dragonite"] = {offense = 13.4, defense = 9.5, specialattack = 10, vitality = 18.2, agility = 0.3, exp = 218, level = 85, type = "dragon", type2 = "flying"},

["Mewtwo"] = {offense = 11, defense = 9, specialattack = 15.4, vitality = 21.2, agility = 0.3, exp = 220, level = 100, type = "psychic", type2 = "no type"},

["Mew"] = {offense = 10, defense = 10, specialattack = 10, vitality = 20, agility = 0.3, exp = 64, level = 100, type = "psychic", type2 = "no type"},

 

-------------------------------------------------------------Statos Pokemon Shiny Kanto-------------------------------------------------------------

["Shiny Bulbasaur"] = {offense = 5.39, defense = 5.39, specialattack = 7.15, vitality = 9.9, agility = 0.11, exp = 70.4, level = 18, type = "grass", type2 = "poison"},

["Shiny Ivysaur"] = {offense = 6.82, defense = 6.93, specialattack = 8.8, vitality = 13.2, agility = 0.22, exp = 155.1, level = 38, type = "grass", type2 = "poison"},

["Shiny Venusaur"] = {offense = 9.02, defense = 9.13, specialattack = 11, vitality = 17.6, agility = 0.33, exp = 228.8, level = 75, type = "grass", type2 = "poison"},

["Shiny Charmander"] = {offense = 5.72, defense = 4.73, specialattack = 6.6, vitality = 8.58, agility = 0.11, exp = 71.5, level = 18, type = "fire", type2 = "no type"},

["Shiny Charmeleon"] = {offense = 7.15, defense = 6.38, specialattack = 9.35, vitality = 12.76, agility = 0.22, exp = 156.2, level = 38, type = "fire", type2 = "no type"},

["Shiny Charizard"] = {offense = 9.35, defense = 8.58, specialattack = 12.1, vitality = 17.16, agility = 0.33, exp = 229.9, level = 75, type = "fire", type2 = "flying"},

["Shiny Squirtle"] = {offense = 5.28, defense = 7.15, specialattack = 5.5, vitality = 9.68, agility = 0.11, exp = 72.6, level = 18, type = "water", type2 = "no type"},

["Shiny Wartortle"] = {offense = 6.93, defense = 8.8, specialattack = 7.15, vitality = 12.98, agility = 0.22, exp = 157.3, level = 38, type = "water", type2 = "no type"},

["Shiny Blastoise"] = {offense = 9.13, defense = 11, specialattack = 9.35, vitality = 17,38, agility = 0.33, exp = 231, level = 75, type = "water", type2 = "no type"},

["Shiny Caterpie"] = {offense = 3.3, defense = 3.85, specialattack = 2.2, vitality = 9.9, agility = 0.11, exp = 58.3, level = 3, type = "bug", type2 = "no type"},

["Shiny Metapod"] = {offense = 2.2, defense = 6.05, specialattack = 2.75, vitality = 11, agility = 0.22, exp = 79.2, level = 10, type = "bug", type2 = "no type"},

["Shiny Butterfree"] = {offense = 4.95, defense = 5.5, specialattack = 8.8, vitality = 13.2, agility = 0.33, exp = 176, level = 30, type = "bug", type2 = "flying"},

["Shiny Weedle"] = {offense = 3.85, defense = 3.3, specialattack = 2.2, vitality = 8.8, agility = 0.11, exp = 57.2, level = 3, type = "bug", type2 = "poison"},

["Shiny Kakuna"] = {offense = 2.75, defense = 5.5, specialattack = 2.75, vitality = 9.9, agility = 0.22, exp = 132, level = 10, type = "bug", type2 = "poison"},

["Shiny Beedrill"] = {offense = 8.8, defense = 4.4, specialattack = 4.95, vitality = 14.3, agility = 0.33, exp = 154.9, level = 30, type = "bug", type2 = "poison"},

["Shiny Pidgey"] = {offense = 4.95, defense = 4.4, specialattack = 3.85, vitality = 8.8, agility = 0.11, exp = 60.5, level = 5, type = "normal", type2 = "flying"},

["Shiny Pidgeotto"] = {offense = 6.6, defense = 6.05, specialattack = 5.5, vitality = 13.86, agility = 0.22, exp = 124.3, level = 20, type = "normal", type2 = "flying"},

["Shiny Pidgeot"] = {offense = 8.8, defense = 8.25, specialattack = 7.7, vitality = 18.26, agility = 0.33, exp = 189.2, level = 60, type = "normal", type2 = "flying"},

["Shiny Rattata"] = {offense = 6.16, defense = 3.85, specialattack = 2.75, vitality = 6.6, agility = 0.11, exp = 62.7, level = 3, type = "normal", type2 = "no type"},

["Shiny Raticate"] = {offense = 8.91, defense = 6.6, specialattack = 5.5, vitality = 12.1, agility = 0.22, exp = 127.6, level = 20, type = "normal", type2 = "no type"},

["Shiny Spearow"] = {offense = 6.6, defense = 3.3, specialattack = 3.41, vitality = 8.8, agility = 0.11, exp = 63.8, level = 5, type = "normal", type2 = "flying"},

["Shiny Fearow"] = {offense = 9.9, defense = 7.15, specialattack = 6.71, vitality = 14.3, agility = 0.22, exp = 178.2, level = 50, type = "normal", type2 = "flying"},

["Shiny Ekans"] = {offense = 6.6, defense = 4.84, specialattack = 4.4, vitality = 7.7, agility = 0.11, exp = 68.2, level = 12, type = "poison", type2 = "no type"},

["Shiny Arbok"] = {offense = 9.35, defense = 7.59, specialattack = 7.15, vitality = 13.2, agility = 0.22, exp = 161.7, level = 30, type = "poison", type2 = "no type"},

["Shiny Pikachu"] = {offense = 6.05, defense = 3.3, specialattack = 5.5, vitality = 7.7, agility = 0.22, exp = 90.2, level = 20, type = "electric", type2 = "no type"},

["Shiny Raichu"] = {offense = 9.9, defense = 6.05, specialattack = 9.9, vitality = 13.2, agility = 0.33, exp = 134.2, level = 50, type = "electric", type2 = "no type"},

["Shiny Sandshrew"] = {offense = 8.25, defense = 9.35, specialattack = 2.2, vitality = 11, agility = 0.11, exp = 102.3, level = 18, type = "ground", type2 = "no type"},

["Shiny Sandslash"] = {offense = 11, defense = 12.1, specialattack = 4.95, vitality = 16.5, agility = 0.22, exp = 179.3, level = 55, type = "ground", type2 = "no type"},

["Shiny Nidoran Female"] = {offense = 5.17, defense = 5.72, specialattack = 4.4, vitality = 12.1, agility = 0.11, exp = 64.9, level = 10, type = "poison", type2 = "no type"},

["Shiny Nidorina"] = {offense = 6.82, defense = 7.37, specialattack = 6.05, vitality = 15.4, agility = 0.22, exp = 64.9, level = 25, type = "poison", type2 = "no type"},

["Shiny Nidoqueen"] = {offense = 9.02, defense = 9.57, specialattack = 8.25, vitality = 19.8, agility = 0.33, exp = 213.4, level = 65, type = "poison", type2 = "ground"},

["Shiny Nidoran Male"] = {offense = 6.27, defense = 4.4, specialattack = 4.4, vitality = 10.12, agility = 0.11, exp = 66, level = 10, type = "poison", type2 = "no type"},

["Shiny Nidorino"] = {offense = 7.92, defense = 6.27, specialattack = 6.05, vitality = 13.42, agility = 0.22, exp = 129.8, level = 25, type = "poison", type2 = "no type"},

["Shiny Nidoking"] = {offense = 10.12, defense = 8.47, specialattack = 9.35, vitality = 17.82, agility = 0.33, exp = 214.5, level = 65, type = "poison", type2 = "ground"},

["Shiny Clefairy"] = {offense = 4.95, defense = 5.28, specialattack = 6.6, vitality = 15.4, agility = 0.22, exp = 74.8, level = 10, type = "normal", type2 = "no type"},

["Shiny Clefable"] = {offense = 7.7, defense = 8.03, specialattack = 9.35, vitality = 20.9, agility = 0.33, exp = 141.9, level = 35, type = "normal", type2 = "no type"},

["Shiny Vulpix"] = {offense = 4.51, defense = 4.4, specialattack = 5.5, vitality = 8.36, agility = 0.11, exp = 69.3, level = 16, type = "fire", type2 = "no type"},

["Shiny Ninetales"] = {offense = 8.36, defense = 8.25, specialattack = 8.91, vitality = 16.06, agility = 0.22, exp = 195.8, level = 65, type = "fire", type2 = "no type"},

["Shiny Jigglypuff"] = {offense = 4.95, defense = 2.2, specialattack = 4.95, vitality = 25.3, agility = 0.22, exp = 83.6, level = 10, type = "normal", type2 = "no type"},

["Shiny Wigglytuff"] = {offense = 7.7, defense = 4.95, specialattack = 8.25, vitality = 30.8, agility = 0.33, exp = 119.9, level = 42, type = "normal", type2 = "no type"},

["Shiny Zubat"] = {offense = 4.95, defense = 3.85, specialattack = 3.3, vitality = 8.8, agility = 0.11, exp = 59.4, level = 5, type = "poison", type2 = "flying"},

["Shiny Golbat"] = {offense = 8.8, defense = 7.7, specialattack = 7.15, vitality = 16.5, agility = 0.22, exp = 188.1, level = 30, type = "poison", type2 = "flying"},

["Shiny Oddish"] = {offense = 5.5, defense = 6.05, specialattack = 8.25, vitality = 9.9, agility = 0.11, exp = 85.8, level = 5, type = "grass", type2 = "poison"},

["Shiny Gloom"] = {offense = 7.15, defense = 7.7, specialattack = 9.35, vitality = 13.2, agility = 0.22, exp = 145.2, level = 18, type = "grass", type2 = "poison"},

["Shiny Vileplume"] = {offense = 8.8, defense = 9.35, specialattack = 11, vitality = 16.5, agility = 0.33, exp = 202.4, level = 50, type = "grass", type2 = "poison"},

["Shiny Paras"] = {offense = 7.7, defense = 6.05, specialattack = 4.95, vitality = 7.7, agility = 0.11, exp = 77, level = 5, type = "bug", type2 = "grass"},

["Shiny Parasect"] = {offense = 10.45, defense = 8.8, specialattack = 6.6, vitality = 13.2, agility = 0.22, exp = 140.8, level = 40, type = "bug", type2 = "grass"},

 

["Shiny Venonat"] = {offense = 6.05, defense = 5.5, specialattack = 4.4, vitality = 13.2, agility = 0.11, exp = 82.5, level = 14, type = "bug", type2 = "poison"},

["Shiny Venomoth"] = {offense = 7.15, defense = 6.6, specialattack = 9.9, vitality = 14.3, agility = 0.22, exp = 151.8, level = 40, type = "bug", type2 = "poison"},

["Shiny Diglett"] = {offense = 6.05, defense = 2.75, specialattack = 3.85, vitality = 4, agility = 0.11, exp = 89.1, level = 5, type = "ground", type2 = "no type"},

["Shiny Dugtrio"] = {offense = 8.8, defense = 5.5, specialattack = 5.5, vitality = 8, agility = 0.22, exp = 168.3, level = 35, type = "ground", type2 = "no type"},

["Shiny Meowth"] = {offense = 4.95, defense = 3.85, specialattack = 4.4, vitality = 8.8, agility = 0.11, exp = 75.9, level = 12, type = "normal", type2 = "no type"},

["Shiny Persian"] = {offense = 7.7, defense = 6.6, specialattack = 7.15, vitality = 14.3, agility = 0.22, exp = 162.8, level = 25, type = "normal", type2 = "no type"},

["Shiny Psyduck"] = {offense = 5.72, defense = 5.28, specialattack = 7.15, vitality = 11, agility = 0.11, exp = 88, level = 12, type = "water", type2 = "no type"},

["Shiny Golduck"] = {offense = 9.02, defense = 8.58, specialattack = 10.45, vitality = 17.6, agility = 0.22, exp = 191.4, level = 55, type = "water", type2 = "no type"},

["Shiny Mankey"] = {offense = 8.8, defense = 3.85, specialattack = 3.85, vitality = 8.8, agility = 0.11, exp = 81.4, level = 10, type = "fighting", type2 = "no type"},

["Shiny Primeape"] = {offense = 11.55, defense = 6.6, specialattack = 6.6, vitality = 14.3, agility = 0.22, exp = 163.9, level = 45, type = "fighting", type2 = "no type"},

["Shiny Growlithe"] = {offense = 7.7, defense = 4.95, specialattack = 7.7, vitality = 12.1, agility = 0.11, exp = 100.1, level = 16, type = "fire", type2 = "no type"},

["Shiny Arcanine"] = {offense = 12.1, defense = 8.8, specialattack = 11, vitality = 19.8, agility = 0.22, exp = 234.3, level = 70, type = "fire", type2 = "no type"},

["Shiny Poliwag"] = {offense = 5.5, defense = 4.4, specialattack = 4.4, vitality = 8.8, agility = 0.11, exp = 84.7, level = 5, type = "water", type2 = "no type"},

["Shiny Poliwhirl"] = {offense = 7.15, defense = 7.15, specialattack = 5.5, vitality = 14.3, agility = 0.22, exp = 144.1, level = 20, type = "water", type2 = "no type"},

["Shiny Poliwrath"] = {offense = 9.35, defense = 10.45, specialattack = 7.7, vitality = 19.8, agility = 0.33, exp = 203.5, level = 60, type = "water", type2 = "fighting"},

["Shiny Abra"] = {offense = 2.2, defense = 1.65, specialattack = 11.55, vitality = 5.5, agility = 0.11, exp = 82.5, level = 12, type = "psychic", type2 = "no type"},

["Shiny Kadabra"] = {offense = 3.85, defense = 3.3, specialattack = 13.2, vitality = 8.8, agility = 0.22, exp = 159.5, level = 40, type = "psychic", type2 = "no type"},

["Shiny Alakazam"] = {offense = 6.05, defense = 4.95, specialattack = 14.85, vitality = 12.1, agility = 0.33, exp = 204.6, level = 70, type = "psychic", type2 = "no type"},

["Shiny Machop"] = {offense = 8.8, defense = 5.5, specialattack = 3.85, vitality = 15.4, agility = 0.11, exp = 82.5, level = 16, type = "fighting", type2 = "no type"},

["Shiny Machoke"] = {offense = 11, defense = 7.7, specialattack = 5.5, vitality = 17.6, agility = 0.22, exp = 160.6, level = 38, type = "fighting", type2 = "no type"},

["Shiny Machamp"] = {offense = 14.3, defense = 8.8, specialattack = 7.15, vitality = 19.8, agility = 0.33, exp = 212.3, level = 70, type = "fighting", type2 = "no type"},

["Shiny Bellsprout"] = {offense = 8.25, defense = 3.85, specialattack = 7.7, vitality = 11, agility = 0.11, exp = 92.4, level = 5, type = "grass", type2 = "poison"},

["Shiny Weepinbell"] = {offense = 9.9, defense = 5.5, specialattack = 9.35, vitality = 14.3, agility = 0.22, exp = 166.1, level = 18, type = "grass", type2 = "poison"},

["Shiny Victreebel"] = {offense = 11.55, defense = 7.15, specialattack = 11, vitality = 17.6, agility = 0.33, exp = 210.1, level = 50, type = "grass", type2 = "poison"},

["Shiny Tentacool"] = {offense = 4.4, defense = 3.85, specialattack = 5.5, vitality = 8.8, agility = 0.11, exp = 115.5, level = 12, type = "water", type2 = "poison"},

["Shiny Tentacruel"] = {offense = 7.7, defense = 7.15, specialattack = 8.8, vitality = 17.6, agility = 0.22, exp = 225.5, level = 70, type = "water", type2 = "poison"},

["Shiny Geodude"] = {offense = 8.8, defense = 11, specialattack = 3.3, vitality = 8.8, agility = 0.11, exp = 80.3, level = 15, type = "rock", type2 = "ground"},

["Shiny Graveler"] = {offense = 10.45, defense = 12.65, specialattack = 4.95, vitality = 12.1, agility = 0.22, exp = 147.4, level = 40, type = "rock", type2 = "ground"},

["Shiny Golem"] = {offense = 12.1, defense = 14.3, specialattack = 6.05, vitality = 17.6, agility = 0.33, exp = 194.7, level = 70, type = "rock", type2 = "ground"},

["Shiny Ponyta"] = {offense = 9.35, defense = 6.05, specialattack = 7.15, vitality = 11, agility = 0.11, exp = 167.2, level = 15, type = "fire", type2 = "no type"},

["Shiny Rapidash"] = {offense = 11, defense = 7.7, specialattack = 8.8, vitality = 14.3, agility = 0.22, exp = 211.2, level = 55, type = "fire", type2 = "no type"},

["Shiny Slowpoke"] = {offense = 7.15, defense = 7.15, specialattack = 4.4, vitality = 19.8, agility = 0.11, exp = 108.9, level = 12, type = "water", type2 = "psychic"},

["Shiny Slowbro"] = {offense = 8.25, defense = 12.1, specialattack = 11, vitality = 20.9, agility = 0.22, exp = 180.4, level = 45, type = "water", type2 = "psychic"},

["Shiny Magnemite"] = {offense = 3.85, defense = 7.7, specialattack = 10.45, vitality = 5.5, agility = 0.11, exp = 97.9, level = 15, type = "electric", type2 = "steel"},

["Shiny Magneton"] = {offense = 6.6, defense = 10.45, specialattack = 13.2, vitality = 11, agility = 0.22, exp = 177.1, level = 38, type = "electric", type2 = "steel"},

["Shiny Farfetch'd"] = {offense = 7.15, defense = 6.05, specialattack = 6.38, vitality = 11.44, agility = 0.11, exp = 103.4, level = 35, type = "normal", type2 = "flying"},

["Shiny Doduo"] = {offense = 9.35, defense = 4.95, specialattack = 3.85, vitality = 7.7, agility = 0.11, exp = 105.6, level = 12, type = "normal", type2 = "flying"},

["Shiny Dodrio"] = {offense = 12.1, defense = 7.7, specialattack = 6.6, vitality = 13.2, agility = 0.22, exp = 173.8, level = 42, type = "normal", type2 = "flying"},

["Shiny Seel"] = {offense = 4.95, defense = 6.05, specialattack = 4.95, vitality = 14.3, agility = 0.11, exp = 110, level = 47, type = "water", type2 = "no type"},

["Shiny Dewgong"] = {offense = 7.7, defense = 8.8, specialattack = 7.7, vitality = 19.8, agility = 0.22, exp = 193.6, level = 55, type = "water", type2 = "ice"},

["Shiny Grimer"] = {offense = 8.8, defense = 5.5, specialattack = 4.4, vitality = 17.6, agility = 0.11, exp = 99, level = 12, type = "poison", type2 = "no type"},

["Shiny Muk"] = {offense = 11.55, defense = 8.25, specialattack = 7.15, vitality = 23.1, agility = 0.22, exp = 172.7, level = 30, type = "poison", type2 = "no type"},

["Shiny Shellder"] = {offense = 7.15, defense = 11, specialattack = 4.95, vitality = 6.6, agility = 0.11, exp = 106.7, level = 5, type = "water", type2 = "no type"},

["Shiny Cloyster"] = {offense = 10.45, defense = 19.8, specialattack = 9.35, vitality = 11, agility = 0.22, exp = 223.3, level = 65, type = "water", type2 = "ice"},

["Shiny Gastly"] = {offense = 3.85, defense = 3.3, specialattack = 11, vitality = 6.6, agility = 0.11, exp = 104.5, level = 14, type = "ghost", type2 = "poison"},

["Shiny Haunter"] = {offense = 5.5, defense = 4.95, specialattack = 12.65, vitality = 9.9, agility = 0.22, exp = 138.6, level = 40, type = "ghost", type2 = "poison"},

["Shiny Gengar"] = {offense = 7.15, defense = 6.6, specialattack = 14.3, vitality = 13.2, agility = 0.33, exp = 209, level = 70, type = "ghost", type2 = "poison"},

["Shiny Onix"] = {offense = 4.95, defense = 17.6, specialattack = 3.3, vitality = 7.7, agility = 0.22, exp = 118.8, level = 50, type = "rock", type2 = "ground"},

["Shiny Drowzee"] = {offense = 5.28, defense = 4.95, specialattack = 4.73, vitality = 13.2, agility = 0.11, exp = 112.2, level = 18, type = "psychic", type2 = "no type"},

["Shiny Hypno"] = {offense = 8.03, defense = 7.7, specialattack = 8.03, vitality = 18.7, agility = 0.22, exp = 181.5, level = 50, type = "psychic", type2 = "no type"},

["Shiny Krabby"] = {offense = 11.55, defense = 9.9, specialattack = 2.75, vitality = 6.6, agility = 0.11, exp = 126.5, level = 5, type = "water", type2 = "no type"},

["Shiny Kingler"] = {offense = 14.3, defense = 12.65, specialattack = 5.5, vitality = 12.1, agility = 0.22, exp = 226.6, level = 35, type = "water", type2 = "no type"},

["Shiny Voltorb"] = {offense = 3.3, defense = 5.5, specialattack = 6.05, vitality = 8.8, agility = 0.11, exp = 113.3, level = 14, type = "electric", type2 = "no type"},

["Shiny Electrode"] = {offense = 5.5, defense = 7.7, specialattack = 8.8, vitality = 13.2, agility = 0.22, exp = 165, level = 38, type = "electric", type2 = "no type"},

["Shiny Exeggcute"] = {offense = 4.4, defense = 8.8, specialattack = 6.6, vitality = 13.2, agility = 0.11, exp = 107.8, level = 8, type = "grass", type2 = "psychic"},

["Shiny Exeggutor"] = {offense = 10.45, defense = 9.35, specialattack = 13.75, vitality = 20.9, agility = 0.22, exp = 233.2, level = 48, type = "grass", type2 = "psychic"},

["Shiny Cubone"] = {offense = 5.5, defense = 10.45, specialattack = 4.4, vitality = 11, agility = 0.11, exp = 95.7, level = 18, type = "ground", type2 = "no type"},

["Shiny Marowak"] = {offense = 8.8, defense = 12.1, specialattack = 5.5, vitality = 13.2, agility = 0.22, exp = 136.4, level = 45, type = "ground", type2 = "no type"},

["Shiny Hitmonlee"] = {offense = 13.2, defense = 5.83, specialattack = 3.85, vitality = 11, agility = 0.33, exp = 152.9, level = 60, type = "fighting", type2 = "no type"},

["Shiny Hitmonchan"] = {offense = 11.55, defense = 8.69, specialattack = 3.85, vitality = 11, agility = 0.33, exp = 154, level = 60, type = "fighting", type2 = "no type"},

["Shiny Lickitung"] = {offense = 6.05, defense = 8.25, specialattack = 6.6, vitality = 19.8, agility = 0.22, exp = 139.7, level = 45, type = "normal", type2 = "no type"},

["Shiny Koffing"] = {offense = 7.15, defense = 10.45, specialattack = 6.6, vitality = 8.8, agility = 0.11, exp = 125.4, level = 15, type = "poison", type2 = "no type"},

["Shiny Weezing"] = {offense = 9.9, defense = 13.2, specialattack = 9.35, vitality = 14.3, agility = 0.22, exp = 190.3, level = 30, type = "poison", type2 = "no type"},

["Shiny Rhyhorn"] = {offense = 9.35, defense = 10.45, specialattack = 3.3, vitality = 17.6, agility = 0.11, exp = 148.5, level = 35, type = "ground", type2 = "rock"},

["Shiny Rhydon"] = {offense = 14.3, defense = 13.2, specialattack = 4.95, vitality = 23.1, agility = 0.22, exp = 224.4, level = 65, type = "ground", type2 = "rock"},

["Shiny Chansey"] = {offense = 0.55, defense = 0.55, specialattack = 3.85, vitality = 55, agility = 0.22, exp = 280.5, level = 50, type = "normal", type2 = "no type"},

["Shiny Tangela"] = {offense = 6.05, defense = 12.65, specialattack = 11, vitality = 14.3, agility = 0.11, exp = 182.6, level = 35, type = "grass", type2 = "no type"},

["Shiny Kangaskhan"] = {offense = 10.45, defense = 8.8, specialattack = 4.4, vitality = 23.1, agility = 0.22, exp = 192.5, level = 65, type = "normal", type2 = "no type"},

["Shiny Horsea"] = {offense = 4.4, defense = 7.7, specialattack = 7.7, vitality = 6.6, agility = 0.11, exp = 91.3, level = 5, type = "water", type2 = "no type"},

["Shiny Seadra"] = {offense = 7.15, defense = 10.45, specialattack = 10.45, vitality = 12.1, agility = 0.22, exp = 170.5, level = 40, type = "water", type2 = "no type"},

["Shiny Goldeen"] = {offense = 7.37, defense = 6.6, specialattack = 3.85, vitality = 9.9, agility = 0.11, exp = 122.1, level = 10, type = "water", type2 = "no type"},

["Shiny Seaking"] = {offense = 10.12, defense = 7.15, specialattack = 7.15, vitality = 17.6, agility = 0.22, exp = 187, level = 25, type = "water", type2 = "no type"},

["Shiny Staryu"] = {offense = 4.95, defense = 6.05, specialattack = 7.7, vitality = 6.6, agility = 0.11, exp = 116.6, level = 15, type = "water", type2 = "no type"},

["Shiny Starmie"] = {offense = 8.25, defense = 9.35, specialattack = 11, vitality = 13.2, agility = 0.22, exp = 227.7, level = 38, type = "water", type2 = "psychic"},

["Shiny Mr. Mime"] = {offense = 4.95, defense = 7.15, specialattack = 11, vitality = 8.8, agility = 0.33, exp = 149.6, level = 45, type = "psychic", type2 = "no type"},

["Shiny Scyther"] = {offense = 12.1, defense = 8.8, specialattack = 6.05, vitality = 15.4, agility = 0.33, exp = 205.7, level = 60, type = "bug", type2 = "flying"},

["Shiny Jynx"] = {offense = 5.5, defense = 3.85, specialattack = 12.65, vitality = 14.3, agility = 0.33, exp = 150.7, level = 55, type = "ice", type2 = "psychic"},

["Shiny Electabuzz"] = {offense = 9.13, defense = 6.27, specialattack = 10.45, vitality = 14.3, agility = 0.33, exp = 171.6, level = 60, type = "electric", type2 = "no type"},

["Shiny Magmar"] = {offense = 10.45, defense = 6.27, specialattack = 11, vitality = 14.3, agility = 0.33, exp = 183.7, level = 60, type = "fire", type2 = "no type"},

["Shiny Pinsir"] = {offense = 13.75, defense = 11, specialattack = 6.05, vitality = 14.3, agility = 0.33, exp = 220, level = 42, type = "bug", type2 = "no type"},

["Shiny Tauros"] = {offense = 11, defense = 10.45, specialattack = 4.4, vitality = 16.5, agility = 0.33, exp = 232.1, level = 40, type = "normal", type2 = "no type"},

["Shiny Magikarp"] = {offense = 1.1, defense = 6.05, specialattack = 1.65, vitality = 4.4, agility = 0.11, exp = 22, level = 1, type = "water", type2 = "no type"},

["Shiny Gyarados"] = {offense = 13.75, defense = 8.69, specialattack = 6.6, vitality = 20.9, agility = 0.33, exp = 235.4, level = 75, type = "water", type2 = "flying"},

["Shiny Lapras"] = {offense = 9.35, defense = 8.8, specialattack = 9.35, vitality = 28.6, agility = 0.33, exp = 240.9, level = 65, type = "water", type2 = "ice"},

["Shiny Ditto"] = {offense = 5.28, defense = 5.28, specialattack = 5.28, vitality = 10.56, agility = 0.33, exp = 67.1, level = 40, type = "normal", type2 = "no type"},

["Shiny Eevee"] = {offense = 6.05, defense = 5.5, specialattack = 4.95, vitality = 12.3, agility = 0.11, exp = 101.2, level = 20, type = "normal", type2 = "no type"},

["Shiny Vaporeon"] = {offense = 7.15, defense = 6.6, specialattack = 12.1, vitality = 28.6, agility = 0.33, exp = 215.6, level = 55, type = "water", type2 = "no type"},

["Shiny Jolteon"] = {offense = 7.15, defense = 6.6, specialattack = 12.1, vitality = 14.3, agility = 0.33, exp = 216.7, level = 55, type = "electric", type2 = "no type"},

["Shiny Flareon"] = {offense = 14.3, defense = 6.6, specialattack = 10.45, vitality = 14.3, agility = 0.33, exp = 217.8, level = 55, type = "fire", type2 = "no type"},

["Shiny Porygon"] = {offense = 6.6, defense = 7.7, specialattack = 9.35, vitality = 14.3, agility = 0.11, exp = 143, level = 45, type = "normal", type2 = "no type"},

["Shiny Omanyte"] = {offense = 4.4, defense = 11, specialattack = 9.9, vitality = 7.7, agility = 0.11, exp = 108.9, level = 20, type = "rock", type2 = "water"},

["Shiny Omastar"] = {offense = 6.6, defense = 13.75, specialattack = 12.65, vitality = 15.4, agility = 0.22, exp = 218.9, level = 70, type = "rock", type2 = "water"},

["Shiny Kabuto"] = {offense = 8.8, defense = 9.9, specialattack = 6.05, vitality = 6.6, agility = 0.11, exp = 108.9, level = 20, type = "rock", type2 = "water"},

["Shiny Kabutops"] = {offense = 12.65, defense = 11.55, specialattack = 7.15, vitality = 13.2, agility = 0.22, exp = 218.9, level = 70, type = "rock", type2 = "water"},

["Shiny Aerodactyl"] = {offense = 11.55, defense = 7.15, specialattack = 6.6, vitality = 17.6, agility = 0.33, exp = 222.2, level = 85, type = "rock", type2 = "Flying"},

["Shiny Snorlax"] = {offense = 12.1, defense = 7.15, specialattack = 7.15, vitality = 35.2, agility = 0.33, exp = 169.4, level = 85, type = "normal", type2 = "no type"},

["Shiny Articuno"] = {offense = 9.35, defense = 11, specialattack = 10.45, vitality = 19.8, agility = 0.33, exp = 236.5, level = 100, type = "ice", type2 = "flying"},

["Shiny Zapdos"] = {offense = 9.9, defense = 9.35, specialattack = 13.75, vitality = 19.8, agility = 0.33, exp = 237.6, level = 100, type = "electric", type2 = "flying"},

["Shiny Moltres"] = {offense = 11, defense = 9.9, specialattack = 13.75, vitality = 19.8, agility = 0.33, exp = 238.7, level = 100, type = "fire", type2 = "flying"},

["Shiny Dratini"] = {offense = 7.15, defense = 4.95, specialattack = 5.5, vitality = 9.02, agility = 0.11, exp = 73.7, level = 15, type = "dragon", type2 = "no type"},

["Shiny Dragonair"] = {offense = 9.24, defense = 7.15, specialattack = 7.7, vitality = 13.42, agility = 0.22, exp = 158.4, level = 45, type = "dragon", type2 = "no type"},

["Shiny Dragonite"] = {offense = 14.74, defense = 10.45, specialattack = 11, vitality = 20.02, agility = 0.33, exp = 239.8, level = 85, type = "dragon", type2 = "flying"},

["Shiny Mewtwo"] = {offense = 12.1, defense = 9.9, specialattack = 16.94, vitality = 23.32, agility = 0.33, exp = 242, level = 100, type = "psychic", type2 = "no type"},

["Shiny Mew"] = {offense = 11, defense = 11, specialattack = 11, vitality = 22, agility = 0.33, exp = 70.4, level = 100, type = "psychic", type2 = "no type"},

-----------------------------------------------------------Startos Pokemon Johto-----------------------------------------------------------

["Chikorita"] = {offense = 4.9, defense = 6.5, specialattack = 4.9, vitality = 9, agility = 0.1, exp = 64, level = 18, type = "grass", type2 = "no type"},

["Bayleef"] = {offense = 6.2, defense = 8, specialattack = 6.3, vitality = 12, agility = 0.2, exp = 141, level = 38, type = "grass", type2 = "no type"},

["Meganium"] = {offense = 8.2, defense = 10, specialattack = 8.3, vitality = 16, agility = 0.3, exp = 208, level = 75, type = "grass", type2 = "no type"},

["Cyndaquil"] = {offense = 5, defense = 4.3, specialattack = 6, vitality = 8, agility = 0.1, exp = 65, level = 18, type = "fire", type2 = "no type"},

["Quilava"] = {offense = 6.4, defense = 5.8, specialattack = 8.5, vitality = 12, agility = 0.2, exp = 142, level = 38, type = "fire", type2 = "no type"},

["Typhlosion"] = {offense = 8.4, defense = 7.8, specialattack = 11, vitality = 16, agility = 0.3, exp = 209, level = 75, type = "fire", type2 = "no type"},

["Totodile"] = {offense = 6.5, defense = 6.4, specialattack = 4.4, vitality = 10, agility = 0.1, exp = 66, level = 18, type = "water", type2 = "no type"},

["Croconaw"] = {offense = 8, defense = 8, specialattack = 5.9, vitality = 13, agility = 0.2, exp = 141, level = 38, type = "water", type2 = "no type"},

["Feraligatr"] = {offense = 10.5, defense = 10, specialattack = 7.9, vitality = 17, agility = 0.3, exp = 142, level = 75, type = "water", type2 = "no type"},

["Sentret"] = {offense = 4.6, defense = 3.4, specialattack = 3.5, vitality = 7, agility = 0.1, exp = 57, level = 3, type = "normal", type2 = "no type"},

["Furret"] = {offense = 7.6, defense = 6.4, specialattack = 4.5, vitality = 17, agility = 0.2, exp = 116, level = 28, type = "normal", type2 = "no type"},

["Hoothoot"] = {offense = 3, defense = 3, specialattack = 3.6, vitality = 12, agility = 0.1, exp = 58, level = 3, type = "normal", type2 = "flying"},

["Noctowl"] = {offense = 5, defense = 5, specialattack = 7.6, vitality = 20, agility = 0.2, exp = 162, level = 38, type = "normal", type2 = "flying"},

["Ledyba"] = {offense = 2, defense = 3, specialattack = 4, vitality = 8, agility = 0.1, exp = 54, level = 12, type = "bug", type2 = "flying"},

["Ledian"] = {offense = 3.5, defense = 5.0, specialattack = 5.5, vitality = 11, agility = 0.2, exp = 134, level = 30, type = "bug", type2 = "flying"},

["Spinarak"] = {offense = 6, defense = 4, specialattack = 4, vitality = 8, agility = 0.1, exp = 54, level = 15, type = "bug", type2 = "poison"},

["Ariados"] = {offense = 9, defense = 7, specialattack = 6, vitality = 14, agility = 0.2, exp = 134, level = 42, type = "bug", type2 = "poison"},

["Crobat"] = {offense = 9, defense = 8, specialattack = 7, vitality = 17, agility = 0.3, exp = 204, level = 70, type = "poison", type2 = "flying"},

["Chinchou"] = {offense = 3.8, defense = 3.8, specialattack = 5.6, vitality = 15, agility = 0.1, exp = 90, level = 14, type = "water", type2 = "electric"},

["Lanturn"] = {offense = 5.8, defense = 5.8, specialattack = 7.6, vitality = 25, agility = 0.2, exp = 156, level = 38, type = "water", type2 = "electric"},

["Pichu"] = {offense = 4, defense = 1.5, specialattack = 3.5, vitality = 4, agility = 0.1, exp = 42, level = 3, type = "electric", type2 = "no type"},

["Cleffa"] = {offense = 2.5, defense = 2.8, specialattack = 4.5, vitality = 10, agility = 0.1, exp = 37, level = 3, type = "normal", type2 = "no type"},

["Igglybuff"] = {offense = 3, defense = 1.5, specialattack = 4, vitality = 18, agility = 0.1, exp = 39, level = 3, type = "normal", type2 = "no type"},

["Togepi"] = {offense = 2, defense = 6.5, specialattack = 4, vitality = 7, agility = 0.1, exp = 74, level = 10, type = "normal", type2 = "no type"},

["Togetic"] = {offense = 4, defense = 8.5, specialattack = 8, vitality = 11, agility = 0.2, exp = 114, level = 45, type = "normal", type2 = "flying"},

["Natu"] = {offense = 5, defense = 4.5, specialattack = 7, vitality = 8, agility = 0.1, exp = 73, level = 15, type = "psychic", type2 = "flying"},

["Xatu"] = {offense = 7.5, defense = 7, specialattack = 9.5, vitality = 13, agility = 0.2, exp = 171, level = 45, type = "psychic", type2 = "flying"},

["Mareep"] = {offense = 4, defense = 4, specialattack = 6.5, vitality = 11, agility = 0.1, exp = 59, level = 12, type = "electric", type2 = "no type"},

["Flaaffy"] = {offense = 5.5, defense = 5.5, specialattack = 8, vitality = 14, agility = 0.2, exp = 117, level = 30, type = "electric", type2 = "no type"},

["Ampharos"] = {offense = 7.5, defense = 7.5, specialattack = 11.5, vitality = 18, agility = 0.3, exp = 194, level = 65, type = "electric", type2 = "no type"},

["Bellossom"] = {offense = 8, defense = 8.5, specialattack = 9, vitality = 15, agility = 0.3, exp = 184, level = 50, type = "grass", type2 = "no type"},

["Marill"] = {offense = 2, defense = 5, specialattack = 2, vitality = 14, agility = 0.1, exp = 58, level = 14, type = "water", type2 = "no type"},

["Azumarill"] ={offense = 5, defense = 8, specialattack = 5, vitality = 20, agility = 0.2, exp = 153, level = 28, type = "water", type2 = "no type"},

["Sudowoodo"] = {offense = 10, defense = 11.5, specialattack = 3, vitality = 14, agility = 0.3, exp = 135, level = 46, type = "rock", type2 = "no type"},

["Politoed"] = {offense = 7.5, defense = 7.5, specialattack = 9, vitality = 18, agility = 0.3, exp = 185, level = 60, type = "water", type2 = "no type"},

["Hoppip"] = {offense = 3.5, defense = 4, specialattack = 3.5, vitality = 7, agility = 0.1, exp = 74, level = 10, type = "grass", type2 = "flying"},

["Skiploom"] = {offense = 4.5, defense = 5, specialattack = 4.5, vitality = 11, agility = 0.2, exp = 136, level = 20, type = "grass", type2 = "flying"},

["Jumpluff"] = {offense = 5.5, defense = 7, specialattack = 5.5, vitality = 15, agility = 0.3, exp = 176, level = 30, type = "grass", type2 = "flying"},

["Aipom"] = {offense = 7, defense = 5.5, specialattack = 4, vitality = 11, agility = 0.1, exp = 94, level = 10, type = "normal", type2 = "no type"},

["Sunkern"] = {offense = 3, defense = 3, specialattack = 3, vitality = 6, agility = 0.1, exp = 52, level = 3, type = "grass", type2 = "no type"},

["Sunflora"] = {offense = 7.5, defense = 5.5, specialattack = 10.5, vitality = 15, agility = 0.2, exp = 146, level = 50, type = "grass", type2 = "no type"},

["Yanma"] = {offense = 6.5, defense = 4.5, specialattack = 7.5, vitality = 13, agility = 0.2, exp = 147, level = 32, type = "bug", type2 = "flying"},

["Wooper"] = {offense = 4.5, defense = 4.5, specialattack = 2.5, vitality = 11, agility = 0.1, exp = 52, level = 18, type = "water", type2 = "ground"},

["Quagsire"] = {offense = 8.5, defense = 8.5, specialattack = 6.5, vitality = 19, agility = 0.2, exp = 137, level = 55, type = "water", type2 = "ground"},

["Espeon"] = {offense = 6.5, defense = 6, specialattack = 13, vitality = 13, agility = 0.3, exp = 197, level = 55, type = "psychic", type2 = "no type"},

["Umbreon"] = {offense = 6.5, defense = 11, specialattack = 6, vitality = 19, agility = 0.3, exp = 197, level = 55, type = "dark", type2 = "no type"},

["Murkrow"] = {offense = 8.5, defense = 4.2, specialattack = 8.5, vitality = 12, agility = 0.1, exp = 107, level = 35, type = "dark", type2 = "flying"},

["Slowking"] = {offense = 7.5, defense = 8, specialattack = 10, vitality = 19, agility = 0.3, exp = 164, level = 60, type = "water", type2 = "psychic"},

["Misdreavus"] = {offense = 6, defense = 6, specialattack = 8.5, vitality = 12, agility = 0.1, exp = 147, level = 47, type = "ghost", type2 = "no type"},

["Unown"] = {offense = 7.2, defense = 4.8, specialattack = 7.2, vitality = 9.6, agility = 0.1, exp = 61, level = 15, type = "psychic", type2 = "no type"},

["Wobbuffet"] = {offense = 3.3, defense = 5.8, specialattack = 3.3, vitality = 38, agility = 0.2, exp = 177, level = 42, type = "psychic", type2 = "no type"},

["Girafarig"] = {offense = 8, defense = 6.5, specialattack = 9, vitality = 14, agility = 0.3, exp = 149, level = 42, type = "normal", type2 = "psychic"},

["Pineco"] = {offense = 6.5, defense = 9, specialattack = 3.5, vitality = 10, agility = 0.1, exp = 60, level = 18, type = "bug", type2 = "no type"},

["Forretress"] = {offense = 9, defense = 14, specialattack = 6, vitality = 15, agility = 0.2, exp = 118, level = 55, type = "bug", type2 = "steel"},

["Dunsparce"] = {offense = 7, defense = 7, specialattack = 6.5, vitality = 20, agility = 0.1, exp = 125, level = 35, type = "normal", type2 = "no type"},

["Gligar"] = {offense = 7.5, defense = 10.5, specialattack = 3.5, vitality = 13, agility = 0.1, exp = 108, level = 30, type = "ground", type2 = "flying"},

["Steelix"] = {offense = 8.5, defense = 20, specialattack = 5.5, vitality = 15, agility = 0.3, exp = 196, level = 75, type = "steel", type2 = "ground"},

["Snubbull"] = {offense = 8, defense = 5, specialattack = 4, vitality = 12, agility = 0.1, exp = 63, level = 20, type = "normal", type2 = "no type"},

["Granbull"] = {offense = 12, defense = 7.5, specialattack = 6, vitality = 18, agility = 0.2, exp = 178, level = 42, type = "normal", type2 = "no type"},

["Qwilfish"] = {offense = 9.5, defense = 8.5, specialattack = 5.5, vitality = 13, agility = 0.1, exp = 100, level = 16, type = "water", type2 = "poison"},

["Scizor"] = {offense = 13, defense = 10, specialattack = 5.5, vitality = 14, agility = 0.3, exp = 200, level = 75, type = "bug", type2 = "steel"},

["Shuckle"] = {offense = 1, defense = 23, specialattack = 1, vitality = 4, agility = 0.2, exp = 80, level = 10, type = "bug", type2 = "rock"},

["Heracross"] = {offense = 12.5, defense = 7.5, specialattack = 4, vitality = 16, agility = 0.2, exp = 200, level = 60, type = "bug", type2 = "fighting"},

["Sneasel"] = {offense = 9.5, defense = 5.5, specialattack = 3.5, vitality = 11, agility = 0.2, exp = 132, level = 50, type = "dark", type2 = "ice"},

["Teddiursa"] = {offense = 8, defense = 5, specialattack = 5, vitality = 12, agility = 0.1, exp = 124, level = 20, type = "normal", type2 = "no type"},

["Ursaring"] = {offense = 13, defense = 7.5, specialattack = 7.5, vitality = 18, agility = 0.2, exp = 189, level = 70, type = "normal", type2 = "no type"},

["Slugma"] = {offense = 4, defense = 4, specialattack = 7, vitality = 8, agility = 0.1, exp = 38, level = 78, type = "fire", type2 = "no type"},

["Magcargo"] = {offense = 5, defense = 12, specialattack = 8, vitality = 10, agility = 0.2, exp = 154, level = 40, type = "fire", type2 = "rock"},

["Swinub"] = {offense = 5, defense = 4, specialattack = 3, vitality = 10, agility = 0.1, exp = 78, level = 12, type = "ice", type2 = "ground"},

["Piloswine"] = {offense = 10, defense = 8, specialattack = 6, vitality = 20, agility = 0.2, exp = 160, level = 70, type = "ice", type2 = "ground"},

["Corsola"] = {offense = 5.5, defense = 8.5, specialattack = 6.5, vitality = 11, agility = 0.1, exp = 113, level = 42, type = "water", type2 = "rock"},

["Remoraid"] = {offense = 6.5, defense = 3.5, specialattack = 6.5, vitality = 7, agility = 0.1, exp = 78, level = 14, type = "water", type2 = "no type"},

["Octillery"] = {offense = 10.5, defense = 7.5, specialattack = 10.5, vitality = 15, agility = 0.2, exp = 164, level = 38, type = "water", type2 = "no type"},

["Delibird"] = {offense = 5.5, defense = 4.5, specialattack = 6.5, vitality = 9, agility = 0.1, exp = 183, level = 25, type = "ice", type2 = "flying"},

["Mantine"] = {offense = 4, defense = 7, specialattack = 8, vitality = 13, agility = 0.1, exp = 168, level = 50, type = "water", type2 = "flying"},

["Skarmory"] = {offense = 8, defense = 14, specialattack = 4, vitality = 13, agility = 0.2, exp = 168, level = 70, type = "steel", type2 = "flying"},

["Houndour"] = {offense = 6, defense = 3, specialattack = 8, vitality = 9, agility = 0.1, exp = 114, level = 18, type = "dark", type2 = "fire"},

["Houndoom"] = {offense = 9, defense = 5, specialattack = 11, vitality = 15, agility = 0.2, exp = 204, level = 70, type = "dark", type2 = "fire"},

["Kingdra"] = {offense = 9.5, defense = 9.5, specialattack = 9.5, vitality = 15, agility = 0.3, exp = 207, level = 75, type = "water", type2 = "dragon"},

["Phanpy"] = {offense = 6, defense = 6, specialattack = 4, vitality = 18, agility = 0.1, exp = 124, level = 12, type = "ground", type2 = "no type"},

["Donphan"] = {offense = 12, defense = 12, specialattack = 6, vitality = 18, agility = 0.2, exp = 189, level = 45, type = "ground", type2 = "no type"},

["Porygon2"] = {offense = 8, defense = 9, specialattack = 10.5, vitality = 17, agility = 0.3, exp = 180, level = 60, type = "normal", type2 = "no type"},

["Stantler"] = {9.5, defense = 6.2, specialattack = 8.5, vitality = 14.6, agility = 0.2, exp = 165, level = 35, type = "normal", type2 = "no type"},

["Smeargle"] = {offense = 2, defense = 3.5, specialattack = 2, vitality = 11, agility = 0.1, exp = 106, level = 28, type = "normal", type2 = "no type"},

["Tyrogue"] = {offense = 3.5, defense = 3.5, specialattack = 3.5, vitality = 7, agility = 0.1, exp = 91, level = 15, type = "fighting", type2 = "no type"},

["Hitmontop"] = {offense = 9.5, defense = 9.5, specialattack = 3.5, vitality = 10, agility = 0.3, exp = 138, level = 60, type = "fighting", type2 = "no type"},

["Smoochum"] = {offense = 3, defense = 1.5, specialattack = 8.5, vitality = 9, agility = 0.1, exp = 87, level = 3, type = "ice", type2 = "psychic"},

["Elekid"] = {offense = 6.3, defense = 3.7, specialattack = 6.5, vitality = 9, agility = 0.1, exp = 106, level = 3, type = "electric", type2 = "no type"},

["Magby"] = {offense = 7.5, defense = 3.7, specialattack = 7, vitality = 9, agility = 0.1, exp = 117, level = 3, type = "fire", type2 = "no type"},

["Miltank"] = {offense = 8, defense = 10.5, specialattack = 4, vitality = 19, agility = 0.3, exp = 200, level = 32, type = "normal", type2 = "no type"},

["Blissey"] = {offense = 1, defense = 1, specialattack = 7.5, vitality = 51, agility = 0.3, exp = 255, level = 70, type = "normal", type2 = "no type"},

["Raikou"] = {offense = 8.5, defense = 7.5, specialattack = 11.5, vitality = 18, agility = 0.3, exp = 216, level = 100, type = "electric", type2 = "no type"},

["Entei"] = {offense = 11.5, defense = 8.5, specialattack = 9, vitality = 23, agility = 0.3, exp = 217, level = 100, type = "fire", type2 = "no type"},

["Suicune"] = {offense = 7.5, defense = 11.5, specialattack = 9, vitality = 20, agility = 0.3, exp = 218, level = 100, type = "water", type2 = "no type"},

["Larvitar"] = {offense = 6.4, defense = 5, specialattack = 4.5, vitality = 10, agility = 0.1, exp = 67, level = 10, type = "rock", type2 = "ground"},

["Pupitar"] = {offense = 8.4, defense = 7, specialattack = 6.5, vitality = 14, agility = 0.2, exp = 144, level = 50, type = "rock", type2 = "ground"},

["Tyranitar"] = {offense = 13.4, defense = 11, specialattack = 9.5, vitality = 20, agility = 0.3, exp = 218, level = 90, type = "rock", type2 = "dark"},

["Lugia"] = {offense = 9, defense = 13, specialattack = 9, vitality = 21.2, agility = 0.3, exp = 220, level = 100, type = "psychic", type2 = "flying"},

["Ho-oh"] = {offense = 13, defense = 9, specialattack = 11, vitality = 21.2, agility = 0.3, exp = 220, level = 100, type = "fire", type2 = "flying"},

["Celebi"] = {offense = 10, defense = 10, specialattack = 10, vitality = 20, agility = 0.3, exp = 64, level = 100, type = "psychic", type2 = "grass"},

}

 

Editado por rohfagundes
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...