Eae galera to com um problema na spell morph do dark abra, na verdade a spell funciona ate bem de mais o problema é quando vo chamar o pokemon de volta pra ball, nesse momento na um erro no console e o pokemon nao volta.
console :
[14/02/2016 08:26:51] [Error - Action Interface] [14/02/2016 08:26:51] data/actions/scripts/goback.lua:onUse [14/02/2016 08:26:51] Description: [14/02/2016 08:26:51] data/actions/scripts/goback.lua:711: attempt to perform arithmetic on a nil value [14/02/2016 08:26:51] stack traceback: [14/02/2016 08:26:51] data/actions/scripts/goback.lua:711: in function <data/actions/scripts/goback.lua:642>
Minha Goback
local pokes = { --alterado v1.8 \/\/ toda a tabela, recebeu um novo 'atributo', wildLvl...
local msgunica = true local msgunicago1, msgunicaback1 = "Go, doka!", "Come back, doka!" local msgunicago2, msgunicaback2 = "Let's do it, doka!", "Thanks for helping, doka!" local msgunicago3, msgunicaback3 = "I choose you, doka!", "That's enough, come back!" local msgunicago4, msgunicaback4 = "I need your help, doka!", "You were great, doka!" local msgunicago5, msgunicaback5 = "Let's fight, doka!", "Excellent work, doka!" local msgunicago6, msgunicaback6 = "It's battle time, doka!", "Well done, doka!"
function onUse(cid, item, frompos, item2, topos)
if #getCreatureSummons(cid) == 2 and getPlayerStorageValue(cid, 212124) >= 1 then doPlayerSendCancel(cid, "You can't do that while is controling a mind") return true --alterado v1.5 end
setPlayerStorageValue(cid,9506,-1) if #getCreatureSummons(cid) >= 1 and getPlayerStorageValue(getCreatureSummons(cid)[1], 33) >= 1 then return true end local random2 = math.random(1,6) if random2 == 1 then msgunicaback = msgunicaback1 elseif random2 == 2 then msgunicaback = msgunicaback2 elseif random2 == 3 then msgunicaback = msgunicaback3 elseif random2 == 4 then msgunicaback = msgunicaback4 elseif random2 == 5 then msgunicaback = msgunicaback5 elseif random2 == 6 then msgunicaback = msgunicaback6 end
local random = math.random(1,6) if random == 1 then msgunicago = msgunicago1 elseif random == 2 then msgunicago = msgunicago2 elseif random == 3 then msgunicago = msgunicago3 elseif random == 4 then msgunicago = msgunicago4 elseif random == 5 then msgunicago = msgunicago5 elseif random == 6 then msgunicago = msgunicago6 end
if item.itemid == 2222 or item.itemid == 2223 then gobackeff = 188 elseif item.itemid == 2220 or item.itemid == 2221 then gobackeff = 191 elseif item.itemid == 2651 or item.itemid == 2652 then gobackeff = 189 elseif item.itemid == 2653 or item.itemid == 2654 then gobackeff = 190 elseif item.itemid == 2655 or item.itemid == 2656 then gobackeff = 195 elseif item.itemid == 11618 or item.itemid == 11619 then gobackeff = 99 elseif item.itemid == 11621 or item.itemid == 11622 then gobackeff = 194 elseif item.itemid == 11624 or item.itemid == 11625 then gobackeff = 192 elseif item.itemid == 11627 or item.itemid == 11628 then gobackeff = 193 end
local effect = gobackeff
if item.itemid == 2223 or item.itemid == 2221 or item.itemid == 2652 or item.itemid == 2654 or item.itemid == 2656 or item.itemid == 11619 or item.itemid == 11622 or item.itemid == 11625 or item.itemid == 11628 then
if #getCreatureSummons(cid) >= 1 then
local summom = getCreatureSummons(cid)
local pokename = getItemAttribute(item.uid, "poke"):sub(9, findLetter(getItemAttribute(item.uid, "poke"), "'")-1)
local mbk = msgunicaback:gsub("doka", pokename) doTransformItem(item.uid, item.itemid-1) doCreatureSay(cid, mbk, TALKTYPE_SAY) doPlayerSendCancel(cid, '12//,hide') if math.random(1,100) <= 35 then setPokemonFeed(cid, getPokemonFeed(cid)-15) -- Food system end doItemSetAttribute(item.uid, "poke", getItemAttribute(item.uid, "poke"):sub(1, findLetter(getItemAttribute(item.uid, "poke"), ".")) .. " HP = ["..getCreatureHealth(summom[1]).."/"..getCreatureMaxHealth(summom[1]).."]") setPlayerStorageValue(cid, 61204, 0) setPlayerStorageValue(cid, 2, 0) doSendMagicEffect(getCreaturePosition(summom[1]), effect) doRemoveCreature(summom[1]) return true end
elseif item.itemid == 2222 or item.itemid == 2220 or item.itemid == 2651 or item.itemid == 2653 or item.itemid == 2655 or item.itemid == 11618 or item.itemid == 11621 or item.itemid == 11624 or item.itemid == 11627 then
if item.uid ~= getPlayerSlotItem(cid, CONST_SLOT_FEET).uid then doPlayerSendCancel(cid, "You must put your pokeball in the correct place!") return TRUE end
if not canSummon(cid) then return doPlayerSendDefaultCancel(cid, RETURNVALUE_NOTENOUGHROOM) end
if getPlayerStorageValue(cid, 63215) >= 1 then return doPlayerSendCancel(cid, "You can't use pokeball while surfing.") end
if getPlayerStorageValue(cid, 7778) >= 1 then return doPlayerSendCancel(cid, "You can't use pokeball while flying.") end
if #getCreatureSummons(cid) >= 1 then return doPlayerSendCancel(cid, "You have already summoned a pokemon.") end
i = getItemAttribute(item.uid, "poke"):match("This is (.-)'s pokeball.")
x = pokes if getPlayerLevel(cid) < x.level then doPlayerSendCancel(cid, "You need level "..x.level.." or higher to use this pokemon.") return true end local removed = doCreateItem(1285, 1, getThingPos(cid)) doSummonMonster(cid, i) local pk = getCreatureSummons(cid)[1] doTeleportThing(pk, getClosestFreeTile(pk, getThingPos(cid)), false) doRemoveItem(removed, 1) doCreatureSetLookDir(pk, 2) local maxh = pokes[getCreatureName(pk)].vida local levellife = pokes[getCreatureName(pk)].vitality * HPperVITsummon *90.6 local health = tonumber(getItemAttribute(item.uid, "poke"):match("%[(.-)/"))
local maxVida = tonumber(getItemAttribute(item.uid, "poke"):match("/(.+)]"))
doTransformItem(item.uid, item.itemid+1) local pokename = getCreatureName(getCreatureSummons(cid)[1]) local mgo = msgunicago:gsub("doka", pokename) doCreatureSay(cid, mgo, TALKTYPE_SAY) if math.random(1,100) <= 35 then setPokemonFeed(cid, getPokemonFeed(cid)-5) -- Food system end doSendFeedEffect(cid)
if useOTClient then doPlayerSendCancel(cid, '12//,show') --alterado v1.7 end if useKpdoDlls then doUpdateMoves(cid) end
local summonName = getItemAttribute(getPlayerSlotItem(cid, 8).uid, "poke"):match("This is (.-)'s pokeball.") if getCreatureName(pk) == "Ditto" then if useKpdoDlls then doPlayerSendCancel(cid, '12//,hide') end
local left = getItemAttribute(item.uid, "transLeft") local name = getItemAttribute(item.uid, "transName")
if left and left > 0 then setPlayerStorageValue(pk, 1010, name) doSetCreatureOutfit(pk, {lookType = getItemAttribute(item.uid, "transOutfit")}, -1) addEvent(deTransform, left * 1000, pk, getItemAttribute(item.uid, "transTurn")) doItemSetAttribute(item.uid, "transBegin", os.clock()) if useOTClient then doPlayerSendCancel(cid, '12//,show') --alterado v1.7 end if useKpdoDlls then doUpdateMoves(cid) end else setPlayerStorageValue(pk, 1010, "Ditto") end end ----- Burn, venom e ice system ------ getBurn(cid) getVenom(cid) getIce(cid) ----- Burn, venom e ice system ------ doItemSetAttribute(item.uid, "poke", getItemAttribute(item.uid, "poke"):sub(1, findLetter(getItemAttribute(item.uid, "poke"), "."))) doSendMagicEffect(getCreaturePosition(pk), effect) setPlayerStorageValue(cid, 61204, 1) registerCreatureEvent(pk, "DiePoke") registerCreatureEvent(pk, "Exp") end return true end
a spell Morph
elseif spell == "Morph" then
if isSummon(cid) then sid = getCreatureMaster(cid)
if getPlayerSlotItem(sid, 8).itemid == 0 then print(getPlayerSlotItem(sid, 8).itemid) return false end local _TAB = { ["Dark Abra"] = {eff = lightEff, name = "Light Abra", outfit = lightOut}, ["Light Abra"] = {eff = darkEff, name = "Dark Abra", outfit = darkOut}, ["Ghost Rotom"] = {eff = waterEff, name = "Water Rotom", outfit = waterOut}, ["Water Rotom"] = {eff = fireEff, name = "Fire Rotom", outfit = fireOut}, ["Fire Rotom"] = {eff = grassEff, name = "Grass Rotom", outfit = grassOut}, ["Grass Rotom"] = {eff = flyEff, name = "Flying Rotom", outfit = flyOut}, ["Flying Rotom"] = {eff = iceEff, name = "Ice Rotom", outfit = iceOut}, ["Ice Rotom"] = {eff = ghostEff, name = "Ghost Rotom", outfit = ghostOut} }
local infos = _TAB[getCreatureName(cid)]
if infos then eff, name, outfit = infos.eff, infos.name, infos.outfit end if not isPlayer(sid) then return false end if getItemAttribute(getPlayerSlotItem(sid, 8).uid, "ghostlight") then local name = getCreatureName(cid) doItemEraseAttribute(getPlayerSlotItem(sid, 8).uid, "ghostlight") else doItemSetAttribute(getPlayerSlotItem(sid, 8).uid, "ghostlight", "yes") end doSendMagicEffect(getThingPosWithDebug(cid), eff) doSetCreatureOutfit(cid, {lookType = outfit}, -1) doItemSetAttribute(getPlayerSlotItem(sid, 8).uid, "poke", name) doRemoveCreature(cid) doSummonMonster(sid, name) doTeleportThing(getCreatureSummons(sid)[1], pos, false) adjustStatus(getPlayerSlotItem(sid, 8).uid, true, false) doUpdateMoves(sid) end
Pergunta
leofox97 1
Eae galera to com um problema na spell morph do dark abra, na verdade a spell funciona ate bem de mais o problema é quando vo chamar o pokemon de volta pra ball, nesse momento na um erro no console e o pokemon nao volta.
console :
[14/02/2016 08:26:51] [Error - Action Interface]
[14/02/2016 08:26:51] data/actions/scripts/goback.lua:onUse
[14/02/2016 08:26:51] Description:
[14/02/2016 08:26:51] data/actions/scripts/goback.lua:711: attempt to perform arithmetic on a nil value
[14/02/2016 08:26:51] stack traceback:
[14/02/2016 08:26:51] data/actions/scripts/goback.lua:711: in function <data/actions/scripts/goback.lua:642>
Minha Goback
local pokes = { --alterado v1.8 \/\/ toda a tabela, recebeu um novo 'atributo', wildLvl...
["Shiny Dragonite"] = {offense = 14.74, cons = 40, vida = 13000, defense = 10.45, specialattack = 11, vitality = 10.01, agility = 133, exp = 239.8, level = 120, wildLvl = 120, type = "dragon", type2 = "flying"},
["Bulbasaur"] = {offense = 4.9, cons = 40, vida = 1500, defense = 4.9, specialattack = 6.5, vitality = 4.5, agility = 106, exp = 64, level = 20, wildLvl = 20, type = "grass", type2 = "poison"},
["Ivysaur"] = {offense = 6.2, cons = 85, vida = 4050, defense = 6.3, specialattack = 8, vitality = 6, agility = 123, exp = 141, level = 40, wildLvl = 40, type = "grass", type2 = "poison"},
["Venusaur"] = {offense = 8.2, cons = 190, vida = 8500, defense = 8.3, specialattack = 10, vitality = 8, agility = 145, exp = 208, level = 85, wildLvl = 85, type = "grass", type2 = "poison"},
["Charmander"] = {offense = 5.2, cons = 30, vida = 1500, defense = 4.3, specialattack = 6, vitality = 3.9, agility = 128, exp = 65, level = 20, wildLvl = 20, type = "fire", type2 = "no type"},
["Charmeleon"] = {offense = 6.5, cons = 70, vida = 4050, defense = 5.8, specialattack = 8.5, vitality = 5.8, agility = 145, exp = 142, level = 40, wildLvl = 40, type = "fire", type2 = "no type"},
["Charizard"] = {offense = 8.5, cons = 140, vida = 8500, defense = 7.8, specialattack = 11, vitality = 7.8, agility = 167, exp = 209, level = 85, wildLvl = 85, type = "fire", type2 = "flying"},
["Squirtle"] = {offense = 4.8, cons = 50, vida = 1500, defense = 6.5, specialattack = 5, vitality = 4.4, agility = 104, exp = 66, level = 20, wildLvl = 20, type = "water", type2 = "no type"},
["Wartortle"] = {offense = 6.3, cons = 95, vida = 4050, defense = 8, specialattack = 6.5, vitality = 5.9, agility = 121, exp = 143, level = 40, wildLvl = 40, type = "water", type2 = "no type"},
["Blastoise"] = {offense = 8.3, cons = 195, vida = 8500, defense = 10, specialattack = 8.5, vitality = 7.9, agility = 143, exp = 210, level = 85, wildLvl = 85, type = "water", type2 = "no type"},
["Caterpie"] = {offense = 3, cons = 10, vida = 600, defense = 3.5, specialattack = 2, vitality = 4.5, agility = 106, exp = 53, level = 5, wildLvl = 5, type = "bug", type2 = "no type"},
["Metapod"] = {offense = 2, cons = 30, vida = 1000, defense = 5.5, specialattack = 2.5, vitality = 5, agility = 90, exp = 72, level = 15, wildLvl = 15, type = "bug", type2 = "no type"},
["Butterfree"] = {offense = 4.5, cons = 65, vida = 3000, defense = 5, specialattack = 8, vitality = 6, agility = 134, exp = 160, level = 30, wildLvl = 30, type = "bug", type2 = "flying"},
["Weedle"] = {offense = 3.5, cons = 10, vida = 600, defense = 3, specialattack = 2, vitality = 4, agility = 112, exp = 52, level = 5, wildLvl = 5, type = "bug", type2 = "poison"},
["Kakuna"] = {offense = 2.5, cons = 35, vida = 1000, defense = 5, specialattack = 2.5, vitality = 4.5, agility = 95, exp = 120, level = 15, wildLvl = 15, type = "bug", type2 = "poison"},
["Beedrill"] = {offense = 8, cons = 60, vida = 3000, defense = 4, specialattack = 4.5, vitality = 6.5, agility = 139, exp = 159, level = 30, wildLvl = 30, type = "bug", type2 = "poison"},
["Pidgey"] = {offense = 4.5, cons = 20, vida = 700, defense = 4, specialattack = 3.5, vitality = 4, agility = 118, exp = 55, level = 5, wildLvl = 5, type = "normal", type2 = "flying"},
["Pidgeotto"] = {offense = 6, cons = 50, vida = 1500, defense = 5.5, specialattack = 5, vitality = 6.3, agility = 145, exp = 113, level = 20, wildLvl = 20, type = "normal", type2 = "flying"},
["Pidgeot"] = {offense = 8, cons = 100, vida = 6000, defense = 7.5, specialattack = 7, vitality = 8.3, agility = 210, exp = 172, level = 75, wildLvl = 75, type = "normal", type2 = "flying"},
["Rattata"] = {offense = 5.6, cons = 10, vida = 400, defense = 3.5, specialattack = 2.5, vitality = 3, agility = 136, exp = 10, level = 5, wildLvl = 5, type = "normal", type2 = "no type"},
["Raticate"] = {offense = 8.1, cons = 70, vida = 1700, defense = 6, specialattack = 5, vitality = 5.5, agility = 163, exp = 116, level = 25, wildLvl = 25, type = "normal", type2 = "no type"},
["Spearow"] = {offense = 6, cons = 25, vida = 850, defense = 3, specialattack = 3.1, vitality = 4, agility = 134, exp = 58, level = 10, wildLvl = 10, type = "normal", type2 = "flying"},
["Fearow"] = {offense = 9, cons = 80, vida = 4000, defense = 6.5, specialattack = 6.1, vitality = 6.5, agility = 167, exp = 162, level = 50, wildLvl = 50, type = "normal", type2 = "flying"},
["Ekans"] = {offense = 6, cons = 30, vida = 1000, defense = 4.4, specialattack = 4, vitality = 3.5, agility = 117, exp = 62, level = 15, wildLvl = 15, type = "poison", type2 = "no type"},
["Arbok"] = {offense = 8.5, cons = 90, vida = 4000, defense = 6.9, specialattack = 6.5, vitality = 6, agility = 145, exp = 147, level = 35, wildLvl = 35, type = "poison", type2 = "no type"},
["Pikachu"] = {offense = 5.5, cons = 75, vida = 3500, defense = 3, specialattack = 5, vitality = 3.5, agility = 156, exp = 82, level = 40, wildLvl = 40, type = "electric", type2 = "no type"},
["Raichu"] = {offense = 9, cons = 100, vida = 7000, defense = 5.5, specialattack = 9, vitality = 6, agility = 167, exp = 122, level = 85, wildLvl = 85, type = "electric", type2 = "no type"},
["Sandshrew"] = {offense = 7.5, cons = 30, vida = 1000, defense = 8.5, specialattack = 2, vitality = 5, agility = 101, exp = 93, level = 20, wildLvl = 20, type = "ground", type2 = "no type"},
["Sandslash"] = {offense = 10, cons = 95, vida = 4000, defense = 11, specialattack = 4.5, vitality = 7.5, agility = 128, exp = 163, level = 65, wildLvl = 65, type = "ground", type2 = "no type"},
["Nidoran Female"] = {offense = 4.7, cons = 25, vida = 1000, defense = 5.2, specialattack = 4, vitality = 5.5, agility = 102, exp = 59, level = 10, wildLvl = 10, type = "poison", type2 = "no type"},
["Nidorina"] = {offense = 6.2, cons = 60, vida = 3000, defense = 6.7, specialattack = 5.5, vitality = 7, agility = 118, exp = 59, level = 30, wildLvl = 30, type = "poison", type2 = "no type"},
["Nidoqueen"] = {offense = 8.2, cons = 90, vida = 6700, defense = 8.7, specialattack = 7.5, vitality = 9, agility = 140, exp = 194, level = 65, wildLvl = 65, type = "poison", type2 = "ground"},
["Nidoran Male"] = {offense = 5.7, cons = 35, vida = 1000, defense = 4, specialattack = 4, vitality = 4.6, agility = 112, exp = 60, level = 10, wildLvl = 10, type = "poison", type2 = "no type"},
["Nidorino"] = {offense = 7.2, cons = 65, vida = 3000, defense = 5.7, specialattack = 5.5, vitality = 6.1, agility = 128, exp = 118, level = 30, wildLvl = 30, type = "poison", type2 = "no type"},
["Nidoking"] = {offense = 9.2, cons = 90, vida = 6700, defense = 7.7, specialattack = 8.5, vitality = 8.1, agility = 150, exp = 195, level = 65, wildLvl = 65, type = "poison", type2 = "ground"},
["Clefairy"] = {offense = 4.5, cons = 60, vida = 4000, defense = 4.8, specialattack = 6, vitality = 7, agility = 95, exp = 68, level = 40, wildLvl = 40, type = "normal", type2 = "no type"},
["Clefable"] = {offense = 7, cons = 100, vida = 6500, defense = 7.3, specialattack = 8.5, vitality = 9.5, agility = 123, exp = 129, level = 65, wildLvl = 65, type = "normal", type2 = "no type"},
["Vulpix"] = {offense = 4.1, cons = 35, vida = 1000, defense = 4, specialattack = 5, vitality = 3.8, agility = 128, exp = 63, level = 15, wildLvl = 15, type = "fire", type2 = "no type"},
["Ninetales"] = {offense = 7.6, cons = 70, vida = 6000, defense = 7.5, specialattack = 8.1, vitality = 7.3, agility = 167, exp = 178, level = 70, wildLvl = 70, type = "fire", type2 = "no type"},
["Jigglypuff"] = {offense = 4.5, cons = 60, vida = 4000, defense = 2, specialattack = 4.5, vitality = 11.5, agility = 79, exp = 76, level = 40, wildLvl = 40, type = "normal", type2 = "no type"},
["Wigglytuff"] = {offense = 7, cons = 100, vida = 6500, defense = 4.5, specialattack = 7.5, vitality = 14, agility = 106, exp = 109, level = 65, wildLvl = 65, type = "normal", type2 = "no type"},
["Zubat"] = {offense = 4.5, cons = 15, vida = 800, defense = 3.5, specialattack = 3, vitality = 4, agility = 117, exp = 54, level = 10, wildLvl = 10, type = "poison", type2 = "flying"},
["Golbat"] = {offense = 8, cons = 50, vida = 3000, defense = 7, specialattack = 6.5, vitality = 7.5, agility = 156, exp = 171, level = 35, wildLvl = 35, type = "poison", type2 = "flying"},
["Oddish"] = {offense = 5, cons = 15, vida = 800, defense = 5.5, specialattack = 7.5, vitality = 4.5, agility = 90, exp = 78, level = 5, wildLvl = 5, type = "grass", type2 = "poison"},
["Gloom"] = {offense = 6.5, cons = 50, vida = 2000, defense = 7, specialattack = 8.5, vitality = 6, agility = 101, exp = 132, level = 25, wildLvl = 25, type = "grass", type2 = "poison"},
["Vileplume"] = {offense = 8, cons = 90, vida = 4500, defense = 8.5, specialattack = 10, vitality = 7.5, agility = 112, exp = 184, level = 50, wildLvl = 50, type = "grass", type2 = "poison"},
["Paras"] = {offense = 7, cons = 15, vida = 750, defense = 5.5, specialattack = 4.5, vitality = 3.5, agility = 84, exp = 70, level = 5, wildLvl = 5, type = "bug", type2 = "grass"},
["Parasect"] = {offense = 9.5, cons = 110, vida = 4000, defense = 8, specialattack = 6, vitality = 6, agility = 100, exp = 128, level = 50, wildLvl = 50, type = "bug", type2 = "grass"},
["Venonat"] = {offense = 5.5, cons = 50, vida = 1300, defense = 5, specialattack = 4, vitality = 6, agility = 106, exp = 75, level = 20, wildLvl = 20, type = "bug", type2 = "poison"},
["Venomoth"] = {offense = 6.5, cons = 80, vida = 4500, defense = 6, specialattack = 9, vitality = 6.5, agility = 156, exp = 138, level = 50, wildLvl = 50, type = "bug", type2 = "poison"},
["Diglett"] = {offense = 5.5, cons = 45, vida = 1000, defense = 2.5, specialattack = 3.5, vitality = 1, agility = 110, exp = 81, level = 10, wildLvl = 10, type = "ground", type2 = "no type"},
["Dugtrio"] = {offense = 8, cons = 80, vida = 3000, defense = 5, specialattack = 5, vitality = 3.5, agility = 150, exp = 153, level = 35, wildLvl = 35, type = "ground", type2 = "no type"},
["Meowth"] = {offense = 4.5, cons = 50, vida = 1200, defense = 3.5, specialattack = 4, vitality = 4, agility = 130, exp = 69, level = 15, wildLvl = 15, type = "normal", type2 = "no type"},
["Persian"] = {offense = 7, cons = 90, vida = 3000, defense = 6, specialattack = 6.5, vitality = 6.5, agility = 150, exp = 148, level = 30, wildLvl = 30, type = "normal", type2 = "no type"},
["Psyduck"] = {offense = 5.2, cons = 50, vida = 1400, defense = 4.8, specialattack = 6.5, vitality = 5, agility = 117, exp = 80, level = 20, wildLvl = 20, type = "water", type2 = "no type"},
["Golduck"] = {offense = 8.2, cons = 150, vida = 5000, defense = 7.8, specialattack = 9.5, vitality = 8, agility = 150, exp = 174, level = 55, wildLvl = 55, type = "water", type2 = "no type"},
["Mankey"] = {offense = 8, cons = 60, vida = 1000, defense = 3.5, specialattack = 3.5, vitality = 4, agility = 134, exp = 74, level = 10, wildLvl = 10, type = "fighting", type2 = "no type"},
["Primeape"] = {offense = 10.5, cons = 100, vida = 4300, defense = 6, specialattack = 6, vitality = 6.5, agility = 161, exp = 149, level = 50, wildLvl = 50, type = "fighting", type2 = "no type"},
["Growlithe"] = {offense = 7, cons = 60, vida = 1400, defense = 4.5, specialattack = 7, vitality = 5.5, agility = 130, exp = 91, level = 25, wildLvl = 25, type = "fire", type2 = "no type"},
["Arcanine"] = {offense = 11, cons = 130, vida = 8000, defense = 8, specialattack = 10, vitality = 9, agility = 180, exp = 213, level = 80, wildLvl = 80, type = "fire", type2 = "no type"},
["Poliwag"] = {offense = 5, cons = 20, vida = 800, defense = 4, specialattack = 4, vitality = 4, agility = 100, exp = 77, level = 5, wildLvl = 5, type = "water", type2 = "no type"},
["Poliwhirl"] = {offense = 6.5, cons = 45, vida = 2500, defense = 6.5, specialattack = 5, vitality = 6.5, agility = 120, exp = 131, level = 25, wildLvl = 25, type = "water", type2 = "no type"},
["Poliwrath"] = {offense = 8.5, cons = 90, vida = 5500, defense = 9.5, specialattack = 7, vitality = 9, agility = 147, exp = 185, level = 65, wildLvl = 65, type = "water", type2 = "fighting"},
["Abra"] = {offense = 2, cons = 25, vida = 1000, defense = 1.5, specialattack = 10.5, vitality = 2.5, agility = 119, exp = 75, level = 15, wildLvl = 15, type = "psychic", type2 = "no type"},
["Kadabra"] = {offense = 3.5, cons = 60, vida = 3300, defense = 3, specialattack = 12, vitality = 4, agility = 125, exp = 145, level = 45, wildLvl = 45, type = "psychic", type2 = "no type"},
["Alakazam"] = {offense = 5.5, cons = 95, vida = 7200, defense = 4.5, specialattack = 13.5, vitality = 5.5, agility = 140, exp = 186, level = 80, wildLvl = 80, type = "psychic", type2 = "no type"},
["Machop"] = {offense = 8, cons = 60, vida = 1000, defense = 5, specialattack = 3.5, vitality = 7, agility = 95, exp = 75, level = 20, wildLvl = 20, type = "fighting", type2 = "no type"},
["Machoke"] = {offense = 10, cons = 80, vida = 3500, defense = 7, specialattack = 5, vitality = 8, agility = 106, exp = 146, level = 45, wildLvl = 45, type = "fighting", type2 = "no type"},
["Machamp"] = {offense = 12, cons = 125, vida = 7000, defense = 8, specialattack = 6.5, vitality = 9, agility = 117, exp = 193, level = 70, wildLvl = 70, type = "fighting", type2 = "no type"},
["Bellsprout"] = {offense = 7.5, cons = 20, vida = 900, defense = 3.5, specialattack = 7, vitality = 5, agility = 100, exp = 84, level = 5, wildLvl = 5, type = "grass", type2 = "poison"},
["Weepinbell"] = {offense = 9, cons = 50, vida = 1400, defense = 5, specialattack = 8.5, vitality = 6.5, agility = 110, exp = 151, level = 25, wildLvl = 25, type = "grass", type2 = "poison"},
["Victreebel"] = {offense = 10.5, cons = 100, vida = 5000, defense = 6.5, specialattack = 10, vitality = 8, agility = 115, exp = 191, level = 50, wildLvl = 50, type = "grass", type2 = "poison"},
["Tentacool"] = {offense = 4, cons = 50, vida = 1000, defense = 3.5, specialattack = 5, vitality = 4, agility = 129, exp = 105, level = 15, wildLvl = 15, type = "water", type2 = "poison"},
["Tentacruel"] = {offense = 7, cons = 120, vida = 6500, defense = 6.5, specialattack = 8, vitality = 8, agility = 155, exp = 205, level = 75, wildLvl = 75, type = "water", type2 = "poison"},
["Geodude"] = {offense = 8, cons = 60, vida = 1000, defense = 10, specialattack = 3, vitality = 4, agility = 100, exp = 73, level = 15, wildLvl = 15, type = "rock", type2 = "ground"},
["Graveler"] = {offense = 9.5, cons = 85, vida = 3500, defense = 11.5, specialattack = 4.5, vitality = 5.5, agility = 110, exp = 134, level = 40, wildLvl = 40, type = "rock", type2 = "ground"},
["Golem"] = {offense = 11, cons = 120, vida = 8000, defense = 13, specialattack = 5.5, vitality = 8, agility = 125, exp = 177, level = 70, wildLvl = 70, type = "rock", type2 = "ground"},
["Ponyta"] = {cons = 40, vida = 1200, offense = 8.5, defense = 5.5, specialattack = 6.5, vitality = 5, agility = 150, exp = 152, level = 20, wildLvl = 20, type = "fire", type2 = "no type"},
["Rapidash"] = {cons = 40, vida = 1200, offense = 10, defense = 7, specialattack = 8, vitality = 6.5, agility = 176, exp = 192, level = 50, wildLvl = 50, type = "fire", type2 = "no type"},
["Slowpoke"] = {cons = 55, vida = 1000, offense = 6.5, defense = 6.5, specialattack = 4, vitality = 9, agility = 76, exp = 99, level = 15, wildLvl = 15, type = "water", type2 = "psychic"},
["Slowbro"] = {cons = 70, vida = 4100, offense = 7.5, defense = 11, specialattack = 10, vitality = 9.5, agility = 100, exp = 164, level = 45, wildLvl = 45, type = "water", type2 = "psychic"},
["Magnemite"] = {cons = 25, vida = 800, offense = 3.5, defense = 7, specialattack = 9.5, vitality = 2.5, agility = 106, exp = 89, level = 15, wildLvl = 15, type = "electric", type2 = "steel"},
["Magneton"] = {cons = 100, vida = 4500, offense = 6, defense = 9.5, specialattack = 12, vitality = 5, agility = 134, exp = 161, level = 40, wildLvl = 40, type = "electric", type2 = "steel"},
["Farfetch'd"] = {cons = 80, vida = 4200, offense = 6.5, defense = 5.5, specialattack = 5.8, vitality = 5.2, agility = 135, exp = 94, level = 40, wildLvl = 40, type = "normal", type2 = "flying"},
["Doduo"] = {cons = 40, vida = 1200, offense = 8.5, defense = 4.5, specialattack = 3.5, vitality = 3.5, agility = 134, exp = 96, level = 15, wildLvl = 15, type = "normal", type2 = "flying"},
["Dodrio"] = {cons = 80, vida = 4000, offense = 11, defense = 7, specialattack = 6, vitality = 6, agility = 167, exp = 158, level = 45, wildLvl = 45, type = "normal", type2 = "flying"},
["Seel"] = {cons = 50, vida = 1600, offense = 4.5, defense = 5.5, specialattack = 4.5, vitality = 6.5, agility = 106, exp = 100, level = 20, wildLvl = 20, type = "water", type2 = "no type"},
["Dewgong"] = {cons = 90, vida = 5000, offense = 7, defense = 8, specialattack = 7, vitality = 9, agility = 134, exp = 176, level = 65, wildLvl = 65, type = "water", type2 = "ice"},
["Grimer"] = {cons = 30, vida = 1000, offense = 8, defense = 5, specialattack = 4, vitality = 8, agility = 84, exp = 90, level = 15, wildLvl = 15, type = "poison", type2 = "no type"},
["Muk"] = {cons = 130, vida = 7000, offense = 10.5, defense = 7.5, specialattack = 6.5, vitality = 10.5, agility = 112, exp = 157, level = 35, wildLvl = 35, type = "poison", type2 = "no type"},
["Shellder"] = {cons = 30, vida = 1000, offense = 6.5, defense = 10, specialattack = 4.5, vitality = 3, agility = 101, exp = 97, level = 10, wildLvl = 10, type = "water", type2 = "no type"},
["Cloyster"] = {cons = 70, vida = 4500, offense = 9.5, defense = 18, specialattack = 8.5, vitality = 5, agility = 134, exp = 203, level = 60, wildLvl = 60, type = "water", type2 = "ice"},
["Gastly"] = {cons = 60, vida = 1300, offense = 3.5, defense = 3, specialattack = 10, vitality = 3, agility = 125, exp = 95, level = 20, wildLvl = 20, type = "ghost", type2 = "poison"},
["Haunter"] = {cons = 70, vida = 4000, offense = 5, defense = 4.5, specialattack = 11.5, vitality = 4.5, agility = 135, exp = 126, level = 45, wildLvl = 45, type = "ghost", type2 = "poison"},
["Gengar"] = {cons = 135, vida = 7200, offense = 6.5, defense = 6, specialattack = 13, vitality = 6, agility = 150, exp = 190, level = 80, wildLvl = 80, type = "ghost", type2 = "poison"},
["Onix"] = {cons = 90, vida = 5500, offense = 4.5, defense = 16, specialattack = 3, vitality = 3.5, agility = 134, exp = 108, level = 50, wildLvl = 50, type = "rock", type2 = "ground"},
["Drowzee"] = {cons = 55, vida = 1400, offense = 4.8, defense = 4.5, specialattack = 4.3, vitality = 6, agility = 103, exp = 102, level = 25, wildLvl = 25, type = "psychic", type2 = "no type"},
["Hypno"] = {cons = 80, vida = 4200, offense = 7.3, defense = 7, specialattack = 7.3, vitality = 8.5, agility = 130, exp = 165, level = 55, wildLvl = 55, type = "psychic", type2 = "no type"},
["Krabby"] = {cons = 45, vida = 820, offense = 10.5, defense = 9, specialattack = 2.5, vitality = 3, agility = 112, exp = 115, level = 10, wildLvl = 10, type = "water", type2 = "no type"},
["Kingler"] = {cons = 60, vida = 4000, offense = 13, defense = 11.5, specialattack = 5, vitality = 5.5, agility = 139, exp = 206, level = 40, wildLvl = 40, type = "water", type2 = "no type"},
["Voltorb"] = {cons = 30, vida = 1100, offense = 3, defense = 5, specialattack = 5.5, vitality = 4, agility = 106, exp = 103, level = 10, wildLvl = 10, type = "electric", type2 = "no type"},
["Electrode"] = {cons = 50, vida = 4000, offense = 5, defense = 7, specialattack = 8, vitality = 6, agility = 134, exp = 150, level = 35, wildLvl = 35, type = "electric", type2 = "no type"},
["Exeggcute"] = {cons = 25, vida = 800,offense = 4, defense = 8, specialattack = 6, vitality = 6, agility = 101, exp = 98, level = 10, wildLvl = 10, type = "grass", type2 = "psychic"},
["Exeggutor"] = {cons = 130, vida = 7000, offense = 9.5, defense = 8.5, specialattack = 12.5, vitality = 9.5, agility = 125, exp = 212, level = 80, wildLvl = 80, type = "grass", type2 = "psychic"},
["Cubone"] = {cons = 35, vida = 1000, offense = 5, defense = 9.5, specialattack = 4, vitality = 5, agility = 100, exp = 87, level = 20, wildLvl = 20, type = "ground", type2 = "no type"},
["Marowak"] = {cons = 70, vida = 5000, offense = 8, defense = 11, specialattack = 5, vitality = 6, agility = 150, exp = 124, level = 55, wildLvl = 55, type = "ground", type2 = "no type"},
["Hitmonlee"] = {cons = 100, vida = 6500, offense = 9.3, defense = 5.3, specialattack = 3.5, vitality = 5, agility = 152, exp = 139, level = 60, wildLvl = 60, type = "fighting", type2 = "no type"},
["Hitmonchan"] = {cons = 100, vida = 6500, offense = 8.3, defense = 7.9, specialattack = 3.5, vitality = 5, agility = 140, exp = 140, level = 60, wildLvl = 60, type = "fighting", type2 = "no type"},
["Lickitung"] = {cons = 90, vida = 5500, offense = 5.5, defense = 7.5, specialattack = 6, vitality = 9, agility = 100, exp = 127, level = 55, wildLvl = 55, type = "normal", type2 = "no type"},
["Koffing"] = {cons = 50, vida = 1000, offense = 6.5, defense = 9.5, specialattack = 6, vitality = 4, agility = 95, exp = 114, level = 15, wildLvl = 15, type = "poison", type2 = "no type"},
["Weezing"] = {cons = 60, vida = 3500, offense = 9, defense = 12, specialattack = 8.5, vitality = 6.5, agility = 123, exp = 173, level = 35, wildLvl = 35, type = "poison", type2 = "no type"},
["Rhyhorn"] = {cons = 60, vida = 1500, offense = 8.5, defense = 9.5, specialattack = 3, vitality = 8, agility = 100, exp = 135, level = 30, wildLvl = 30, type = "ground", type2 = "rock"},
["Rhydon"] = {cons = 100, vida = 6500, offense = 11, defense = 10, specialattack = 4.5, vitality = 10.5, agility = 127, exp = 204, level = 75, wildLvl = 75, type = "ground", type2 = "rock"},
["Chansey"] = {cons = 100, vida = 7000, offense = 4, defense = 4, specialattack = 5, vitality = 20, agility = 112, exp = 255, level = 60, wildLvl = 60, type = "normal", type2 = "no type"},
["Tangela"] = {cons = 70, vida = 4000, offense = 5.5, defense = 11.5, specialattack = 10, vitality = 6.5, agility = 123, exp = 166, level = 50, wildLvl = 50, type = "grass", type2 = "no type"},
["Kangaskhan"] = {cons = 130, vida = 8000, offense = 9.5, defense = 8, specialattack = 4, vitality = 10.5, agility = 140, exp = 175, level = 80, wildLvl = 80, type = "normal", type2 = "no type"},
["Horsea"] = {cons = 20, vida = 800, offense = 4, defense = 7, specialattack = 7, vitality = 3, agility = 115, exp = 83, level = 10, wildLvl = 10, type = "water", type2 = "no type"},
["Seadra"] = {cons = 75, vida = 3600, offense = 6.5, defense = 9.5, specialattack = 9.5, vitality = 5.5, agility = 150, exp = 155, level = 45, wildLvl = 45, type = "water", type2 = "no type"},
["Goldeen"] = {cons = 30, vida = 830, offense = 6.7, defense = 6, specialattack = 3.5, vitality = 4.5, agility = 115, exp = 111, level = 10, wildLvl = 10, type = "water", type2 = "no type"},
["Seaking"] = {cons = 80, vida = 2800, offense = 9.2, defense = 6.5, specialattack = 6.5, vitality = 8, agility = 135, exp = 170, level = 35, wildLvl = 35, type = "water", type2 = "no type"},
["Staryu"] = {cons = 40, vida = 1300, offense = 4.5, defense = 5.5, specialattack = 7, vitality = 3, agility = 130, exp = 106, level = 15, wildLvl = 15, type = "water", type2 = "no type"},
["Starmie"] = {cons = 100, vida = 4500, offense = 7.5, defense = 8.5, specialattack = 10, vitality = 6, agility = 150, exp = 207, level = 35, wildLvl = 35, type = "water", type2 = "psychic"},
["Mr. Mime"] = {cons = 100, vida = 4300, offense = 4.5, defense = 6.5, specialattack = 10, vitality = 5, agility = 140, exp = 136, level = 45, wildLvl = 45, type = "psychic", type2 = "no type"},
["Scyther"] = {cons = 130, vida = 7000, offense = 7.3, defense = 5.3, specialattack = 3.6, vitality = 10, agility = 235, exp = 261, level = 80, wildLvl = 80, type = "bug", type2 = "fly"},
["Jynx"] = {cons = 130, vida = 7000, offense = 5, defense = 6.5, specialattack = 11.5, vitality = 6.5, agility = 150, exp = 137, level = 75, wildLvl = 75, type = "ice", type2 = "psychic"},
["Electabuzz"] = {cons = 130, vida = 7000, offense = 8.3, defense = 5.7, specialattack = 9.5, vitality = 6.5, agility = 160, exp = 156, level = 80, wildLvl = 80, type = "electric", type2 = "no type"},
["Magmar"] = {cons = 130, vida = 7000, offense = 9.5, defense = 5.7, specialattack = 10, vitality = 6.5, agility = 159, exp = 167, level = 80, wildLvl = 80, type = "fire", type2 = "no type"},
["Pinsir"] = {cons = 70, vida = 4500, offense = 12.5, defense = 10, specialattack = 5.5, vitality = 6.5, agility = 135, exp = 200, level = 45, wildLvl = 45, type = "bug", type2 = "no type"},
["Tauros"] = {cons = 70, vida = 4500, offense = 10, defense = 9.5, specialattack = 4, vitality = 7.5, agility = 155, exp = 211, level = 45, wildLvl = 45, type = "normal", type2 = "no type"},
["Magikarp"] = {cons = 5, vida = 450, offense = 1, defense = 5.5, specialattack = 1.5, vitality = 2, agility = 110, exp = 20, level = 5, wildLvl = 5, type = "water", type2 = "no type"},
["Gyarados"] = {cons = 140, vida = 9000, offense = 12.5, defense = 7.9, specialattack = 6, vitality = 9.5, agility = 140, exp = 214, level = 85, wildLvl = 85, type = "water", type2 = "flying"},
["Lapras"] = {cons = 120, vida = 7000, offense = 8.5, defense = 8, specialattack = 8.5, vitality = 13, agility = 120, exp = 219, level = 80, wildLvl = 80, type = "water", type2 = "ice"},
["Ditto"] = {cons = 60, vida = 4000, offense = 3.2, defense = 3.2, specialattack = 3.2, vitality = 6.8, agility = 120, exp = 100, level = 40, wildLvl = 40, type = "normal", type2 = "no type"},
["Eevee"] = {cons = 60, vida = 2000, offense = 5.5, defense = 5, specialattack = 4.5, vitality = 5.5, agility = 117, exp = 92, level = 20, wildLvl = 20, type = "normal", type2 = "no type"},
["Vaporeon"] = {cons = 80, vida = 5300, offense = 6.5, defense = 6, specialattack = 11, vitality = 13, agility = 128, exp = 196, level = 55, wildLvl = 55, type = "water", type2 = "no type"},
["Jolteon"] = {cons = 80, vida = 5300, offense = 6.5, defense = 6, specialattack = 11, vitality = 6.5, agility = 145, exp = 197, level = 55, wildLvl = 55, type = "electric", type2 = "no type"},
["Flareon"] = {cons = 80, vida = 5300, offense = 13, defense = 6, specialattack = 9.5, vitality = 6.5, agility = 128, exp = 198, level = 55, wildLvl = 55, type = "fire", type2 = "no type"},
["Porygon"] = {cons = 80, vida = 4200, offense = 6, defense = 7, specialattack = 8.5, vitality = 6.5, agility = 115, exp = 130, level = 40, wildLvl = 40, type = "normal", type2 = "no type"},
["Omanyte"] = {cons = 50, vida = 2500, offense = 4, defense = 10, specialattack = 9, vitality = 3.5, agility = 95, exp = 99, level = 20, wildLvl = 20, type = "rock", type2 = "water"},
["Omastar"] = {cons = 140, vida = 6000, offense = 6, defense = 12.5, specialattack = 11.5, vitality = 7, agility = 120, exp = 199, level = 80, wildLvl = 80, type = "rock", type2 = "water"},
["Kabuto"] = {cons = 70, vida = 2500, offense = 8, defense = 9, specialattack = 5.5, vitality = 3, agility = 120, exp = 99, level = 20, wildLvl = 20, type = "rock", type2 = "water"},
["Kabutops"] = {cons = 170, vida = 6000, offense = 11.5, defense = 10.5, specialattack = 6.5, vitality = 6, agility = 140, exp = 199, level = 80, wildLvl = 80, type = "rock", type2 = "water"},
["Aerodactyl"] = {cons = 240, vida = 15000, offense = 10.5, defense = 6.5, specialattack = 6, vitality = 8, agility = 190, exp = 202, level = 100, wildLvl = 100, type = "rock", type2 = "Flying"},
["Snorlax"] = {cons = 150, vida = 9000, offense = 11, defense = 6.5, specialattack = 6.5, vitality = 7.604677, agility = 110, exp = 154, level = 85, wildLvl = 85, type = "normal", type2 = "no type"},
["Articuno"] = {cons = 500, vida = 70000, offense = 8.5, defense = 10, specialattack = 9.5, vitality = 9, agility = 170, exp = 215, level = 150, wildLvl = 150, type = "ice", type2 = "flying"},
["Zapdos"] = {cons = 500, vida = 70000, offense = 9, defense = 8.5, specialattack = 12.5, vitality = 9, agility = 175, exp = 216, level = 150, wildLvl = 150, type = "electric", type2 = "flying"},
["Moltres"] = {cons = 500, vida = 70000, offense = 10, defense = 9, specialattack = 12.5, vitality = 9, agility = 170, exp = 217, level = 150, wildLvl = 150, type = "fire", type2 = "flying"},
["Dratini"] = {cons = 40, vida = 2000, offense = 6.5, defense = 4.5, specialattack = 5, vitality = 4.1, agility = 112, exp = 67, level = 20, wildLvl = 20, type = "dragon", type2 = "no type"},
["Dragonair"] = {cons = 120, vida = 5500, offense = 8.4, defense = 6.5, specialattack = 7, vitality = 6.1, agility = 134, exp = 144, level = 60, wildLvl = 60, type = "dragon", type2 = "no type"},
["Dragonite"] = {cons = 200, vida = 10000, offense = 13.4, defense = 9.5, specialattack = 10, vitality = 9.1, agility = 165, exp = 218, level = 100, wildLvl = 100, type = "dragon", type2 = "flying"},
["Mewtwo"] = {cons = 1000, vida = 400000, offense = 11, defense = 9, specialattack = 15.4, vitality = 15, agility = 150, exp = 220, level = 150, wildLvl = 150, type = "psychic", type2 = "no type"},
["Mew"] = {cons = 1500, vida = 550000, offense = 10, defense = 10, specialattack = 10, vitality = 12, agility = 150, exp = 64, level = 150, wildLvl = 150, type = "psychic", type2 = "no type"},
["Shiny Venusaur"] = {cons = 380, vida = 25500, offense = 9.02, defense = 9.13, specialattack = 11, vitality = 8.8, agility = 133, exp = 228.8, level = 100, wildLvl = 100, type = "grass", type2 = "poison"},
["Shiny Charizard"] = {cons = 280, vida = 25500, offense = 9.35, defense = 8.58, specialattack = 12.1, vitality = 8.58, agility = 133, exp = 229.9, level = 100, wildLvl = 100, type = "fire", type2 = "flying"},
["Shiny Blastoise"] = {cons = 390, vida = 16000, offense = 9.13, defense = 11, specialattack = 9.35, vitality = 8.69, agility = 133, exp = 231, level = 100, wildLvl = 100, type = "water", type2 = "no type"},
["Shiny Butterfree"] = {cons = 130, vida = 9000, offense = 4.95, defense = 5.5, specialattack = 8.8, vitality = 6.6, agility = 133, exp = 176, level = 60, wildLvl = 60, type = "bug", type2 = "flying"},
["Shiny Beedrill"] = {cons = 120, vida = 9000, offense = 8.8, defense = 4.4, specialattack = 4.95, vitality = 7.15, agility = 133, exp = 154.9, level = 60, wildLvl = 60, type = "bug", type2 = "poison"},
["Shiny Pidgeot"] = {cons = 200, vida = 18000, offense = 8.8, defense = 8.25, specialattack = 7.7, vitality = 9.13, agility = 163, exp = 189.2, level = 100, wildLvl = 100, type = "normal", type2 = "flying"},
["Shiny Rattata"] = {cons = 20, vida = 1200, offense = 6.16, defense = 3.85, specialattack = 2.75, vitality = 3.3, agility = 111, exp = 62.7, level = 10, wildLvl = 10, type = "normal", type2 = "no type"},
["Shiny Raticate"] = {cons = 140, vida = 5100, offense = 8.91, defense = 6.6, specialattack = 5.5, vitality = 6.05, agility = 122, exp = 127.6, level = 35, wildLvl = 35, type = "normal", type2 = "no type"},
["Shiny Fearow"] = {cons = 160, vida = 12000, offense = 9.9, defense = 7.15, specialattack = 6.71, vitality = 7.15, agility = 122, exp = 178.2, level = 100, wildLvl = 100, type = "normal", type2 = "flying"},
["Shiny Raichu"] = {cons = 200, vida = 21000, offense = 9.9, defense = 6.05, specialattack = 9.9, vitality = 6.6, agility = 133, exp = 134.2, level = 100, wildLvl = 100, type = "electric", type2 = "no type"},
["Shiny Nidoking"] = {cons = 180, vida = 20100, offense = 10.12, defense = 8.47, specialattack = 9.35, vitality = 8.91, agility = 133, exp = 214.5, level = 100, wildLvl = 100, type = "poison", type2 = "ground"},
["Shiny Zubat"] = {cons = 30, vida = 2400, offense = 4.95, defense = 3.85, specialattack = 3.3, vitality = 4.4, agility = 111, exp = 59.4, level = 10, wildLvl = 10, type = "poison", type2 = "flying"},
["Shiny Golbat"] = {cons = 100, vida = 9000, offense = 8.8, defense = 7.7, specialattack = 7.15, vitality = 8.25, agility = 122, exp = 188.1, level = 60, wildLvl = 60, type = "poison", type2 = "flying"},
["Shiny Oddish"] = {cons = 30, vida = 2400, offense = 5.5, defense = 6.05, specialattack = 8.25, vitality = 4.95, agility = 111, exp = 85.8, level = 10, wildLvl = 10, type = "grass", type2 = "poison"},
["Shiny Vileplume"] = {cons = 180, vida = 13500, offense = 8.8, defense = 9.35, specialattack = 11, vitality = 8.25, agility = 133, exp = 202.4, level = 100, wildLvl = 100, type = "grass", type2 = "poison"},
["Shiny Paras"] = {cons = 220, vida = 12000, offense = 7.7, defense = 6.05, specialattack = 4.95, vitality = 3.85, agility = 111, exp = 77, level = 10, wildLvl = 10, type = "bug", type2 = "grass"},
["Shiny Parasect"] = {cons = 220, vida = 12000, offense = 10.45, defense = 8.8, specialattack = 6.6, vitality = 6.6, agility = 122, exp = 140.8, level = 60, wildLvl = 60, type = "bug", type2 = "grass"},
["Shiny Venonat"] = {cons = 100, vida = 3900, offense = 6.05, defense = 5.5, specialattack = 4.4, vitality = 6.6, agility = 111, exp = 82.5, level = 30, wildLvl = 30, type = "bug", type2 = "poison"},
["Shiny Venomoth"] = {cons = 160, vida = 13500, offense = 7.15, defense = 6.6, specialattack = 9.9, vitality = 7.15, agility = 162, exp = 151.8, level = 100, wildLvl = 100, type = "bug", type2 = "poison"},
["Shiny Growlithe"] = {cons = 120, vida = 4200, offense = 7.7, defense = 4.95, specialattack = 7.7, vitality = 6.05, agility = 111, exp = 100.1, level = 35, wildLvl = 35, type = "fire", type2 = "no type"},
["Shiny Arcanine"] = {cons = 260, vida = 24000, offense = 12.1, defense = 8.8, specialattack = 11, vitality = 9.9, agility = 182, exp = 234.3, level = 100, wildLvl = 100, type = "fire", type2 = "no type"},
["Dark Abra"] = {cons = 190, vida = 21600, offense = 7.2, defense = 6.65, specialattack = 11.55, vitality = 6.75, agility = 121, exp = 82.5, level = 80, wildLvl = 80, type = "psychic", type2 = "ghost"},
["Light Abra"] = {cons = 190, vida = 21600, offense = 7.2, defense = 6.65, specialattack = 11.55, vitality = 6.75, agility = 121, exp = 82.5, level = 80, wildLvl = 80, type = "psychic", type2 = "ghost"},
["Shiny Alakazam"] = {cons = 190, vida = 21600, offense = 6.05, defense = 4.95, specialattack = 14.85, vitality = 6.05, agility = 122, exp = 204.6, level = 100, wildLvl = 100, type = "psychic", type2 = "no type"},
["Shiny Tentacool"] = {cons = 100, vida = 3000, offense = 4.4, defense = 3.85, specialattack = 5.5, vitality = 4.4, agility = 111, exp = 115.5, level = 25, wildLvl = 25, type = "water", type2 = "poison"},
["Shiny Tentacruel"] = {cons = 240, vida = 19500, offense = 7.7, defense = 7.15, specialattack = 8.8, vitality = 8.8, agility = 122, exp = 225.5, level = 100, wildLvl = 100, type = "water", type2 = "poison"},
["Shiny Golem"] = {cons = 240, vida = 24000, offense = 12.1, defense = 14.3, specialattack = 6.05, vitality = 8.8, agility = 133, exp = 194.7, level = 100, wildLvl = 100, type = "rock", type2 = "ground"},
["Elite Farfetchd"] = {cons = 160, vida = 12600, offense = 7.15, defense = 6.05, specialattack = 6.38, vitality = 5.72, agility = 175, exp = 103.4, level = 100, wildLvl = 100, type = "normal", type2 = "flying"},
["Shiny Grimer"] = {cons = 60, vida = 3000, offense = 8.8, defense = 5.5, specialattack = 4.4, vitality = 8.8, agility = 111, exp = 99, level = 25, wildLvl = 25, type = "poison", type2 = "no type"},
["Shiny Muk"] = {cons = 260, vida = 21000, offense = 11.55, defense = 8.25, specialattack = 7.15, vitality = 11.55, agility = 122, exp = 172.7, level = 100, wildLvl = 100, type = "poison", type2 = "no type"},
["Shiny Gengar"] = {cons = 270, vida = 21600, offense = 7.15, defense = 6.6, specialattack = 14.3, vitality = 6.6, agility = 133, exp = 209, level = 100, wildLvl = 100, type = "ghost", type2 = "poison"},
["Crystal Onix"] = {cons = 260, vida = 16500, offense = 7.95, defense = 17.6, specialattack = 9.3, vitality = 6.85, agility = 122, exp = 118.8, level = 100, wildLvl = 100, type = "rock", type2 = "ground"},
["Shiny Hypno"] = {cons = 160, vida = 12600, offense = 8.03, defense = 7.7, specialattack = 9.03, vitality = 9.35, agility = 122, exp = 181.5, level = 100, wildLvl = 100, type = "psychic", type2 = "no type"},
["Shiny Krabby"] = {cons = 90, vida = 2460, offense = 11.55, defense = 9.9, specialattack = 2.75, vitality = 3.3, agility = 111, exp = 126.5, level = 15, wildLvl = 15, type = "water", type2 = "no type"},
["Shiny Kingler"] = {cons = 120, vida = 12000, offense = 14.3, defense = 12.65, specialattack = 5.5, vitality = 6.05, agility = 122, exp = 226.6, level = 50, wildLvl = 50, type = "water", type2 = "no type"},
["Shiny Voltorb"] = {cons = 60, vida = 3300, offense = 3.3, defense = 5.5, specialattack = 6.05, vitality = 4.4, agility = 111, exp = 113.3, level = 25, wildLvl = 25, type = "electric", type2 = "no type"},
["Shiny Electrode"] = {cons = 100, vida = 12000, offense = 5.5, defense = 7.7, specialattack = 8.8, vitality = 6.6, agility = 122, exp = 165, level = 80, wildLvl = 80, type = "electric", type2 = "no type"},
["Shiny Cubone"] = {cons = 70, vida = 3000, offense = 5.5, defense = 10.45, specialattack = 4.4, vitality = 5.5, agility = 111, exp = 95.7, level = 30, wildLvl = 30, type = "ground", type2 = "no type"},
["Shiny Marowak"] = {cons = 140, vida = 15000, offense = 8.8, defense = 12.1, specialattack = 5.5, vitality = 6.6, agility = 122, exp = 136.4, level = 100, wildLvl = 100, type = "ground", type2 = "no type"},
["Elite Hitmonlee"] = {cons = 200, vida = 19500, offense = 13.2, defense = 10.83, specialattack = 3.85, vitality = 7.5, agility = 159, exp = 152.9, level = 100, wildLvl = 100, type = "fighting", type2 = "no type"},
["Elite Hitmonchan"] = {cons = 200, vida = 19500, offense = 11.55, defense = 8.69, specialattack = 3.85, vitality = 7.5, agility = 133, exp = 154, level = 100, wildLvl = 100, type = "fighting", type2 = "no type"},
["Shiny Tangela"] = {cons = 140, vida = 12000, offense = 6.05, defense = 12.65, specialattack = 11, vitality = 7.15, agility = 141, exp = 182.6, level = 100, wildLvl = 100, type = "grass", type2 = "no type"},
["Shiny Horsea"] = {cons = 40, vida = 2400, offense = 4.4, defense = 7.7, specialattack = 7.7, vitality = 3.3, agility = 111, exp = 91.3, level = 15, wildLvl = 15, type = "water", type2 = "no type"},
["Shiny Seadra"] = {cons = 150, vida = 10800, offense = 7.15, defense = 10.45, specialattack = 10.45, vitality = 6.05, agility = 122, exp = 170.5, level = 60, wildLvl = 60, type = "water", type2 = "no type"},
["Shiny Scyther"] = {cons = 260, vida = 21000, offense = 12.1, defense = 8.8, specialattack = 6.05, vitality = 7.7, agility = 133, exp = 205.7, level = 100, wildLvl = 100, type = "bug", type2 = "flying"},
["Shiny Jynx"] = {cons = 260, vida = 21000, offense = 5.5, defense = 7, specialattack = 12.65, vitality = 7.15, agility = 133, exp = 150.7, level = 100, wildLvl = 100, type = "ice", type2 = "psychic"},
["Shiny Electabuzz"] = {cons = 260, vida = 21000, offense = 9.13, defense = 6.27, specialattack = 10.45, vitality = 7.15, agility = 133, exp = 171.6, level = 100, wildLvl = 100, type = "electric", type2 = "no type"},
["Shiny Pinsir"] = {cons = 140, vida = 13500, offense = 13.75, defense = 11, specialattack = 6.05, vitality = 7.15, agility = 133, exp = 220, level = 100, wildLvl = 100, type = "bug", type2 = "no type"},
["Shiny Magikarp"] = {cons = 10, vida = 1350, offense = 1.1, defense = 6.05, specialattack = 1.65, vitality = 2.2, agility = 111, exp = 22, level = 10, wildLvl = 10, type = "water", type2 = "no type"},
["Red Gyarados"] = {cons = 380, vida = 27000, offense = 13.75, defense = 8.69, specialattack = 6.6, vitality = 10.45, agility = 133, exp = 235.4, level = 120, wildLvl = 120, type = "water", type2 = "flying"},
["Shiny Vaporeon"] = {cons = 160, vida = 15900, offense = 7.15, defense = 6.6, specialattack = 12.1, vitality = 14.3, agility = 133, exp = 215.6, level = 100, wildLvl = 100, type = "water", type2 = "no type"},
["Shiny Jolteon"] = {cons = 160, vida = 15900, offense = 7.15, defense = 6.6, specialattack = 12.1, vitality = 7.15, agility = 133, exp = 216.7, level = 100, wildLvl = 100, type = "electric", type2 = "no type"},
["Shiny Flareon"] = {cons = 160, vida = 15900, offense = 14.3, defense = 6.6, specialattack = 10.45, vitality = 7.15, agility = 133, exp = 217.8, level = 100, wildLvl = 100, type = "fire", type2 = "no type"},
["Big Snorlax"] = {cons = 300, vida = 27000, offense = 12.1, defense = 7.15, specialattack = 7.15, vitality = 17.6, agility = 133, exp = 169.4, level = 120, wildLvl = 120, type = "normal", type2 = "no type"},
["Shiny Dratini"] = {cons = 80, vida = 6000, offense = 7.15, defense = 4.95, specialattack = 5.5, vitality = 4.51, agility = 111, exp = 73.7, level = 25, wildLvl = 25, type = "dragon", type2 = "no type"},
["Shiny Dragonair"] = {cons = 240, vida = 16500, offense = 9.24, defense = 7.15, specialattack = 7.7, vitality = 6.71, agility = 122, exp = 158.4, level = 100, wildLvl = 100, type = "dragon", type2 = "no type"},
["Chikorita"] = {offense = 4.9, vida = 1500 , defense = 6.5, specialattack = 4.9, vitality = 4.5, agility = 106, exp = 64, level = 20, wildLvl = 20, type = "grass", type2 = "no type"},
["Bayleef"] = {offense = 6.2, vida = 4350 , defense = 8, specialattack = 6.3, vitality = 6, agility = 123, exp = 141, level = 40, wildLvl = 40, type = "grass", type2 = "no type"},
["Meganium"] = {offense = 8.2, vida = 8500 , defense = 10, specialattack = 8.3, vitality = 8, agility = 145, exp = 208, level = 85, wildLvl = 85, type = "grass", type2 = "no type"},
["Cyndaquil"] = {offense = 5, vida = 1500 , defense = 4.3, specialattack = 6, vitality = 4, agility = 128, exp = 65, level = 20, wildLvl = 20, type = "fire", type2 = "no type"},
["Quilava"] = {offense = 6.4, vida = 4350 , defense = 5.8, specialattack = 8.5, vitality = 6, agility = 145, exp = 142, level = 40, wildLvl = 40, type = "fire", type2 = "no type"},
["Typhlosion"] = {offense = 8.4, vida = 8500 , defense = 7.8, specialattack = 11, vitality = 8, agility = 167, exp = 209, level = 85, wildLvl = 85, type = "fire", type2 = "no type"},
["Totodile"] = {offense = 6.5, vida = 1500 , defense = 6.4, specialattack = 4.4, vitality = 5, agility = 104, exp = 66, level = 20, wildLvl = 20, type = "water", type2 = "no type"},
["Croconaw"] = {offense = 8, vida = 4350 , defense = 8, specialattack = 5.9, vitality = 6.5, agility = 121, exp = 141, level = 40, wildLvl = 40, type = "water", type2 = "no type"},
["Feraligatr"] = {offense = 10.5, vida = 8500 , defense = 10, specialattack = 7.9, vitality = 8.5, agility = 143, exp = 142, level = 85, wildLvl = 85, type = "water", type2 = "no type"},
["Sentret"] = {offense = 4.6, vida = 1200 , defense = 3.4, specialattack = 3.5, vitality = 3.5, agility = 105, exp = 57, level = 15, wildLvl = 15, type = "normal", type2 = "no type"},
["Furret"] = {offense = 7.6, vida = 4000 , defense = 6.4, specialattack = 4.5, vitality = 8.5, agility = 156, exp = 116, level = 35, wildLvl = 35, type = "normal", type2 = "no type"},
["Hoothoot"] = {offense = 3, vida = 1500 , defense = 3, specialattack = 3.6, vitality = 6, agility = 112, exp = 58, level = 20, wildLvl = 20, type = "normal", type2 = "flying"},
["Noctowl"] = {offense = 5, vida = 4000 , defense = 5, specialattack = 7.6, vitality = 10, agility = 134, exp = 162, level = 65, wildLvl = 65, type = "normal", type2 = "flying"},
["Ledyba"] = {offense = 2, vida = 1000 , defense = 3, specialattack = 4, vitality = 4, agility = 117, exp = 54, level = 15, wildLvl = 15, type = "bug", type2 = "flying"},
["Ledian"] = {offense = 3.5, vida = 4000 , defense = 5, specialattack = 5.5, vitality = 5.5, agility = 150, exp = 134, level = 35, wildLvl = 35, type = "bug", type2 = "flying"},
["Spinarak"] = {offense = 6, vida = 600 , defense = 4, specialattack = 4, vitality = 4, agility = 100, exp = 54, level = 10, wildLvl = 10, type = "bug", type2 = "poison"},
["Ariados"] = {offense = 9, vida = 4000 , defense = 7, specialattack = 6, vitality = 7, agility = 120, exp = 134, level = 35, wildLvl = 35, type = "bug", type2 = "poison"},
["Crobat"] = {offense = 9, vida = 7500 , defense = 8, specialattack = 7, vitality = 8.5, agility = 170, exp = 204, level = 80, wildLvl = 80, type = "poison", type2 = "flying"},
["Chinchou"] = {offense = 3.8, vida = 1500 , defense = 3.8, specialattack = 5.6, vitality = 7.5, agility = 130, exp = 90, level = 15, wildLvl = 15, type = "water", type2 = "electric"},
["Lanturn"] = {offense = 5.8, vida = 4000 , defense = 5.8, specialattack = 7.6, vitality = 12.5, agility = 145, exp = 156, level = 50, wildLvl = 50, type = "water", type2 = "electric"},
["Pichu"] = {offense = 4, vida = 1500 , defense = 1.5, specialattack = 3.5, vitality = 2, agility = 123, exp = 42, level = 20, wildLvl = 20, type = "electric", type2 = "no type"},
["Cleffa"] = {offense = 2.5, vida = 1000 , defense = 2.8, specialattack = 4.5, vitality = 5, agility = 95, exp = 37, level = 20, wildLvl = 20, type = "normal", type2 = "no type"},
--["Igglybuff"] = {offense = 3, vida = 16500 , defense = 1.5, specialattack = 4, vitality = 9, agility = 95, exp = 39, level = 20, wildLvl = 20, type = "normal", type2 = "no type"},
["Togepi"] = {offense = 2, vida = 2000 , defense = 6.5, specialattack = 4, vitality = 3.5, agility = 80, exp = 74, level = 5, wildLvl = 5, type = "normal", type2 = "no type"},
["Togetic"] = {offense = 4, vida = 5500 , defense = 8.5, specialattack = 8, vitality = 5.5, agility = 115, exp = 114, level = 60, wildLvl = 60, type = "normal", type2 = "flying"},
["Natu"] = {offense = 5, vida = 1300 , defense = 4.5, specialattack = 7, vitality = 4, agility = 134, exp = 73, level = 25, wildLvl = 25, type = "psychic", type2 = "flying"},
["Xatu"] = {offense = 7.5, vida = 4300 , defense = 7, specialattack = 9.5, vitality = 6.5, agility = 161, exp = 171, level = 75, wildLvl = 75, type = "psychic", type2 = "flying"},
["Mareep"] = {offense = 4, vida = 1500 , defense = 4, specialattack = 6.5, vitality = 5.5, agility = 95, exp = 59, level = 20, wildLvl = 20, type = "electric", type2 = "no type"},
["Flaaffy"] = {offense = 5.5, vida = 4050 , defense = 5.5, specialattack = 8, vitality = 7, agility = 110, exp = 117, level = 40, wildLvl = 40, type = "electric", type2 = "no type"},
["Ampharos"] = {offense = 7.5, vida = 8500 , defense = 7.5, specialattack = 11.5, vitality = 9, agility = 130, exp = 194, level = 85, wildLvl = 85, type = "electric", type2 = "no type"},
["Bellossom"] = {offense = 8, vida = 3000 , defense = 8.5, specialattack = 9, vitality = 7.5, agility = 112, exp = 184, level = 50, wildLvl = 50, type = "grass", type2 = "no type"},
["Marill"] = {offense = 2, vida = 1000 , defense = 5, specialattack = 2, vitality = 7, agility = 101, exp = 58, level = 20, wildLvl = 20, type = "water", type2 = "no type"},
["Azumarill"] = {offense = 5, vida = 4000 , defense = 8, specialattack = 5, vitality = 10, agility = 120, exp = 153, level = 65, wildLvl = 65, type = "water", type2 = "no type"},
["Sudowoodo"] = {offense = 10, vida = 5500 , defense = 11.5, specialattack = 3, vitality = 7, agility = 110, exp = 135, level = 80, wildLvl = 80, type = "rock", type2 = "no type"},
["Politoed"] = {offense = 7.5, vida = 5000 , defense = 7.5, specialattack = 9, vitality = 9, agility = 134, exp = 185, level = 65, wildLvl = 65, type = "water", type2 = "no type"},
["Hoppip"] = {offense = 3.5, vida = 800 , defense = 4, specialattack = 3.5, vitality = 3.5, agility = 112, exp = 74, level = 5, wildLvl = 5, type = "grass", type2 = "flying"},
["Skiploom"] = {offense = 4.5, vida = 2000 , defense = 5, specialattack = 4.5, vitality = 5.5, agility = 135, exp = 136, level = 25, wildLvl = 25, type = "grass", type2 = "flying"},
["Jumpluff"] = {offense = 5.5, vida = 4000 , defense = 7, specialattack = 5.5, vitality = 7.5, agility = 150, exp = 176, level = 50, wildLvl = 50, type = "grass", type2 = "flying"},
["Aipom"] = {offense = 7, vida = 2000 , defense = 5.5, specialattack = 4, vitality = 5.5, agility = 140, exp = 94, level = 40, wildLvl = 40, type = "normal", type2 = "no type"},
["Sunkern"] = {offense = 3, vida = 600 , defense = 3, specialattack = 3.5, vitality = 3, agility = 100, exp = 52, level = 5, wildLvl = 5, type = "grass", type2 = "no type"},
["Sunflora"] = {offense = 7.5, vida = 2800 , defense = 5.5, specialattack = 10.5, vitality = 7.5, agility = 100, exp = 146, level = 30, wildLvl = 30, type = "grass", type2 = "no type"},
["Yanma"] = {offense = 6.5, vida = 4400 , defense = 4.5, specialattack = 7.5, vitality = 6.5, agility = 150, exp = 147, level = 50, wildLvl = 50, type = "bug", type2 = "flying"},
["Wooper"] = {offense = 4.5, vida = 1200 , defense = 4.5, specialattack = 2.5, vitality = 5.5, agility = 95, exp = 52, level = 20, wildLvl = 20, type = "water", type2 = "ground"},
["Quagsire"] = {offense = 8.5, vida = 4000 , defense = 8.5, specialattack = 6.5, vitality = 9.5, agility = 105, exp = 137, level = 65, wildLvl = 65, type = "water", type2 = "ground"},
["Espeon"] = {offense = 6.5, vida = 5300 , defense = 6, specialattack = 13, vitality = 6.5, agility = 155, exp = 197, level = 55, wildLvl = 55, type = "psychic", type2 = "no type"},
["Umbreon"] = {offense = 6.5, vida = 5300 , defense = 11, specialattack = 6, vitality = 9.5, agility = 145, exp = 197, level = 55, wildLvl = 55, type = "dark", type2 = "no type"},
["Murkrow"] = {offense = 8.5, vida = 5000 , defense = 4.2, specialattack = 8.5, vitality = 6, agility = 145, exp = 107, level = 55, wildLvl = 55, type = "dark", type2 = "flying"},
["Slowking"] = {offense = 7.5, vida = 9000 , defense = 8, specialattack = 10, vitality = 9.5, agility = 125, exp = 164, level = 100, wildLvl = 100, type = "water", type2 = "psychic"},
["Misdreavus"] = {offense = 6, vida = 6500 , defense = 6, specialattack = 8.5, vitality = 6, agility = 135, exp = 147, level = 80, wildLvl = 80, type = "ghost", type2 = "no type"},
["Unown"] = {offense = 7.2, vida = 9000 , defense = 4.8, specialattack = 7.2, vitality = 4.8, agility = 110, exp = 61, level = 100, wildLvl = 100, type = "psychic", type2 = "no type"},
["Wobbuffet"] = {offense = 3.3, vida = 10000 , defense = 5.8, specialattack = 3.3, vitality = 11, agility = 130, exp = 177, level = 80, wildLvl = 80, type = "psychic", type2 = "no type"},
["Girafarig"] = {offense = 8, vida = 5500 , defense = 6.5, specialattack = 9, vitality = 7, agility = 150, exp = 149, level = 80, wildLvl = 80, type = "normal", type2 = "psychic"},
["Pineco"] = {offense = 6.5, vida = 1300 , defense = 9, specialattack = 3.5, vitality = 5, agility = 95, exp = 60, level = 15, wildLvl = 15, type = "bug", type2 = "no type"},
["Forretress"] = {offense = 9, vida = 4000 , defense = 14, specialattack = 6, vitality = 7.5, agility = 110, exp = 118, level = 65, wildLvl = 65, type = "bug", type2 = "steel"},
["Dunsparce"] = {offense = 7, vida = 1600 , defense = 7, specialattack = 6.5, vitality = 10, agility = 106, exp = 125, level = 30, wildLvl = 30, type = "normal", type2 = "no type"},
["Gligar"] = {offense = 7.5, vida = 3000 , defense = 10.5, specialattack = 3.5, vitality = 6.5, agility = 135, exp = 108, level = 40, wildLvl = 40, type = "ground", type2 = "flying"},
["Steelix"] = {offense = 8.5, vida = 10000 , defense = 20, specialattack = 5.5, vitality = 7.5, agility = 130, exp = 196, level = 100, wildLvl = 100, type = "steel", type2 = "ground"},
["Snubbull"] = {offense = 8, vida = 1000 , defense = 5, specialattack = 4, vitality = 6, agility = 100, exp = 63, level = 30, wildLvl = 30, type = "normal", type2 = "no type"},
["Granbull"] = {offense = 12, vida = 4000 , defense = 7.5, specialattack = 6, vitality = 9, agility = 110, exp = 178, level = 65, wildLvl = 65, type = "normal", type2 = "no type"},
["Qwilfish"] = {offense = 9.5, vida = 3000 , defense = 8.5, specialattack = 5.5, vitality = 6.5, agility = 135, exp = 100, level = 55, wildLvl = 55, type = "water", type2 = "poison"},
["Scizor"] = {offense = 13, vida = 10000 , defense = 10, specialattack = 5.5, vitality = 7, agility = 210, exp = 200, level = 100, wildLvl = 100, type = "bug", type2 = "steel"},
["Shuckle"] = {offense = 4.3, vida = 5000 , defense = 23, specialattack = 4.3, vitality = 4.3, agility = 95, exp = 80, level = 30, wildLvl = 30, type = "bug", type2 = "rock"},
["Heracross"] = {offense = 12.5, vida = 4500 , defense = 7.5, specialattack = 4, vitality = 8, agility = 135, exp = 200, level = 80, wildLvl = 80, type = "bug", type2 = "fighting"},
["Sneasel"] = {offense = 9.5, vida = 5000 , defense = 5.5, specialattack = 5.5, vitality = 5.5, agility = 160, exp = 132, level = 55, wildLvl = 55, type = "dark", type2 = "ice"},
["Teddiursa"] = {offense = 8, vida = 2000 , defense = 5, specialattack = 5, vitality = 6, agility = 110, exp = 124, level = 20, wildLvl = 20, type = "normal", type2 = "no type"},
["Ursaring"] = {offense = 13, vida = 6000 , defense = 7.5, specialattack = 7.5, vitality = 9, agility = 120, exp = 189, level = 90, wildLvl = 90, type = "normal", type2 = "no type"},
["Slugma"] = {offense = 4, vida = 1200 , defense = 4, specialattack = 7, vitality = 4, agility = 95, exp = 38, level = 15, wildLvl = 15, type = "fire", type2 = "no type"},
["Magcargo"] = {offense = 5, vida = 4100 , defense = 12, specialattack = 8, vitality = 5, agility = 110, exp = 154, level = 60, wildLvl = 60, type = "fire", type2 = "rock"},
["Swinub"] = {offense = 5, vida = 1200 , defense = 4, specialattack = 3, vitality = 5, agility = 112, exp = 78, level = 15, wildLvl = 15, type = "ice", type2 = "ground"},
["Piloswine"] = {offense = 10, vida = 4100 , defense = 8, specialattack = 6, vitality = 10, agility = 125, exp = 160, level = 80, wildLvl = 80, type = "ice", type2 = "ground"},
["Corsola"] = {offense = 5.5, vida = 4000 , defense = 8.5, specialattack = 6.5, vitality = 5.5, agility = 95, exp = 113, level = 50, wildLvl = 50, type = "water", type2 = "rock"},
["Remoraid"] = {offense = 6.5, vida = 1000 , defense = 3.5, specialattack = 6.5, vitality = 3.5, agility = 120, exp = 78, level = 10, wildLvl = 10, type = "water", type2 = "no type"},
["Octillery"] = {offense = 10.5, vida = 4000 , defense = 7.5, specialattack = 10.5, vitality = 7.5, agility = 115, exp = 164, level = 70, wildLvl = 70, type = "water", type2 = "no type"},
["Delibird"] = {offense = 5.5, vida = 4500 , defense = 4.5, specialattack = 6.5, vitality = 4.5, agility = 130, exp = 183, level = 40, wildLvl = 40, type = "ice", type2 = "flying"},
["Mantine"] = {offense = 4, vida = 5300 , defense = 7, specialattack = 8, vitality = 6.5, agility = 130, exp = 168, level = 80, wildLvl = 80, type = "water", type2 = "flying"},
["Skarmory"] = {offense = 8, vida = 6000 , defense = 14, specialattack = 4, vitality = 6.5, agility = 169, exp = 168, level = 85, wildLvl = 85, type = "steel", type2 = "flying"},
["Houndour"] = {offense = 6, vida = 1500 , defense = 3, specialattack = 8, vitality = 4.5, agility = 128, exp = 114, level = 20, wildLvl = 20, type = "dark", type2 = "fire"},
["Houndoom"] = {offense = 9, vida = 4300 , defense = 5, specialattack = 11, vitality = 7.5, agility = 161, exp = 204, level = 80, wildLvl = 80, type = "dark", type2 = "fire"},
["Kingdra"] = {offense = 9.5, vida = 8000 , defense = 9.5, specialattack = 9.5, vitality = 7.5, agility = 150, exp = 207, level = 90, wildLvl = 90, type = "water", type2 = "dragon"},
["Phanpy"] = {offense = 6, vida = 1300 , defense = 6, specialattack = 4, vitality = 9, agility = 101, exp = 124, level = 20, wildLvl = 20, type = "ground", type2 = "no type"},
["Donphan"] = {offense = 12, vida = 4100 , defense = 12, specialattack = 6, vitality = 9, agility = 112, exp = 189, level = 80, wildLvl = 80, type = "ground", type2 = "no type"},
["Porygon2"] = {offense = 8, vida = 6000 , defense = 9, specialattack = 10.5, vitality = 8.5, agility = 123, exp = 180, level = 75, wildLvl = 75, type = "normal", type2 = "no type"},
["Stantler"] = {offense = 9.5, vida = 5000 , defense = 6.2, specialattack = 8.5, vitality = 7.3, agility = 145, exp = 165, level = 55, wildLvl = 55, type = "normal", type2 = "no type"},
["Smeargle"] = {offense = 2, vida = 8000 , defense = 3.5, specialattack = 2, vitality = 5.5, agility = 135, exp = 106, level = 80, wildLvl = 80, type = "normal", type2 = "no type"},
["Tyrogue"] = {offense = 3.5, vida = 2500 , defense = 3.5, specialattack = 3.5, vitality = 3.5, agility = 120, exp = 91, level = 30, wildLvl = 30, type = "fighting", type2 = "no type"},
["Hitmontop"] = {offense = 9, vida = 5500 , defense = 9.5, specialattack = 3.5, vitality = 5, agility = 135, exp = 138, level = 60, wildLvl = 60, type = "fighting", type2 = "no type"},
["Smoochum"] = {offense = 3, vida = 2300 , defense = 1.5, specialattack = 8.5, vitality = 4.5, agility = 128, exp = 87, level = 30, wildLvl = 30, type = "ice", type2 = "psychic"},
["Elekid"] = {offense = 6.3, vida = 2300 , defense = 3.7, specialattack = 6.5, vitality = 4.5, agility = 140, exp = 106, level = 30, wildLvl = 30, type = "electric", type2 = "no type"},
["Magby"] = {offense = 7.5, vida = 2300 , defense = 3.7, specialattack = 7, vitality = 4.5, agility = 140, exp = 117, level = 30, wildLvl = 30, type = "fire", type2 = "no type"},
["Miltank"] = {offense = 8, vida = 5600 , defense = 10.5, specialattack = 7, vitality = 9.5, agility = 167, exp = 200, level = 80, wildLvl = 80, type = "normal", type2 = "no type"},
["Blissey"] = {offense = 1, vida = 10000 , defense = 1, specialattack = 7.5, vitality = 25.5, agility = 117, exp = 255, level = 100, wildLvl = 100, type = "normal", type2 = "no type"},
["Raikou"] = {offense = 8.5, vida = 100000 , defense = 7.5, specialattack = 11.5, vitality = 9, agility = 180, exp = 216, level = 150, wildLvl = 150, type = "electric", type2 = "no type"},
["Entei"] = {offense = 11.5, vida = 100000 , defense = 8.5, specialattack = 9, vitality = 11.5, agility = 180, exp = 217, level = 150, wildLvl = 150, type = "fire", type2 = "no type"},
["Suicune"] = {offense = 7.5, vida = 100000 , defense = 11.5, specialattack = 9, vitality = 10, agility = 180, exp = 218, level = 150, wildLvl = 150, type = "water", type2 = "no type"},
["Larvitar"] = {offense = 6.4, vida = 2500 , defense = 5, specialattack = 4.5, vitality = 5, agility = 110, exp = 67, level = 20, wildLvl = 20, type = "rock", type2 = "ground"},
["Pupitar"] = {offense = 8.4, vida = 4500 , defense = 7, specialattack = 6.5, vitality = 7, agility = 120, exp = 144, level = 65, wildLvl = 65, type = "rock", type2 = "ground"},
["Tyranitar"] = {offense = 13.4, vida = 9000 , defense = 11, specialattack = 9.5, vitality = 10, agility = 135, exp = 218, level = 100, wildLvl = 100, type = "rock", type2 = "dark"},
["Lugia"] = {offense = 9, vida = 165000 , defense = 13, specialattack = 9, vitality = 10.6, agility = 170, exp = 220, level = 150, wildLvl = 150, type = "psychic", type2 = "flying"},
["Ho-oh"] = {offense = 13, vida = 500000 , defense = 9, specialattack = 11, vitality = 10.6, agility = 170, exp = 220, level = 150, wildLvl = 150, type = "fire", type2 = "flying"},
["Celebi"] = {offense = 10, vida = 550000 , defense = 10, specialattack = 10, vitality = 10, agility = 170, exp = 64, level = 150, wildLvl = 150, type = "psychic", type2 = "grass"},
["Shiny MrMime"] = {cons = 200, vida = 12900, offense = 4.5, vida = 16500 , defense = 7.5, specialattack = 12, vitality = 7, agility = 190, exp = 136, level = 80, wildLvl = 80, type = "psychic", type2 = "no type"},
["Shiny Rhydon"] = {cons = 200, vida = 19500, offense = 11, vida = 16500 , defense = 10, specialattack = 4.5, vitality = 10.5, agility = 127, exp = 204, level = 75, wildLvl = 75, type = "ground", type2 = "rock"},
["Shiny Ninetales"] = {cons = 140, vida = 18000, offense = 7.6, vida = 16500 , defense = 7.5, specialattack = 8.1, vitality = 7.3, agility = 167, exp = 178, level = 70, wildLvl = 70, type = "fire", type2 = "no type"},
["Shiny Magneton"] = {cons = 200, vida = 13500, offense = 6, vida = 16500 , defense = 9.5, specialattack = 12, vitality = 5, agility = 134, exp = 161, level = 40, wildLvl = 40, type = "electric", type2 = "steel"},
["Shiny Dodrio"] = {cons = 160, vida = 12000, offense = 11, vida = 16500 , defense = 7, specialattack = 6, vitality = 6, agility = 167, exp = 158, level = 45, wildLvl = 45, type = "normal", type2 = "flying"},
}
local msgunica = true
local msgunicago1, msgunicaback1 = "Go, doka!", "Come back, doka!"
local msgunicago2, msgunicaback2 = "Let's do it, doka!", "Thanks for helping, doka!"
local msgunicago3, msgunicaback3 = "I choose you, doka!", "That's enough, come back!"
local msgunicago4, msgunicaback4 = "I need your help, doka!", "You were great, doka!"
local msgunicago5, msgunicaback5 = "Let's fight, doka!", "Excellent work, doka!"
local msgunicago6, msgunicaback6 = "It's battle time, doka!", "Well done, doka!"
function onUse(cid, item, frompos, item2, topos)
if #getCreatureSummons(cid) == 2 and getPlayerStorageValue(cid, 212124) >= 1 then
doPlayerSendCancel(cid, "You can't do that while is controling a mind")
return true --alterado v1.5
end
setPlayerStorageValue(cid,9506,-1)
if #getCreatureSummons(cid) >= 1 and getPlayerStorageValue(getCreatureSummons(cid)[1], 33) >= 1 then
return true
end
local random2 = math.random(1,6)
if random2 == 1 then
msgunicaback = msgunicaback1
elseif random2 == 2 then
msgunicaback = msgunicaback2
elseif random2 == 3 then
msgunicaback = msgunicaback3
elseif random2 == 4 then
msgunicaback = msgunicaback4
elseif random2 == 5 then
msgunicaback = msgunicaback5
elseif random2 == 6 then
msgunicaback = msgunicaback6
end
local random = math.random(1,6)
if random == 1 then
msgunicago = msgunicago1
elseif random == 2 then
msgunicago = msgunicago2
elseif random == 3 then
msgunicago = msgunicago3
elseif random == 4 then
msgunicago = msgunicago4
elseif random == 5 then
msgunicago = msgunicago5
elseif random == 6 then
msgunicago = msgunicago6
end
if item.itemid == 2222 or item.itemid == 2223 then
gobackeff = 188
elseif item.itemid == 2220 or item.itemid == 2221 then
gobackeff = 191
elseif item.itemid == 2651 or item.itemid == 2652 then
gobackeff = 189
elseif item.itemid == 2653 or item.itemid == 2654 then
gobackeff = 190
elseif item.itemid == 2655 or item.itemid == 2656 then
gobackeff = 195
elseif item.itemid == 11618 or item.itemid == 11619 then
gobackeff = 99
elseif item.itemid == 11621 or item.itemid == 11622 then
gobackeff = 194
elseif item.itemid == 11624 or item.itemid == 11625 then
gobackeff = 192
elseif item.itemid == 11627 or item.itemid == 11628 then
gobackeff = 193
end
local effect = gobackeff
if item.itemid == 2223 or item.itemid == 2221 or item.itemid == 2652 or item.itemid == 2654 or item.itemid == 2656 or item.itemid == 11619 or item.itemid == 11622 or item.itemid == 11625 or item.itemid == 11628 then
if #getCreatureSummons(cid) >= 1 then
local summom = getCreatureSummons(cid)
local pokename = getItemAttribute(item.uid, "poke"):sub(9, findLetter(getItemAttribute(item.uid, "poke"), "'")-1)
local mbk = msgunicaback:gsub("doka", pokename)
doTransformItem(item.uid, item.itemid-1)
doCreatureSay(cid, mbk, TALKTYPE_SAY)
doPlayerSendCancel(cid, '12//,hide')
if math.random(1,100) <= 35 then
setPokemonFeed(cid, getPokemonFeed(cid)-15) -- Food system
end
doItemSetAttribute(item.uid, "poke", getItemAttribute(item.uid, "poke"):sub(1, findLetter(getItemAttribute(item.uid, "poke"), ".")) .. " HP = ["..getCreatureHealth(summom[1]).."/"..getCreatureMaxHealth(summom[1]).."]")
setPlayerStorageValue(cid, 61204, 0)
setPlayerStorageValue(cid, 2, 0)
doSendMagicEffect(getCreaturePosition(summom[1]), effect)
doRemoveCreature(summom[1])
return true
end
elseif item.itemid == 2222 or item.itemid == 2220 or item.itemid == 2651 or item.itemid == 2653 or item.itemid == 2655 or item.itemid == 11618 or item.itemid == 11621 or item.itemid == 11624 or item.itemid == 11627 then
if item.uid ~= getPlayerSlotItem(cid, CONST_SLOT_FEET).uid then
doPlayerSendCancel(cid, "You must put your pokeball in the correct place!")
return TRUE
end
if not canSummon(cid) then
return doPlayerSendDefaultCancel(cid, RETURNVALUE_NOTENOUGHROOM)
end
if getPlayerStorageValue(cid, 63215) >= 1 then
return doPlayerSendCancel(cid, "You can't use pokeball while surfing.")
end
if getPlayerStorageValue(cid, 7778) >= 1 then
return doPlayerSendCancel(cid, "You can't use pokeball while flying.")
end
if #getCreatureSummons(cid) >= 1 then
return doPlayerSendCancel(cid, "You have already summoned a pokemon.")
end
i = getItemAttribute(item.uid, "poke"):match("This is (.-)'s pokeball.")
x = pokes
if getPlayerLevel(cid) < x.level then
doPlayerSendCancel(cid, "You need level "..x.level.." or higher to use this pokemon.")
return true
end
local removed = doCreateItem(1285, 1, getThingPos(cid))
doSummonMonster(cid, i)
local pk = getCreatureSummons(cid)[1]
doTeleportThing(pk, getClosestFreeTile(pk, getThingPos(cid)), false)
doRemoveItem(removed, 1)
doCreatureSetLookDir(pk, 2)
local maxh = pokes[getCreatureName(pk)].vida
local levellife = pokes[getCreatureName(pk)].vitality * HPperVITsummon *90.6
local health = tonumber(getItemAttribute(item.uid, "poke"):match("%[(.-)/"))
local maxVida = tonumber(getItemAttribute(item.uid, "poke"):match("/(.+)]"))
vidaTotal = getCreatureMaxHealth(getCreatureSummons(cid)[1])
setCreatureMaxHealth(getCreatureSummons(cid)[1], (maxh + levellife))
if maxVida == health then
if maxVida ~= (maxh + levellife) then
health = levellife + maxh
end
end
doCreatureAddHealth(getCreatureSummons(cid)[1], (maxh + levellife))
doCreatureAddHealth(getCreatureSummons(cid)[1], health-(maxh + levellife))
setPlayerStorageValue(pk, 1001, pokes[getCreatureName(pk)].offense * getMasterLevel(pk) /2)
setPlayerStorageValue(pk, 1002, pokes[getCreatureName(pk)].defense)
setPlayerStorageValue(pk, 1003, pokes[getCreatureName(pk)].agility)
setPlayerStorageValue(pk, 1004, pokes[getCreatureName(pk)].vitality * getMasterLevel(pk) /4)
setPlayerStorageValue(pk, 1005, pokes[getCreatureName(pk)].specialattack * getMasterLevel(pk) /3)
doTransformItem(item.uid, item.itemid+1)
local pokename = getCreatureName(getCreatureSummons(cid)[1])
local mgo = msgunicago:gsub("doka", pokename)
doCreatureSay(cid, mgo, TALKTYPE_SAY)
if math.random(1,100) <= 35 then
setPokemonFeed(cid, getPokemonFeed(cid)-5) -- Food system
end
doSendFeedEffect(cid)
if useOTClient then
doPlayerSendCancel(cid, '12//,show') --alterado v1.7
end
if useKpdoDlls then
doUpdateMoves(cid)
end
local summonName = getItemAttribute(getPlayerSlotItem(cid, 8).uid, "poke"):match("This is (.-)'s pokeball.")
if getCreatureName(pk) == "Ditto" then
if useKpdoDlls then
doPlayerSendCancel(cid, '12//,hide')
end
local left = getItemAttribute(item.uid, "transLeft")
local name = getItemAttribute(item.uid, "transName")
if left and left > 0 then
setPlayerStorageValue(pk, 1010, name)
doSetCreatureOutfit(pk, {lookType = getItemAttribute(item.uid, "transOutfit")}, -1)
addEvent(deTransform, left * 1000, pk, getItemAttribute(item.uid, "transTurn"))
doItemSetAttribute(item.uid, "transBegin", os.clock())
if useOTClient then
doPlayerSendCancel(cid, '12//,show') --alterado v1.7
end
if useKpdoDlls then
doUpdateMoves(cid)
end
else
setPlayerStorageValue(pk, 1010, "Ditto")
end
end
----- Burn, venom e ice system ------
getBurn(cid)
getVenom(cid)
getIce(cid)
----- Burn, venom e ice system ------
doItemSetAttribute(item.uid, "poke", getItemAttribute(item.uid, "poke"):sub(1, findLetter(getItemAttribute(item.uid, "poke"), ".")))
doSendMagicEffect(getCreaturePosition(pk), effect)
setPlayerStorageValue(cid, 61204, 1)
registerCreatureEvent(pk, "DiePoke")
registerCreatureEvent(pk, "Exp")
end
return true
end
a spell Morph
elseif spell == "Morph" then
if isSummon(cid) then
sid = getCreatureMaster(cid)
lightEff = 132
lightOut = 1645
darkEff = 214
darkOut = 1257
-----------Rotoms
ghostEff = 214
ghostOut = 1730
waterEff = 21
waterOut = 1726
fireEff = 181
fireOut = 1725
grassEff = 8
grassOut = 1729
flyEff = 42
flyOut = 1727
iceEff = 41
iceOut = 1728
pos = getThingPos(cid)
if getPlayerSlotItem(sid, 8).itemid == 0 then
print(getPlayerSlotItem(sid, 8).itemid)
return false
end
local _TAB = {
["Dark Abra"] = {eff = lightEff, name = "Light Abra", outfit = lightOut},
["Light Abra"] = {eff = darkEff, name = "Dark Abra", outfit = darkOut},
["Ghost Rotom"] = {eff = waterEff, name = "Water Rotom", outfit = waterOut},
["Water Rotom"] = {eff = fireEff, name = "Fire Rotom", outfit = fireOut},
["Fire Rotom"] = {eff = grassEff, name = "Grass Rotom", outfit = grassOut},
["Grass Rotom"] = {eff = flyEff, name = "Flying Rotom", outfit = flyOut},
["Flying Rotom"] = {eff = iceEff, name = "Ice Rotom", outfit = iceOut},
["Ice Rotom"] = {eff = ghostEff, name = "Ghost Rotom", outfit = ghostOut}
}
local infos = _TAB[getCreatureName(cid)]
if infos then
eff, name, outfit = infos.eff, infos.name, infos.outfit
end
if not isPlayer(sid) then return false end
if getItemAttribute(getPlayerSlotItem(sid, 8).uid, "ghostlight") then
local name = getCreatureName(cid)
doItemEraseAttribute(getPlayerSlotItem(sid, 8).uid, "ghostlight")
else
doItemSetAttribute(getPlayerSlotItem(sid, 8).uid, "ghostlight", "yes")
end
doSendMagicEffect(getThingPosWithDebug(cid), eff)
doSetCreatureOutfit(cid, {lookType = outfit}, -1)
doItemSetAttribute(getPlayerSlotItem(sid, 8).uid, "poke", name)
doRemoveCreature(cid)
doSummonMonster(sid, name)
doTeleportThing(getCreatureSummons(sid)[1], pos, false)
adjustStatus(getPlayerSlotItem(sid, 8).uid, true, false)
doUpdateMoves(sid)
end
agradeço deis de já
Link para o comentário
https://xtibia.com/forum/topic/239444-help-morph-abra/Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados