diff --git a/.gitignore b/.gitignore index 146a8c6..6f0f703 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -*Thumbs.db* \ No newline at end of file +*Thumbs.db* +/.vscode/ diff --git a/background.html b/background.html index 0c7d259..1556ee1 100755 --- a/background.html +++ b/background.html @@ -7,10 +7,12 @@ - + + - + \ No newline at end of file diff --git a/scripts/background.css b/scripts/background.css index 5f62f6f..6cfe069 100644 --- a/scripts/background.css +++ b/scripts/background.css @@ -1,4 +1,5 @@ img { + image-rendering: crisp-edges; position: absolute; max-width: 196px; height: auto; @@ -13,11 +14,11 @@ img { } .sphealnone, .sphealsparkle { - animation: spin linear 5s infinite; - -webkit-animation: spin linear 5s infinite; - -ms-animation: spin linear 5s infinite; - -o-animation: spin linear 5s infinite; - -moz-animation: spin linear 5s infinite; + animation: spin linear 5s infinite, fadeIn ease 5s; + -webkit-animation: spin linear 5s infinite, fadeIn ease 5s; + -ms-animation: spin linear 5s infinite, fadeIn ease 5s; + -o-animation: spin linear 5s infinite, fadeIn ease 5s; + -moz-animation: spin linear 5s infinite, fadeIn ease 5s; } .wailordnone { diff --git a/scripts/background.js b/scripts/background.js index a9627a1..7221886 100644 --- a/scripts/background.js +++ b/scripts/background.js @@ -8,7 +8,8 @@ const config = { swarmOdds: 1 / 64, fakemonOdds: 1 / 128, // Chance to add a single "fakemon" from Smogon's CAP - https://www.smogon.com/dex/ss/formats/cap/ bigWailords: true, // BIG FUCKINF WAILORD - sphealSpin: true // Spinny boi + sphealSpin: true, // Spinny boi + heights: false // Biblically accurate Pokémon }; // Create background elements on load @@ -26,48 +27,111 @@ $(function () { // Generate Pokémon and their attributes function create() { let onscreenPokemon = ""; - const shuffledPokemon = shuffle(pokemon).slice(0, config.maxOnscreen); + let shuffledPokemon = ""; + var height_pos= []; + var shuffled_size = []; + var bodyWrapper = document.getElementById("main"); + + if(config.heights) + { + //Ensures both arrays of objects are shuffled identically + multishuffle(pokemon, pokemonsize) + shuffledPokemon = pokemon.slice(0, config.maxOnscreen) + shuffled_size = pokemonsize.slice(0, config.maxOnscreen) + } + else + { + shuffledPokemon = shuffle(pokemon).slice(0, config.maxOnscreen); + } - // Handle Fakemon - if (Math.random() < config.fakemonOdds) { - const shuffledFakemon = shuffle(fakemon); - shuffledPokemon.unshift(shuffledFakemon[0]); + // Fakemon sprites + if (Math.random() < config.fakemonOdds) { + if(config.heights) + { + //Ensures both arrays of objects are shuffled identically + multishuffle(fakemon,fakemonsize) + const shuffledFakemon = fakemon + shuffledPokemon.unshift(shuffledFakemon[0]) + shuffled_fakesize = fakemonsize + shuffled_size.unshift(shuffled_fakesize[0]) + } + else + { + const shuffledFakemon = shuffle(fakemon); + shuffledPokemon.unshift(shuffledFakemon[0]); + } } // Handle swarms if (config.swarms && Math.random() < config.swarmOdds) { const swarm = Array(config.swarmAmount).fill(shuffledPokemon[0]); shuffledPokemon.push(...swarm); + + if(config.heights) + { + const swarmHeight = Array(config.swarmAmount).fill(shuffled_size[0]); + shuffled_size.push(...swarmHeight); + } } // Process each Pokémon shuffledPokemon.forEach((pokemon) => { let form; for (const val in pokemon) { - form = pokemon[val][Math.floor(Math.random() * pokemon[val].length)]; + formval = Math.floor(Math.random() * pokemon[val].length) + form = pokemon[val][formval]; } + height_pos.push(formval) const isShiny = Math.random() < config.shinyOdds; const sparkleClass = isShiny ? "sparkle" : "none"; const spritePath = isShiny ? "shiny/" : "normal/"; const area = floating_pokemon.includes(form) ? "sky" : "ground"; - // Special cases - let specialClass = ""; - if (form === "wailord" && config.bigWailords) specialClass = "wailord"; - if (form === "spheal" && config.sphealSpin) specialClass = "spheal"; + let specialClass = "" + + //Do not enable big_wailords if heights is enabled. Causes Wailord to take up the entire screen while also rendering on-top of everything else. + if (form == "wailord" && config.big_wailords && !config.heights) specialClass = "wailord" + if (form == "spheal" && config.spheal_spin) specialClass = "spheal" // Append the Pokémon sprite onscreenPokemon += ` Pokemon - `; + src="sprites/${spritePath}${form}.gif" + onerror="this.style.display='none'" + alt="Pokemon"> + `; + }); + i=0 + shuffled_size.forEach((pokemonsize) => { + for (var val in pokemonsize) { + list = pokemonsize[val] + form = pokemonsize[val][height_pos[i]] + height_multi.push(form) + i++ + } }); // Inject Pokémon sprites into the body document.getElementById("body").innerHTML = onscreenPokemon; + + if(config.heights){ + setTimeout(function(){ + i = 0 + $("img").each(function(){ + s = "Height slot: "+ height_pos[i] + " Multi: " + height_multi[i]+" OG Height: "+$(this).height() + h = $(this).height() * height_multi[i]; + $(this).height(h); + //Logging for checking which Pokemon are chosen, their original height in px, the multiplier applied to them, and their new height px + //console.log(s + " New Height: " + $(this).height()+" ", shuffledPokemon[i]) + i++ + }); + }, 100); + //Change scale from 1.6x to 1.2x. Big mons at 1.6x are WAY too big. + $('img').css('transform', 'translate(var(--x-position), var(--y-position)) scale(1.2)') + //Remove max-width + $('img').css('max-width', '9999px') + } } // Randomly position and style Pokémon sprites @@ -125,7 +189,6 @@ function randomOrder() { } }); } - // Shuffle sprites for ground and sky shuffleSprites('#ground', 1000, 50); shuffleSprites('#sky', 10, 400); @@ -142,3 +205,19 @@ function shuffle(array) { } return array; } + +function multishuffle(array, array2) { + let i = array.length, + rand; + + while (i != 0) { + rand = Math.floor(Math.random() * i); + i--; + [array[i], array[rand]] = [ + array[rand], array[i] + ]; + [array2[i], array2[rand]] = [ + array2[rand], array2[i] + ]; + } +} \ No newline at end of file diff --git a/scripts/background_pokemon-size-reasonable-gmax.js b/scripts/background_pokemon-size-reasonable-gmax.js new file mode 100644 index 0000000..258f916 --- /dev/null +++ b/scripts/background_pokemon-size-reasonable-gmax.js @@ -0,0 +1,1957 @@ +pokemonsize = [{ + "abomasnow": ["2.54022988505747", "2.44545454545455"] + }, { + "abra": ["1.67924528301887"] + }, { + "absol": ["1.29347826086957", "1.22680412371134"] + }, { + "accelgor": ["0.963414634146341"] + }, { + "aegislash": ["1.63461538461538", "1.63461538461538"] + }, { + "aerodactyl": ["1.44827586206897", "2.00714285714286"] + }, { + "aggron": ["2.17525773195876", "2.18811881188119"] + }, { + "aipom": ["1.1969696969697", "1.1969696969697"] + }, { + "alakazam": ["1.89873417721519", "1.27692173913043"] + }, { + "alcremie": ["0.410958904109589", "0.410958904109589", "5.84415584415584", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589"] + }, { + "alomomola": ["1.19"] + }, { + "altaria": ["1.2247191011236", "1.37323943661972"] + }, { + "amaura": ["1.44444444444444"] + }, { + "ambipom": ["1.35227272727273", "1.35227272727273"] + }, { + "amoonguss": ["0.813333333333333"] + }, { + "ampharos": ["1.38613861386139", "1.25"] + }, { + "anorith": ["1.91891891891892"] + }, { + "appletun": ["0.539473684210526", "4.70588235294118"] + }, { + "applin": ["0.454545454545455"] + }, { + "araquanid": ["2.6865671641791"] + }, { + "arbok": ["2.53734939759036"] + }, { + "arboliva": ["1.1965811965812"] + }, { + "arcanine": ["2.32926829268293", "2.36470588235294"] + }, { + "arceus": ["2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965"] + }, { + "archen": ["0.980769230769231"] + }, { + "archeops": ["1.41732283464567"] + }, { + "arctovish": ["2.28409090909091"] + }, { + "arctozolt": ["2.35714285714286"] + }, { + "ariados": ["1.78688524590164"] + }, { + "armaldo": ["1.85185185185185"] + }, { + "aromatisse": ["0.9875"] + }, { + "aron": ["0.911111111111111"] + }, { + "arrokuda": ["1.21428571428571"] + }, { + "articuno": ["1.39181286549708", "1.39160839160839"] + }, { + "audino": ["1.45333333333333", "1.5625"] + }, { + "aurorus": ["2.1869918699187"] + }, { + "avalugg": ["3.52631578947368", "2.45614035087719"] + }, { + "axew": ["0.924242424242424"] + }, { + "azelf": ["0.348837209302326"] + }, { + "azumarill": ["0.877777777777778"] + }, { + "azurill": ["0.277777777777778"] + }, { + "bagon": ["1.03389830508475"] + }, { + "baltoy": ["0.85"] + }, { + "banette": ["1.1010101010101", "1.77611940298507"] + }, { + "barbaracle": ["1.19266055045872"] + }, { + "barboach": ["0.976190476190476"] + }, { + "barraskewda": ["1.23606557377049"] + }, { + "basculegion": ["1.22222222222222", "1.22222222222222"] + }, { + "basculin": ["1.65", "1.65"] + }, { + "bastiodon": ["1.625", "1.625"] + }, { + "bayleef": ["1.41666666666667"] + }, { + "beartic": ["2.49038461538462"] + }, { + "beautifly": ["1.19277108433735", "1.19277108433735"] + }, { + "beedrill": ["1.15116279069767", "1.7283950617284"] + }, { + "beheeyem": ["1.17857142857143"] + }, { + "beldum": ["1.84848484848485"] + }, { + "bellibolt": ["1.8030303030303"] + }, { + "bellossom": ["0.745454545454546"] + }, { + "bellsprout": ["1.44897959183673"] + }, { + "bergmite": ["1.65"] + }, { + "bewear": ["2.67088607594937"] + }, { + "bibarel": ["1.76785714285714", "1.76785714285714"] + }, { + "bidoof": ["1.10869565217391", "1.10869565217391"] + }, { + "binacle": ["0.71830985915493"] + }, { + "bisharp": ["1.61616161616162"] + }, { + "blacephalon": ["2.30769230769231"] + }, { + "blastoise": ["1.92771084337349", "1.40350877192982", "5.63684210526316"] + }, { + "blaziken": ["2.03191489361702", "1.78504672897196"] + }, { + "blipbug": ["0.577464788732394"] + }, { + "blissey": ["2.02702702702703"] + }, { + "blitzle": ["0.940476190476191"] + }, { + "boldore": ["1.32835820895522"] + }, { + "boltund": ["1.1"] + }, { + "bonsly": ["1.83908045977012"] + }, { + "bouffalant": ["1.83908045977012"] + }, { + "bounsweet": ["0.588235294117647"] + }, { + "braixen": ["1.15116279069767"] + }, { + "braviary": ["1.34659090909091", "1.48231707317073"] + }, { + "breloom": ["1.63013698630137"] + }, { + "brionne": ["0.859154929577465"] + }, { + "bronzong": ["1.78082191780822"] + }, { + "bronzor": ["0.927272727272727"] + }, { + "bruxish": ["1.23611111111111"] + }, { + "budew": ["0.408163265306122"] + }, { + "buizel": ["1.02898550724638", "1.02898550724638"] + }, { + "bulbasaur": ["1.44897959183673"] + }, { + "buneary": ["0.561643835616438"] + }, { + "bunnelby": ["0.445652173913043"] + }, { + "burmy": ["0.327868852459016", "0.327868852459016", "0.327868852459016"] + }, { + "butterfree": ["1.2247191011236", "4.0452380952381"] + }, { + "buzzwole": ["2.54255319148936"] + }, { + "cacnea": ["0.82"] + }, { + "cacturne": ["1.49425287356322", "1.49425287356322"] + }, { + "calyrex": ["1.02830188679245", "2.17272727272727", "2.17272727272727"] + }, { + "camerupt": ["2.69014084507042", "2.82954545454545"] + }, { + "capsakid": ["0.625"] + }, { + "carbink": ["0.526315789473684"] + }, { + "carkol": ["1.2247191011236"] + }, { + "carnivine": ["1.53846153846154"] + }, { + "carracosta": ["1.4"] + }, { + "carvanha": ["1.09722222222222"] + }, { + "cascoon": ["1.775"] + }, { + "castform": ["0.508474576271186", "0.428571428571429", "0.46875", "0.434782608695652"] + }, { + "caterpie": ["0.666666666666667"] + }, { + "celebi": ["0.938461538461539"] + }, { + "celesteela": ["8.75238095238095"] + }, { + "centiskorch": ["1.13445378151261", "11.1570247933884"] + }, { + "cetitan": ["6.16438356164384"] + }, { + "cetoddle": ["1.83076923076923"] + }, { + "chandelure": ["0.916666666666667"] + }, { + "chansey": ["1.87931034482759"] + }, { + "charizard": ["1.55", "5.598", "1.58878504672897", "1.2289156626506"] + }, { + "charjabug": ["1.0625"] + }, { + "charmander": ["1.07017543859649"] + }, { + "charmeleon": ["1.55714285714286"] + }, { + "chatot": ["0.85"] + }, { + "cherrim": ["0.894736842105263", "0.761194029850746"] + }, { + "cherubi": ["0.854166666666667"] + }, { + "chesnaught": ["1.50943396226415"] + }, { + "chespin": ["0.640625"] + }, { + "chewtle": ["0.5"] + }, { + "chikorita": ["1.41269841269841"] + }, { + "chimchar": ["0.728571428571429"] + }, { + "chimecho": ["0.835616438356164"] + }, { + "chinchou": ["0.962264150943396"] + }, { + "chingling": ["0.303030303030303"] + }, { + "cinccino": ["0.80952380952381"] + }, { + "cinderace": ["1.2280701754386", "6.58536585365854"] + }, { + "clamperl": ["0.773584905660377"] + }, { + "clauncher": ["0.980769230769231"] + }, { + "clawitzer": ["1.36842105263158"] + }, { + "claydol": ["1.76470588235294"] + }, { + "clefable": ["2"] + }, { + "clefairy": ["1.27083333333333"] + }, { + "cleffa": ["0.681818181818182"] + }, { + "clobbopus": ["1.15094339622642"] + }, { + "cloyster": ["1.76470588235294"] + }, { + "coalossal": ["2.14615384615385", "8.02738853503185"] + }, { + "cobalion": ["1.93577981651376"] + }, { + "cofagrigus": ["1.42857142857143"] + }, { + "combee": ["0.652173913043478", "0.652173913043478"] + }, { + "combusken": ["1.07228915662651", "1.15584415584416"] + }, { + "comfey": ["0.106382978723404"] + }, { + "conkeldurr": ["1.57303370786517"] + }, { + "copperajah": ["3.09278350515464", "4.8612676056338"] + }, { + "corphish": ["1.10909090909091"] + }, { + "corsola": ["0.884057971014493", "0.824324324324324"] + }, { + "corviknight": ["1.77345679012346", "3.72340425531915"] + }, { + "corvisquire": ["0.71219696969697"] + }, { + "cosmoem": ["0.144927536231884"] + }, { + "cosmog": ["0.338983050847458"] + }, { + "cottonee": ["0.75"] + }, { + "crabominable": ["2.17948717948718"] + }, { + "crabrawler": ["0.983870967741936"] + }, { + "cradily": ["1.875"] + }, { + "cramorant": ["1", "1", "1"] + }, { + "cranidos": ["1.30882352941176"] + }, { + "crawdaunt": ["1.47297297297297"] + }, { + "cresselia": ["1.5625"] + }, { + "croagunk": ["1.36538461538462", "1.36538461538462"] + }, { + "crobat": ["2.0018691588785"] + }, { + "crocalor": ["1.47761194029851"] + }, { + "croconaw": ["1.3974358974359"] + }, { + "crustle": ["1.68674698795181"] + }, { + "cryogonal": ["1.1010101010101"] + }, { + "cubchoo": ["0.864406779661017"] + }, { + "cubone": ["0.836734693877551"] + }, { + "cufant": ["1.83076923076923"] + }, { + "cursola": ["0.860869565217391"] + }, { + "cutiefly": ["0.175438596491228"] + }, { + "cyndaquil": ["1.13333333333333"] + }, { + "darkrai": ["1.29310344827586"] + }, { + "darmanitan": ["1.42857142857143", "1.0625", "1.60377358490566", "2.24137931034483"] + }, { + "dartrix": ["1.04411764705882"] + }, { + "darumaka": ["1", "1.26785714285714"] + }, { + "decidueye": ["1.6", "1.61616161616162"] + }, { + "dedenne": ["0.4"] + }, { + "deerling": ["0.859154929577465", "0.859154929577465", "0.859154929577465", "0.859154929577465"] + }, { + "deino": ["1.03947368421053"] + }, { + "delcatty": ["1.41558441558442"] + }, { + "delibird": ["1.25352112676056"] + }, { + "delphox": ["1.36363636363636"] + }, { + "deoxys": ["1.97674418604651", "1.77083333333333", "1.82795698924731", "1.80851063829787"] + }, { + "dewgong": ["1.97101449275362"] + }, { + "dewott": ["1.08219178082192"] + }, { + "dewpider": ["0.491803278688525"] + }, { + "dhelmise": ["4.34444444444444"] + }, { + "dialga": ["4.4344262295082"] + }, { + "diancie": ["0.788888888888889", "0.956140350877193"] + }, { + "diggersby": ["0.942857142857143"] + }, { + "diglett": ["0.571428571428571", "0.465116279069767"] + }, { + "ditto": ["0.857142857142857"] + }, { + "dodrio": ["1.76470588235294", "1.76470588235294"] + }, { + "doduo": ["2", "2"] + }, { + "dolliv": ["1.05172413793103"] + }, { + "dondozo": ["6.23188405797102"] + }, { + "donphan": ["1.62686567164179", "1.62686567164179"] + }, { + "dottler": ["0.836734693877551"] + }, { + "doublade": ["1.03947368421053"] + }, { + "dracovish": ["2.51086956521739"] + }, { + "dracozolt": ["2.43243243243243"] + }, { + "dragalge": ["1.31386861313869"] + }, { + "dragapult": ["2.44897959183673"] + }, { + "dragonair": ["2.5741935483871"] + }, { + "dragonite": ["2.25510204081633"] + }, { + "drakloak": ["2.15384615384615"] + }, { + "drampa": ["4.26923076923077"] + }, { + "drapion": ["1.52941176470588"] + }, { + "dratini": ["2.85714285714286"] + }, { + "drednaw": ["1.43478260869565", "6"] + }, { + "dreepy": ["1.24390243902439"] + }, { + "drifblim": ["1.33707865168539"] + }, { + "drifloon": ["0.546666666666667"] + }, { + "drilbur": ["0.612244897959184"] + }, { + "drizzile": ["0.922077922077922"] + }, { + "drowzee": ["1.73684210526316"] + }, { + "druddigon": ["1.53846153846154"] + }, { + "dubwool": ["1.36842105263158"] + }, { + "ducklett": ["0.82258064516129"] + }, { + "dugtrio": ["1.42", "1.44897959183673"] + }, { + "dudunsparce": ["1.53868852459016", "1.44444444444444"] + }, { + "dunsparce": ["1.21951219512195"] + }, { + "duosion": ["0.953125"] + }, { + "duraludon": ["1.65137614678899", "9.28057553956835"] + }, { + "durant": ["0.789473684210526"] + }, { + "dusclops": ["1.66666666666667"] + }, { + "dusknoir": ["2.18811881188119"] + }, { + "duskull": ["1.234375"] + }, { + "dustox": ["1.67605633802817", "1.67605633802817"] + }, { + "dwebble": ["0.714285714285714"] + }, { + "eelektrik": ["1.4875"] + }, { + "eelektross": ["1.64285714285714"] + }, { + "eevee": ["0.545454545454545", "3.1051724137931"] + }, { + "eiscue": ["1.52173913043478", "1.91780821917808"] + }, { + "ekans": ["1.675"] + }, { + "eldegoss": ["0.653846153846154"] + }, { + "electabuzz": ["1.3974358974359"] + }, { + "electivire": ["2.11764705882353"] + }, { + "electrike": ["1.60526315789474"] + }, { + "electrode": ["2.01694915254237", "2.01694915254237"] + }, { + "elekid": ["0.968253968253968"] + }, { + "elgyem": ["0.761194029850746"] + }, { + "emboar": ["1.56862745098039"] + }, { + "emolga": ["0.694915254237288"] + }, { + "empoleon": ["1.53153153153153"] + }, { + "enamorus": ["1.45454545454545", "1.45454545454545"] + }, { + "entei": ["2.42528735632184"] + }, { + "escavalier": ["0.98019801980198"] + }, { + "espathra": ["1.80188679245283"] + }, { + "espeon": ["1.15584415584416"] + }, { + "espurr": ["0.517241379310345"] + }, { + "eternatus": ["15.8650793650794", "19.8675496688742"] + }, { + "excadrill": ["0.89873417721519"] + }, { + "exeggcute": ["1.41379310344828"] + }, { + "exeggutor": ["2.03030303030303", "6.05555555555556"] + }, { + "exploud": ["1.78571428571429"] + }, { + "falinks": ["1.02040816326531"] + }, { + "farfetchd": ["1.58", "1.36206896551724"] + }, { + "farigiraf": ["2.5"] + }, { + "fearow": ["1.04896296296296"] + }, { + "feebas": ["1.17307692307692"] + }, { + "fennekin": ["0.694915254237288"] + }, { + "feraligatr": ["2.35714285714286"] + }, { + "ferroseed": ["0.953125"] + }, { + "ferrothorn": ["1.41428571428571"] + }, { + "finizen": ["2.36363636363636"] + }, { + "finneon": ["0.976190476190476"] + }, { + "flaaffy": ["1.17910447761194"] + }, { + "flabebe": ["0.128205128205128", "0.128205128205128", "0.128205128205128", "0.128205128205128", "0.128205128205128"] + }, { + "flapple": ["0.4", "4.70588235294118"] + }, { + "flareon": ["0.956989247311828"] + }, { + "fletchinder": ["0.663551401869159"] + }, { + "fletchling": ["0.697674418604651"] + }, { + "flittle": ["0.454545454545455"] + }, { + "floatzel": ["1.17204301075269", "1.17204301075269"] + }, { + "floette": ["0.210526315789474", "0.210526315789474", "0.222222222222222", "0.210526315789474", "0.210526315789474", "0.210526315789474"] + }, { + "floragato": ["1.14102564102564"] + }, { + "florges": ["1.09", "1.09", "1.09", "1.09", "1.09"] + }, { + "flygon": ["1.89622641509434"] + }, { + "fomantis": ["0.535714285714286"] + }, { + "foongus": ["0.416666666666667"] + }, { + "forretress": ["1.72463768115942"] + }, { + "fraxure": ["1.26923076923077"] + }, { + "frillish": ["1.38372093023256", "1.36781609195402"] + }, { + "froakie": ["0.576923076923077"] + }, { + "frogadier": ["1.05172413793103"] + }, { + "froslass": ["1.64556962025316"] + }, { + "frosmoth": ["1.35416666666667"] + }, { + "fuecoco": ["0.732142857142857"] + }, { + "furfrou": ["1.41666666666667", "1.45121951219512", "1.56578947368421", "1.38372093023256", "1.43373493975904", "1.54545454545455", "1.52564102564103", "1.60810810810811", "1.41666666666667", "1.43373493975904"] + }, { + "furret": ["1.08108108108108"] + }, { + "gabite": ["1.84210526315789", "1.84210526315789"] + }, { + "gallade": ["2.10526315789474", "1.61616161616162"] + }, { + "galvantula": ["1.61224489795918"] + }, { + "garbodor": ["2.17045454545455", "5.2525"] + }, { + "garchomp": ["1.76851851851852", "1.78504672897196"] + }, { + "gardevoir": ["1.73913043478261", "1.63265306122449"] + }, { + "gastly": ["2.13114754098361"] + }, { + "gastrodon": ["1.15584415584416", "1.15584415584416"] + }, { + "genesect": ["1.6304347826087", "1.6304347826087", "1.6304347826087", "1.6304347826087", "1.6304347826087"] + }, { + "gengar": ["1.92307692307692", "5.4027027027027", "1.52173913043478"] + }, { + "geodude": ["1.17142857142857", "0.953488372093023"] + }, { + "gible": ["1.24561403508772", "1.24561403508772"] + }, { + "gigalith": ["1.75257731958763"] + }, { + "girafarig": ["1.70454545454545", "1.70454545454545"] + }, { + "giratina": ["3.94736842105263", "3.81396103896104"] + }, { + "glaceon": ["0.9875"] + }, { + "glalie": ["2", "2.42528735632184"] + }, { + "glameow": ["0.515151515151515", "0.515151515151515"] + }, { + "glastrier": ["1.88888888888889"] + }, { + "gligar": ["1.21111111111111", "1.29761904761905"] + }, { + "gliscor": ["1.99009900990099"] + }, { + "gloom": ["1.49056603773585", "1.49056603773585"] + }, { + "gogoat": ["2.04819277108434"] + }, { + "golbat": ["1.4", "1.4"] + }, { + "goldeen": ["1.12962962962963", "1.12962962962963"] + }, { + "golduck": ["2.2972972972973"] + }, { + "golem": ["1.7948717948718", "1.95402298850575"] + }, { + "golett": ["1.52307692307692"] + }, { + "golisopod": ["2.5125"] + }, { + "golurk": ["2.58333333333333"] + }, { + "goodra": ["1.97058823529412", "1.47826086956522"] + }, { + "goomy": ["0.6"] + }, { + "gorebyss": ["1.94594594594595"] + }, { + "gossifleur": ["0.630769230769231"] + }, { + "gothita": ["0.694915254237288"] + }, { + "gothitelle": ["1.48514851485149"] + }, { + "gothorita": ["0.922077922077922"] + }, { + "gourgeist": ["1.07228915662651", "1.18478260869565", "0.959459459459459", "1.54545454545455"] + }, { + "granbull": ["1.66666666666667"] + }, { + "grapploct": ["1.88235294117647"] + }, { + "graveler": ["1.67796610169492", "1.67796610169492"] + }, { + "greavard": ["0.983870967741936"] + }, { + "greedent": ["0.61"] + }, { + "greninja": ["1.97368421052632", "1.66666666666667"] + }, { + "grimer": ["1.74509803921569", "1.36538461538462"] + }, { + "grimmsnarl": ["1.45631067961165", "6.76056338028169"] + }, { + "grookey": ["0.461538461538462"] + }, { + "grotle": ["1.57971014492754"] + }, { + "groudon": ["3.73404255319149", "5.05050505050505"] + }, { + "grovyle": ["1.12658227848101"] + }, { + "growlithe": ["1.24561403508772", "1.61224489795918"] + }, { + "grubbin": ["1.10810810810811"] + }, { + "grumpig": ["1.21917808219178"] + }, { + "gulpin": ["0.788461538461538"] + }, { + "gumshoos": ["0.89873417721519"] + }, { + "gurdurr": ["1.52564102564103"] + }, { + "guzzlord": ["6.26136363636364"] + }, { + "gyarados": ["5.38383838383838", "4.63524590163934"] + }, { + "hakamo-o": ["1.43373493975904"] + }, { + "happiny": ["1.15094339622642"] + }, { + "hariyama": ["2.6551724137931"] + }, { + "hatenna": ["0.585714285714286"] + }, { + "hatterene": ["1.77310924369748", "5.7375"] + }, { + "hattrem": ["0.871428571428572"] + }, { + "haunter": ["2.19178082191781"] + }, { + "hawlucha": ["1.09722222222222"] + }, { + "haxorus": ["1.52542372881356"] + }, { + "heatmor": ["1.68674698795181"] + }, { + "heatran": ["2.65625"] + }, { + "heliolisk": ["1.26923076923077"] + }, { + "helioptile": ["0.944444444444444"] + }, { + "heracross": ["1.72413793103448", "1.53153153153153"] + }, { + "herdier": ["1.2027027027027"] + }, { + "hippopotas": ["1.49056603773585", "1.49056603773585"] + }, { + "hippowdon": ["1.74509803921569", "3.46551724137931"] + }, { + "hitmonchan": ["1.81818181818182"] + }, { + "hitmonlee": ["2.20588235294118"] + }, { + "hitmontop": ["1.97183098591549"] + }, { + "ho-oh": ["3.04270833333333"] + }, { + "honchkrow": ["0.787307692307692"] + }, { + "honedge": ["1"] + }, { + "hoopa": ["0.75", "5.15873015873016"] + }, { + "hoothoot": ["1.12698412698413"] + }, { + "hoppip": ["0.672131147540984"] + }, { + "horsea": ["0.719298245614035"] + }, { + "houndoom": ["1.62790697674419", "1.67543859649123"] + }, { + "houndour": ["1.03389830508475"] + }, { + "houndstone": ["2.54430379746835"] + }, { + "huntail": ["1.43846153846154"] + }, { + "hydreigon": ["1.38461538461538"] + }, { + "hypno": ["2.05128205128205", "2.05128205128205"] + }, { + "igglybuff": ["0.535714285714286"] + }, { + "illumise": ["0.938461538461539"] + }, { + "impidimp": ["0.661290322580645"] + }, { + "incineroar": ["1.875"] + }, { + "indeedee": ["1.2027027027027", "1.28985507246377"] + }, { + "infernape": ["1"] + }, { + "inkay": ["0.672131147540984"] + }, { + "inteleon": ["1.55284552845528", "6.21917098445596"] + }, { + "ivysaur": ["1.5"] + }, { + "jangmo-o": ["1.01666666666667"] + }, { + "jellicent": ["2.1047619047619", "2.14563106796117"] + }, { + "jigglypuff": ["1.10869565217391"] + }, { + "jirachi": ["0.441176470588235"] + }, { + "jolteon": ["1.14492753623188"] + }, { + "joltik": ["0.32258064516129"] + }, { + "jumpluff": ["0.963414634146341"] + }, { + "jynx": ["2.12121212121212"] + }, { + "kabuto": ["1.54545454545455"] + }, { + "kabutops": ["1.78082191780822"] + }, { + "kadabra": ["1.83098591549296", "1.83098591549296"] + }, { + "kakuna": ["1.05172413793103"] + }, { + "kangaskhan": ["2.54022988505747", "2.48314606741573"] + }, { + "karrablast": ["0.761194029850746"] + }, { + "kartana": ["0.36144578313253"] + }, { + "kecleon": ["1.47761194029851"] + }, { + "keldeo": ["1.59090909090909", "1.62790697674419"] + }, { + "kingdra": ["1.85567010309278"] + }, { + "kingler": ["1.56626506024096", "3.9041095890411"] + }, { + "kirlia": ["1.16176470588235"] + }, { + "klang": ["0.772151898734177"] + }, { + "kleavor": ["1.74757281553398"] + }, { + "klefki": ["0.227272727272727"] + }, { + "klink": ["0.410958904109589"] + }, { + "klinklang": ["0.847222222222222"] + }, { + "koffing": ["0.792207792207792"] + }, { + "komala": ["0.683333333333333"] + }, { + "kommo-o": ["1.68421052631579"] + }, { + "krabby": ["0.82"] + }, { + "kricketot": ["0.491803278688525", "0.491803278688525"] + }, { + "kricketune": ["1.35616438356164", "1.35616438356164"] + }, { + "krokorok": ["1.30263157894737"] + }, { + "krookodile": ["1.59574468085106"] + }, { + "kubfu": ["0.847222222222222"] + }, { + "kyogre": ["2.45454545454545", "4.59375"] + }, { + "kyurem": ["3.2967032967033", "2.5", "2.578125", "2.75572519083969", "2.75572519083969"] + }, { + "lairon": ["1.53448275862069"] + }, { + "lampent": ["0.74390243902439"] + }, { + "landorus": ["1.61290322580645", "1.38297872340426"] + }, { + "lanturn": ["1.41666666666667"] + }, { + "lapras": ["2.96428571428571", "5.49618320610687"] + }, { + "larvesta": ["1.60294117647059"] + }, { + "larvitar": ["0.938461538461539"] + }, { + "latias": ["2.02898550724638", "2.33766233766234"] + }, { + "latios": ["2.5125", "2.8875"] + }, { + "leafeon": ["1.35616438356164"] + }, { + "leavanny": ["1.09174311926606"] + }, { + "lechonk": ["1.04081632653061"] + }, { + "ledian": ["1.68674698795181", "1.7948717948718"] + }, { + "ledyba": ["1.584", "1.68510638297872"] + }, { + "lickilicky": ["2.15189873417722"] + }, { + "lickitung": ["2.01694915254237"] + }, { + "liepard": ["1"] + }, { + "lileep": ["1.45588235294118"] + }, { + "lilligant": ["1.2247191011236", "1.27956989247312"] + }, { + "lillipup": ["0.745454545454546"] + }, { + "linoone": ["1.30769230769231", "0.910714285714286"] + }, { + "litleo": ["1"] + }, { + "litten": ["0.706896551724138"] + }, { + "litwick": ["0.441176470588235"] + }, { + "lokix": ["1.16470588235294"] + }, { + "lombre": ["1.91935483870968"] + }, { + "lopunny": ["1.36781609195402", "1.47727272727273"] + }, { + "lotad": ["1.64516129032258"] + }, { + "loudred": ["1.26923076923077"] + }, { + "lucario": ["1.23958333333333", "1.17821782178218"] + }, { + "ludicolo": ["1.66666666666667", "1.66666666666667"] + }, { + "lugia": ["4.10236220472441"] + }, { + "lumineon": ["1.41666666666667", "1.41666666666667"] + }, { + "lunala": ["3.95049504950495"] + }, { + "lunatone": ["1.546875"] + }, { + "lurantis": ["1.04705882352941"] + }, { + "luvdisc": ["1.41860465116279"] + }, { + "luxio": ["1.15584415584416", "1.15584415584416"] + }, { + "luxray": ["1.41414141414141", "1.41414141414141"] + }, { + "lycanroc": ["1.05333333333333", "0.877777777777778", "1.31325301204819"] + }, { + "machamp": ["1.6", "5.63684210526316"] + }, { + "machoke": ["1.72413793103448"] + }, { + "machop": ["1.25396825396825"] + }, { + "magby": ["1.14516129032258"] + }, { + "magcargo": ["1.12857142857143"] + }, { + "magearna": ["1.45588235294118", "1.45588235294118"] + }, { + "magikarp": ["1.48333333333333", "1.48333333333333"] + }, { + "magmar": ["1.60493827160494"] + }, { + "magmortar": ["1.79775280898876"] + }, { + "magnemite": ["0.857142857142857"] + }, { + "magneton": ["1.43478260869565"] + }, { + "magnezone": ["1.63013698630137"] + }, { + "makuhita": ["1.5"] + }, { + "malamar": ["1.42857142857143"] + }, { + "mamoswine": ["2.96428571428571", "2.96428571428571"] + }, { + "manaphy": ["0.545454545454545"] + }, { + "mandibuzz": ["1.18055555555556"] + }, { + "manectric": ["1.875", "1.63636363636364"] + }, { + "mankey": ["0.910714285714286"] + }, { + "mantine": ["1.27118644067797"] + }, { + "mantyke": ["2.25"] + }, { + "maractus": ["1.17857142857143"] + }, { + "mareanie": ["0.683333333333333"] + }, { + "mareep": ["1.12962962962963"] + }, { + "marill": ["0.854166666666667"] + }, { + "marowak": ["1.47761194029851", "1.1"] + }, { + "marshadow": ["1.12698412698413"] + }, { + "marshtomp": ["0.922077922077922"] + }, { + "masquerain": ["1.36206896551724"] + }, { + "maushold": ["0.566037735849057", "0.566037735849057"] + }, { + "mawile": ["1.12962962962963", "1.25316455696203"] + }, { + "medicham": ["1.44444444444444", "1.23809523809524"] + }, { + "meditite": ["1.03389830508475", "1.03389830508475"] + }, { + "meltan": ["0.526315789473684"] + }, { + "meganium": ["1.93548387096774", "1.76470588235294"] + }, { + "melmetal": ["3.77272727272727", "5.90314960629921"] + }, { + "meloetta": ["0.859154929577465", "0.685393258426966"] + }, { + "meowscarada": ["1.41509433962264"] + }, { + "meowstic": ["0.847222222222222", "0.835616438356164"] + }, { + "meowth": ["0.672131147540984", "0.683333333333333", "0.594202898550725", "6.185625"] + }, { + "mesprit": ["0.384615384615385"] + }, { + "metagross": ["2.19178082191781", "2.11016949152542"] + }, { + "metang": ["1.72463768115942"] + }, { + "metapod": ["1.31481481481481"] + }, { + "mew": ["0.803921568627451"] + }, { + "mewtwo": ["2.28409090909091", "2.38144329896907", "1.6304347826087"] + }, { + "mienfoo": ["1.32835820895522"] + }, { + "mienshao": ["1.45833333333333"] + }, { + "mightyena": ["1.25316455696203"] + }, { + "milcery": ["0.350877192982456"] + }, { + "milotic": ["2.24255319148936", "2.21894736842105"] + }, { + "miltank": ["1.56578947368421"] + }, { + "mime_jr": ["0.968253968253968"] + }, { + "mimikyu": ["0.298507462686567", "0.133333333333333"] + }, { + "minccino": ["0.672131147540984"] + }, { + "minior": ["0.422535211267606", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039"] + }, { + "minun": ["0.694915254237288"] + }, { + "misdreavus": ["1.12698412698413"] + }, { + "mismagius": ["0.767241379310345"] + }, { + "moltres": ["1.66574585635359", "1.67731034482759"] + }, { + "monferno": ["0.978021978021978"] + }, { + "morelull": ["0.307692307692308"] + }, { + "morgrem": ["0.9875"] + }, { + "morpeko": ["0.517241379310345", "0.517241379310345"] + }, { + "mothim": ["1.03488372093023"] + }, { + "mr-mime": ["1.71052631578947", "1.59090909090909"] + }, { + "mr-rime": ["1.72413793103448"] + }, { + "mudbray": ["1.3943661971831"] + }, { + "mudkip": ["0.621212121212121"] + }, { + "mudsdale": ["2.79775280898876"] + }, { + "muk": ["1.50632911392405", "1.15116279069767"] + }, { + "munchlax": ["1.03389830508475"] + }, { + "munna": ["1.12962962962963"] + }, { + "murkrow": ["0.784615384615385", "0.85"] + }, { + "musharna": ["0.973214285714286"] + }, { + "naganadel": ["2.86507936507937"] + }, { + "natu": ["0.416666666666667"] + }, { + "necrozma": ["2.39", "4.02884615384615", "3.52777777777778", "6.51304347826087"] + }, { + "nickit": ["0.847222222222222"] + }, { + "nidoking": ["1.68674698795181"] + }, { + "nidoqueen": ["1.58536585365854"] + }, { + "nidoran_f": ["1"] + }, { + "nidoran_m": ["0.980769230769231"] + }, { + "nidorina": ["1.41071428571429"] + }, { + "nidorino": ["1.58928571428571"] + }, { + "nihilego": ["1.4"] + }, { + "nincada": ["1.7"] + }, { + "ninetales": ["1.41558441558442", "1.55714285714286"] + }, { + "ninjask": ["1.14492753623188"] + }, { + "noctowl": ["1.9047619047619"] + }, { + "noibat": ["0.53125"] + }, { + "noivern": ["1.59615384615385"] + }, { + "nosepass": ["1.70689655172414"] + }, { + "numel": ["1.26785714285714", "1.26785714285714"] + }, { + "nuzleaf": ["1.43478260869565", "1.43478260869565"] + }, { + "nymble": ["0.377358490566038"] + }, { + "obstagoon": ["1.50943396226415"] + }, { + "octillery": ["1.48333333333333", "1.50847457627119"] + }, { + "oddish": ["1.0625"] + }, { + "oinkologne": ["1.59677419354839", "1.22222222222222"] + }, { + "omanyte": ["0.911111111111111"] + }, { + "omastar": ["1.546875"] + }, { + "onix": ["3.13382608695652"] + }, { + "oranguru": ["2"] + }, { + "orbeetle": ["0.640625", "3.71681415929204"] + }, { + "oricorio": ["0.897058823529412", "1.01666666666667", "1.05172413793103", "1.03389830508475"] + }, { + "orthworm": ["1.81159420289855"] + }, { + "oshawott": ["1.04081632653061"] + }, { + "overqwil": ["2.09243697478992"] + }, { + "pachirisu": ["0.546666666666667", "0.546666666666667"] + }, { + "palafin": ["2.36363636363636", "1.76470588235294"] + }, { + "palkia": ["3.91588785046729"] + }, { + "palossand": ["1.73333333333333"] + }, { + "palpitoad": ["1.1969696969697"] + }, { + "pancham": ["0.953125"] + }, { + "pangoro": ["2.06862745098039"] + }, { + "panpour": ["0.953125"] + }, { + "pansage": ["0.924242424242424"] + }, { + "pansear": ["0.968253968253968"] + }, { + "paras": ["0.882352941176471"] + }, { + "parasect": ["1.59677419354839"] + }, { + "passimian": ["1.62972972972973"] + }, { + "patrat": ["0.927272727272727"] + }, { + "pawniard": ["0.75"] + }, { + "pelipper": ["1.29347826086957"] + }, { + "perrserker": ["1.01282051282051"] + }, { + "persian": ["1.41428571428571", "1.51388888888889"] + }, { + "petilil": ["0.739130434782609"] + }, { + "phanpy": ["1.02"] + }, { + "phantump": ["0.683333333333333"] + }, { + "pheromosa": ["1.8"] + }, { + "phione": ["0.732142857142857"] + }, { + "pichu": ["0.576923076923077"] + }, { + "pidgeot": ["1.60887096774194", "2.02583333333333"] + }, { + "pidgeotto": ["1.52093023255814"] + }, { + "pidgey": ["0.612244897959184"] + }, { + "pidove": ["0.612244897959184"] + }, { + "pignite": ["1.26923076923077"] + }, { + "pikachu": ["0.683333333333333", "0.626666666666667", "0.626666666666667", "4.06645161290323", "0.732142857142857", "0.630769230769231", "0.640625", "0.640625"] + }, { + "pikipek": ["0.535714285714286"] + }, { + "piloswine": ["1.51388888888889", "1.51388888888889"] + }, { + "pincurchin": ["0.652173913043478"] + }, { + "pineco": ["1.03389830508475"] + }, { + "pinsir": ["1.97368421052632", "1.54545454545455"] + }, { + "piplup": ["0.694915254237288"] + }, { + "plusle": ["0.694915254237288"] + }, { + "poipole": ["0.782051282051282"] + }, { + "politoed": ["1.41558441558442", "1.41558441558442"] + }, { + "poliwag": ["1.525"] + }, { + "poliwhirl": ["1.98"] + }, { + "poliwrath": ["2.06349206349206"] + }, { + "polteageist": ["0.240963855421687"] + }, { + "ponyta": ["1.45588235294118", "1.11267605633803"] + }, { + "poochyena": ["0.944444444444444"] + }, { + "popplio": ["0.836734693877551"] + }, { + "porygon": ["1.49056603773585"] + }, { + "porygon-z": ["1.30882352941176"] + }, { + "porygon2": ["0.968253968253968"] + }, { + "primarina": ["1.66666666666667"] + }, { + "primeape": ["1.52307692307692"] + }, { + "prinplup": ["1.05333333333333"] + }, { + "probopass": ["1.7283950617284"] + }, { + "psyduck": ["1.49056603773585"] + }, { + "pumpkaboo": ["0.694915254237288", "0.784615384615385", "0.6", "1.02597402597403"] + }, { + "pupitar": ["1.75"] + }, { + "purrloin": ["0.585714285714286"] + }, { + "purugly": ["1.22222222222222"] + }, { + "pyroar": ["1.51515151515152", "1.57894736842105"] + }, { + "pyukumuku": ["0.769230769230769"] + }, { + "quagsire": ["1.81818181818182", "1.81818181818182"] + }, { + "quaquaval": ["1.61860465116279"] + }, { + "quaxly": ["0.85"] + }, { + "quaxwell": ["1.43373493975904"] + }, { + "quilava": ["1.48333333333333"] + }, { + "quilladin": ["1.04411764705882"] + }, { + "qwilfish": ["1.02"] + }, { + "raboot": ["0.734939759036145"] + }, { + "rabsca": ["0.258620689655172"] + }, { + "raichu": ["0.766990291262136", "0.763440860215054"] + }, { + "raikou": ["2.32926829268293"] + }, { + "ralts": ["0.788461538461538"] + }, { + "rampardos": ["1.79775280898876"] + }, { + "rapidash": ["1.78947368421053", "1.73469387755102"] + }, { + "raticate": ["1.109375", "1.20338983050847"] + }, { + "rattata": ["0.491803278688525", "0.576923076923077"] + }, { + "rayquaza": ["2.18954248366013", "2.73972602739726"] + }, { + "regice": ["2.19512195121951"] + }, { + "regidrago": ["1.75833333333333"] + }, { + "regieleki": ["1.615"] + }, { + "regigigas": ["3.86458333333333"] + }, { + "regirock": ["2.04819277108434"] + }, { + "registeel": ["2.48051948051948"] + }, { + "relicanth": ["1.45588235294118"] + }, { + "rellor": ["0.384615384615385"] + }, { + "remoraid": ["0.983870967741936"] + }, { + "reshiram": ["2.78260869565217"] + }, { + "reuniclus": ["1.32"] + }, { + "revavroom": ["2.53521126760563"] + }, { + "rhydon": ["2.32926829268293", "2.32926829268293"] + }, { + "rhyhorn": ["1.73684210526316", "1.73684210526316"] + }, { + "rhyperior": ["2.54255319148936", "2.62637362637363"] + }, { + "ribombee": ["0.3125"] + }, { + "rillaboom": ["1.72950819672131", "4.44285714285714"] + }, { + "riolu": ["1.16393442622951"] + }, { + "rockruff": ["0.894736842105263"] + }, { + "roggenrola": ["0.683333333333333"] + }, { + "rolycoly": ["0.652173913043478"] + }, { + "rookidee": ["0.476190476190476"] + }, { + "roselia": ["0.517241379310345", "0.508474576271186"] + }, { + "roserade": ["1.14102564102564", "1.14102564102564"] + }, { + "rotom": ["0.428571428571429", "0.405405405405405", "0.461538461538462", "0.483870967741936", "0.508474576271186", "0.46875"] + }, { + "rowlet": ["0.6"] + }, { + "rufflet": ["0.784615384615385"] + }, { + "runerigus": ["1.83908045977012"] + }, { + "sableye": ["0.796875", "0.68"] + }, { + "salamence": ["1.6304347826087", "2.53521126760563"] + }, { + "salandit": ["1.29787234042553"] + }, { + "salazzle": ["1.35227272727273"] + }, { + "samurott": ["1.38888888888889", "1.54639175257732"] + }, { + "sandaconda": ["1.63285714285714", "5.28"] + }, { + "sandile": ["1.51063829787234"] + }, { + "sandshrew": ["1.29787234042553", "1.54347826086957"] + }, { + "sandslash": ["1.45588235294118", "1.41666666666667"] + }, { + "sandygast": ["0.796875"] + }, { + "sawk": ["1.68674698795181"] + }, { + "sawsbuck": ["1.91", "1.75229357798165", "1.73636363636364", "1.89108910891089"] + }, { + "scatterbug": ["0.535714285714286"] + }, { + "sceptile": ["1.82795698924731", "1.96907216494845"] + }, { + "scizor": ["1.93548387096774", "1.95145631067961"] + }, { + "scolipede": ["2.00806451612903"] + }, { + "scorbunny": ["0.319148936170213"] + }, { + "scovillain": ["1.36923076923077"] + }, { + "scrafty": ["1.41558441558442"] + }, { + "scraggy": ["0.968253968253968"] + }, { + "scyther": ["1.47058823529412", "1.47058823529412"] + }, { + "seadra": ["1.60810810810811"] + }, { + "seaking": ["1.88405797101449", "1.88405797101449"] + }, { + "sealeo": ["2.18"] + }, { + "seedot": ["1.10869565217391"] + }, { + "seel": ["2.42222222222222"] + }, { + "seismitoad": ["1.66666666666667"] + }, { + "sentret": ["1.43636363636364"] + }, { + "serperior": ["1.2962962962963"] + }, { + "servine": ["0.963414634146341"] + }, { + "seviper": ["2.44545454545455"] + }, { + "sewaddle": ["0.638297872340426"] + }, { + "sharpedo": ["1.76470588235294", "2.59375"] + }, { + "shaymin": ["0.465116279069767", "0.561643835616438"] + }, { + "shedinja": ["1.36206896551724"] + }, { + "shelgon": ["1.84745762711864"] + }, { + "shellder": ["0.810810810810811"] + }, { + "shellos": ["0.483870967741936", "0.5"] + }, { + "shelmet": ["0.836734693877551"] + }, { + "shieldon": ["0.927272727272727"] + }, { + "shiftry": ["1.66666666666667"] + }, { + "shiinotic": ["1.41428571428571"] + }, { + "shinx": ["0.864406779661017", "0.944444444444444"] + }, { + "shroomish": ["1.13888888888889"] + }, { + "shuckle": ["1.07017543859649"] + }, { + "shuppet": ["0.968253968253968"] + }, { + "sigilyph": ["1.1965811965812"] + }, { + "silcoon": ["1.56410256410256"] + }, { + "silicobra": ["1.60727272727273"] + }, { + "silvally": ["1.90909090909091", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897"] + }, { + "simipour": ["1.19277108433735"] + }, { + "simisage": ["1.14736842105263"] + }, { + "simisear": ["1.22222222222222"] + }, { + "sinistea": ["0.277777777777778"] + }, { + "sirfetchd": ["1.12056737588652"] + }, { + "sizzlipede": ["3.08695652173913"] + }, { + "skarmory": ["2.65625"] + }, { + "skiddo": ["1.41269841269841"] + }, { + "skiploom": ["1.48780487804878"] + }, { + "skitty": ["1.10909090909091"] + }, { + "skeledirge": ["2.10526315789474"] + }, { + "skorupi": ["1.234375"] + }, { + "skrelp": ["0.662337662337662"] + }, { + "skuntank": ["1.25316455696203"] + }, { + "skwovet": ["0.326086956521739"] + }, { + "slaking": ["2.79166666666667"] + }, { + "slakoth": ["0.866451612903226"] + }, { + "sliggoo": ["0.963414634146341", "0.845238095238095"] + }, { + "slowbro": ["2.25352112676056", "2.13333333333333", "2.31034482758621"] + }, { + "slowking": ["2.36470588235294", "2.11764705882353"] + }, { + "slowpoke": ["1.23103448275862", "1.428"] + }, { + "slugma": ["1.12698412698413"] + }, { + "slurpuff": ["1.12857142857143"] + }, { + "smeargle": ["1.60810810810811"] + }, { + "smoliv": ["0.625"] + }, { + "smoochum": ["0.672131147540984"] + }, { + "sneasel": ["1.23611111111111", "1.41269841269841", "1.25352112676056", "1.41269841269841"] + }, { + "sneasler": ["1.49425287356322"] + }, { + "snivy": ["1.10909090909091"] + }, { + "snom": ["0.75"] + }, { + "snorlax": ["2.6375", "8.203125"] + }, { + "snorunt": ["1.51063829787234"] + }, { + "snover": ["1.62295081967213", "1.62295081967213"] + }, { + "snubbull": ["1.05172413793103"] + }, { + "sobble": ["0.434782608695652"] + }, { + "solgaleo": ["2.50526315789474"] + }, { + "solosis": ["0.666666666666667"] + }, { + "solrock": ["1.50632911392405"] + }, { + "spearow": ["0.576923076923077"] + }, { + "spewpa": ["0.697674418604651"] + }, { + "spheal": ["1.88095238095238"] + }, { + "spectrier": ["1.86111111111111"] + }, { + "spidops": ["1.32"] + }, { + "spinarak": ["1.88888888888889"] + }, { + "spinda": ["1.57971014492754"] + }, { + "spiritomb": ["1.35616438356164"] + }, { + "spoink": ["0.739583333333333"] + }, { + "sprigatito": ["0.745454545454546"] + }, { + "spritzee": ["0.327868852459016"] + }, { + "squirtle": ["0.944444444444444"] + }, { + "stakataka": ["5.45544554455446"] + }, { + "stantler": ["1.52173913043478"] + }, { + "staraptor": ["0.993920454545455", "0.993920454545455"] + }, { + "staravia": ["0.705", "0.705"] + }, { + "starly": ["0.652173913043478", "0.652173913043478"] + }, { + "starmie": ["1.78688524590164"] + }, { + "staryu": ["1.58"] + }, { + "steelix": ["3.58847619047619", "3.60343511450382"] + }, { + "steenee": ["0.922077922077922"] + }, { + "stonjourner": ["2.41747572815534"] + }, { + "stoutland": ["1.35227272727273"] + }, { + "stufful": ["0.944444444444444"] + }, { + "stunfisk": ["2.13", "0.523770491803279"] + }, { + "stunky": ["0.621212121212121"] + }, { + "sudowoodo": ["1.8030303030303", "1.859375"] + }, { + "suicune": ["2.33720930232558"] + }, { + "sunflora": ["1.06756756756757"] + }, { + "sunkern": ["0.681818181818182"] + }, { + "surskit": ["0.980769230769231"] + }, { + "swablu": ["0.773584905660377"] + }, { + "swadloon": ["0.894736842105263"] + }, { + "swalot": ["2.42857142857143", "2.42857142857143"] + }, { + "swampert": ["1.66666666666667", "2.3875"] + }, { + "swanna": ["1.05776397515528"] + }, { + "swellow": ["1.61363636363636"] + }, { + "swinub": ["1.24242424242424"] + }, { + "swirlix": ["0.836734693877551"] + }, { + "swoobat": ["1.0896261682243"] + }, { + "sylveon": ["1.15116279069767"] + }, { + "tadbulb": ["0.526315789473684"] + }, { + "taillow": ["0.652173913043478"] + }, { + "talonflame": ["0.997027027027027"] + }, { + "tandemaus": ["0.566037735849057"] + }, { + "tangela": ["1.86792452830189"] + }, { + "tangrowth": ["2.45121951219512", "2.45121951219512"] + }, { + "tapubulu": ["1.83653846153846"] + }, { + "tapufini": ["1.41304347826087"] + }, { + "tapukoko": ["1.89473684210526"] + }, { + "tapulele": ["1.41666666666667"] + }, { + "tarountula": ["0.405405405405405"] + }, { + "tauros": ["1.47368421052632"] + }, { + "teddiursa": ["1.07017543859649"] + }, { + "tentacool": ["1.21917808219178"] + }, { + "tentacruel": ["1.88235294117647"] + }, { + "tepig": ["0.82258064516129"] + }, { + "terrakion": ["2.27380952380952"] + }, { + "thievul": ["1.27956989247312"] + }, { + "throh": ["1.47727272727273"] + }, { + "thundurus": ["1.45631067961165", "2.77777777777778"] + }, { + "thwackey": ["0.731958762886598"] + }, { + "timburr": ["1"] + }, { + "tirtouga": ["2.21875"] + }, { + "togedemaru": ["0.483870967741936"] + }, { + "togekiss": ["2.5"] + }, { + "togepi": ["0.638297872340426"] + }, { + "togetic": ["0.859154929577465"] + }, { + "torchic": ["0.672131147540984", "0.672131147540984"] + }, { + "torkoal": ["0.662337662337662"] + }, { + "tornadus": ["1.5", "1.03703703703704"] + }, { + "torracat": ["0.959459459459459"] + }, { + "torterra": ["2.08490566037736"] + }, { + "totodile": ["1.05172413793103"] + }, { + "toucannon": ["1.43421052631579"] + }, { + "toxapex": ["0.865853658536585"] + }, { + "toxel": ["0.719298245614035"] + }, { + "toxicroak": ["1.60493827160494", "1.60493827160494"] + }, { + "toxtricity": ["1.29032258064516", "4.8", "1.32231404958678"] + }, { + "tranquill": ["0.491935483870968"] + }, { + "trapinch": ["1.57777777777778"] + }, { + "treecko": ["0.864406779661017"] + }, { + "trevenant": ["1.5"] + }, { + "tropius": ["2.54430379746835"] + }, { + "trubbish": ["1.07017543859649"] + }, { + "trumbeak": ["0.635416666666667"] + }, { + "tsareena": ["1.33707865168539"] + }, { + "turtonator": ["2.71621621621622"] + }, { + "turtwig": ["0.694915254237288"] + }, { + "tympole": ["1.34210526315789"] + }, { + "tynamo": ["0.769230769230769"] + }, { + "typenull": ["2.03191489361702"] + }, { + "typhlosion": ["1.78947368421053", "1.40350877192982"] + }, { + "tyranitar": ["1.6890756302521", "2.30555555555556"] + }, { + "tyrantrum": ["2.30555555555556"] + }, { + "tyrogue": ["1.02898550724638"] + }, { + "tyrunt": ["1.16176470588235"] + }, { + "umbreon": ["1.28571428571429"] + }, { + "unfezant": ["1.07267605633803", "1.07267605633803"] + }, { + "unown": ["0.838356164383562", "0.971428571428571", "1.07368421052632", "0.794805194805195", "1.0551724137931", "0.774683544303797", "1.13333333333333", "0.88695652173913", "1.2", "0.913432835820895", "1.09285714285714", "1.2", "0.85", "1.17692307692308", "1.07368421052632", "0.774683544303797", "1.15471698113208", "0.987096774193548", "1.13333333333333", "0.987096774193548", "0.88695652173913", "1.07368421052632", "1.24897959183673", "1.15471698113208", "0.987096774193548", "1.11272727272727", "1.224", "0.971428571428571"] + }, { + "ursaluna": ["2.62317073170732", "2.66336633663366"] + }, { + "ursaring": ["1.89473684210526", "1.89473684210526"] + }, { + "urshifu": ["1.5655737704918", "6.04375", "5.53404255319149", "1.76851851851852"] + }, { + "uxie": ["0.384615384615385"] + }, { + "vanillish": ["1.28235294117647"] + }, { + "vanillite": ["0.650793650793651"] + }, { + "vanilluxe": ["1.46067415730337"] + }, { + "vaporeon": ["1.375"] + }, { + "varoom": ["1.94117647058824"] + }, { + "veluza": ["1.63322580645161"] + }, { + "venipede": ["0.931818181818182"] + }, { + "venomoth": ["1.76470588235294"] + }, { + "venonat": ["1.57142857142857"] + }, { + "venusaur": ["2.61038961038961", "6.92307692307692", "2.62637362637363"] + }, { + "vespiquen": ["1.35227272727273"] + }, { + "vibrava": ["2.18"] + }, { + "victini": ["0.561643835616438"] + }, { + "victreebel": ["2.125"] + }, { + "vigoroth": ["1.75"] + }, { + "vikavolt": ["1.92307692307692"] + }, { + "vileplume": ["2.125", "2.125"] + }, { + "virizion": ["2.07216494845361"] + }, { + "vivillon": ["1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077"] + }, { + "volbeat": ["0.959459459459459"] + }, { + "volcanion": ["1.86813186813187"] + }, { + "volcarona": ["1.72043010752688"] + }, { + "voltorb": ["1.18604651162791", "1.15909090909091"] + }, { + "vullaby": ["1.08510638297872"] + }, { + "vulpix": ["1.29787234042553", "1.29787234042553"] + }, { + "wailmer": ["2.95588235294118"] + }, { + "wailord": ["9.84567901234568"] + }, { + "walrein": ["1.97183098591549"] + }, { + "wartortle": ["1.35616438356164"] + }, { + "watchog": ["1.37974683544304"] + }, { + "weavile": ["1.3974358974359", "1.3974358974359"] + }, { + "weedle": ["0.566037735849057"] + }, { + "weepinbell": ["1.94117647058824"] + }, { + "weezing": ["1.35227272727273", "1.35227272727273"] + }, { + "whimsicott": ["1.05970149253731"] + }, { + "whirlipede": ["1.83076923076923"] + }, { + "whiscash": ["1.43548387096774"] + }, { + "whismur": ["1.27083333333333"] + }, { + "wigglytuff": ["1.45588235294118"] + }, { + "wiglett": ["1.4875"] + }, { + "wimpod": ["1.37837837837838"] + }, { + "wingull": ["1.01666666666667"] + }, { + "wishiwashi": ["0.540540540540541", "4.85436893203883"] + }, { + "wobbuffet": ["1.91176470588235", "1.91176470588235"] + }, { + "woobat": ["0.732142857142857"] + }, { + "wooloo": ["1.01666666666667"] + }, { + "wooper": ["0.872340425531915", "0.872340425531915"] + }, { + "wormadam": ["0.621951219512195", "0.662337662337662", "0.621951219512195"] + }, { + "wugtrio": ["1.7"] + }, { + "wurmple": ["0.566037735849057"] + }, { + "wynaut": ["1.15094339622642"] + }, { + "wyrdeer": ["1.53846153846154"] + }, { + "xatu": ["2.32758620689655", "2.14285714285714"] + }, { + "xerneas": ["2.4", "2.36220472440945"] + }, { + "xurkitree": ["4.53571428571429"] + }, { + "yamask": ["0.761194029850746", "0.6375"] + }, { + "yamper": ["0.555555555555556"] + }, { + "yanma": ["0.928818181818182"] + }, { + "yanmega": ["1.6534328358209"] + }, { + "yungoos": ["1.13888888888889"] + }, { + "yveltal": ["4.43489361702128"] + }, { + "zacian": ["2.93684210526316", "2.51351351351351"] + }, { + "zamazenta": ["3.25842696629214", "2.58928571428571"] + }, { + "zangoose": ["1.66666666666667"] + }, { + "zapdos": ["1.50943396226415", "1.6"] + }, { + "zarude": ["1.65137614678899", "1.65137614678899"] + }, { + "zebstrika": ["1.66666666666667"] + }, { + "zekrom": ["2.13235294117647"] + }, { + "zeraora": ["2.30769230769231", "1.30434782608696"] + }, { + "zigzagoon": ["0.872340425531915", "0.694915254237288"] + }, { + "zoroark": ["1.70212765957447", "1.36752136752137"] + }, { + "zorua": ["1.12698412698413", "0.731958762886598"] + }, { + "zubat": ["1.3314606741573", "1.41071428571429"] + }, { + "zweilous": ["1.77215189873418"] + }, { + "zygarde": ["3.42990654205607", "1.63013698630137", "4.09090909090909"] + }] + + fakemonsize = [{ + "astrolotl": ["1.8252427184466"] + }, { + "aurumoth": ["0.274509803921569"] + }, { + "colossoil": ["3.01162790697674"] + }, { + "crucibelle": ["0.637362637362637", "0.568627450980392"] + }, { + "equilibra": ["2.68539325842697"] + }, { + "fidgit": ["0.775510204081633"] + }, { + "jumbao": ["2.39"] + }, { + "justyke": ["0"] + }, { + "kerfluffle": ["1.78409090909091", "1.78409090909091"] + }, { + "kitsunoh": ["1.8030303030303", "1.8030303030303"] + }, { + "krilowatt": ["0.644444444444445"] + }, { + "malaconda": ["2.34210526315789"] + }, { + "miasmaw": ["1.68817204301075"] + }, { + "mollux": ["1.14492753623188"] + }, { + "mumbao": ["0.840579710144928"] + }, { + "necturna": ["0.25"] + }, { + "pajantom": ["1.07920792079208"] + }, { + "plasmanta": ["0.266666666666667"] + }, { + "pluffle": ["0.891891891891892"] + }, { + "protowatt": ["1.03571428571429", "1.03571428571429"] + }, { + "pyroak": ["2.69791666666667"] + }, { + "scratchet": ["1.02597402597403"] + }, { + "smogecko": ["0.655172413793103"] + }, { + "smoguana": ["0.506666666666667"] + }, { + "smokomodo": ["1.48936170212766"] + }, { + "stratagem": ["0.304347826086957"] + }, { + "tomohawk": ["0.774509803921569"] + }, { + "volkraken": ["0.373333333333333"] + }, { + "voodoom": ["1.23958333333333"] + }] \ No newline at end of file diff --git a/scripts/background_pokemon-size-silly-gmax.js b/scripts/background_pokemon-size-silly-gmax.js new file mode 100644 index 0000000..473348b --- /dev/null +++ b/scripts/background_pokemon-size-silly-gmax.js @@ -0,0 +1,1957 @@ +pokemonsize = [{ + "abomasnow": ["2.54022988505747", "2.44545454545455"] + }, { + "abra": ["1.67924528301887"] + }, { + "absol": ["1.29347826086957", "1.22680412371134"] + }, { + "accelgor": ["0.963414634146341"] + }, { + "aegislash": ["1.63461538461538", "1.63461538461538"] + }, { + "aerodactyl": ["1.44827586206897", "2.00714285714286"] + }, { + "aggron": ["2.17525773195876", "2.18811881188119"] + }, { + "aipom": ["1.1969696969697", "1.1969696969697"] + }, { + "alakazam": ["1.89873417721519", "1.27692173913043"] + }, { + "alcremie": ["0.410958904109589", "0.410958904109589", "19.4805194805195", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589", "0.410958904109589"] + }, { + "alomomola": ["1.19"] + }, { + "altaria": ["1.2247191011236", "1.37323943661972"] + }, { + "amaura": ["1.44444444444444"] + }, { + "ambipom": ["1.35227272727273", "1.35227272727273"] + }, { + "amoonguss": ["0.813333333333333"] + }, { + "ampharos": ["1.38613861386139", "1.25"] + }, { + "anorith": ["1.91891891891892"] + }, { + "appletun": ["0.539473684210526", "15.6862745098039"] + }, { + "applin": ["0.454545454545455"] + }, { + "araquanid": ["2.6865671641791"] + }, { + "arbok": ["2.53734939759036"] + }, { + "arboliva": ["1.1965811965812"] + }, { + "arcanine": ["2.32926829268293", "2.36470588235294"] + }, { + "arceus": ["2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965", "2.80701754385965"] + }, { + "archen": ["0.980769230769231"] + }, { + "archeops": ["1.41732283464567"] + }, { + "arctovish": ["2.28409090909091"] + }, { + "arctozolt": ["2.35714285714286"] + }, { + "ariados": ["1.78688524590164"] + }, { + "armaldo": ["1.85185185185185"] + }, { + "aromatisse": ["0.9875"] + }, { + "aron": ["0.911111111111111"] + }, { + "arrokuda": ["1.21428571428571"] + }, { + "articuno": ["1.39181286549708", "1.39160839160839"] + }, { + "audino": ["1.45333333333333", "1.5625"] + }, { + "aurorus": ["2.1869918699187"] + }, { + "avalugg": ["3.52631578947368", "2.45614035087719"] + }, { + "axew": ["0.924242424242424"] + }, { + "azelf": ["0.348837209302326"] + }, { + "azumarill": ["0.877777777777778"] + }, { + "azurill": ["0.277777777777778"] + }, { + "bagon": ["1.03389830508475"] + }, { + "baltoy": ["0.85"] + }, { + "banette": ["1.1010101010101", "1.77611940298507"] + }, { + "barbaracle": ["1.19266055045872"] + }, { + "barboach": ["0.976190476190476"] + }, { + "barraskewda": ["1.23606557377049"] + }, { + "basculegion": ["1.22222222222222", "1.22222222222222"] + }, { + "basculin": ["1.65", "1.65"] + }, { + "bastiodon": ["1.625", "1.625"] + }, { + "bayleef": ["1.41666666666667"] + }, { + "beartic": ["2.49038461538462"] + }, { + "beautifly": ["1.19277108433735", "1.19277108433735"] + }, { + "beedrill": ["1.15116279069767", "1.7283950617284"] + }, { + "beheeyem": ["1.17857142857143"] + }, { + "beldum": ["1.84848484848485"] + }, { + "bellibolt": ["1.8030303030303"] + }, { + "bellossom": ["0.745454545454546"] + }, { + "bellsprout": ["1.44897959183673"] + }, { + "bergmite": ["1.65"] + }, { + "bewear": ["2.67088607594937"] + }, { + "bibarel": ["1.76785714285714", "1.76785714285714"] + }, { + "bidoof": ["1.10869565217391", "1.10869565217391"] + }, { + "binacle": ["0.71830985915493"] + }, { + "bisharp": ["1.61616161616162"] + }, { + "blacephalon": ["2.30769230769231"] + }, { + "blastoise": ["1.92771084337349", "1.40350877192982", "18.7894736842105"] + }, { + "blaziken": ["2.03191489361702", "1.78504672897196"] + }, { + "blipbug": ["0.577464788732394"] + }, { + "blissey": ["2.02702702702703"] + }, { + "blitzle": ["0.940476190476191"] + }, { + "boldore": ["1.32835820895522"] + }, { + "boltund": ["1.1"] + }, { + "bonsly": ["1.83908045977012"] + }, { + "bouffalant": ["1.83908045977012"] + }, { + "bounsweet": ["0.588235294117647"] + }, { + "braixen": ["1.15116279069767"] + }, { + "braviary": ["1.34659090909091", "1.48231707317073"] + }, { + "breloom": ["1.63013698630137"] + }, { + "brionne": ["0.859154929577465"] + }, { + "bronzong": ["1.78082191780822"] + }, { + "bronzor": ["0.927272727272727"] + }, { + "bruxish": ["1.23611111111111"] + }, { + "budew": ["0.408163265306122"] + }, { + "buizel": ["1.02898550724638", "1.02898550724638"] + }, { + "bulbasaur": ["1.44897959183673"] + }, { + "buneary": ["0.561643835616438"] + }, { + "bunnelby": ["0.445652173913043"] + }, { + "burmy": ["0.327868852459016", "0.327868852459016", "0.327868852459016"] + }, { + "butterfree": ["1.2247191011236", "13.484126984127"] + }, { + "buzzwole": ["2.54255319148936"] + }, { + "cacnea": ["0.82"] + }, { + "cacturne": ["1.49425287356322", "1.49425287356322"] + }, { + "calyrex": ["1.02830188679245", "2.17272727272727", "2.17272727272727"] + }, { + "camerupt": ["2.69014084507042", "2.82954545454545"] + }, { + "capsakid": ["0.625"] + }, { + "carbink": ["0.526315789473684"] + }, { + "carkol": ["1.2247191011236"] + }, { + "carnivine": ["1.53846153846154"] + }, { + "carracosta": ["1.4"] + }, { + "carvanha": ["1.09722222222222"] + }, { + "cascoon": ["1.775"] + }, { + "castform": ["0.508474576271186", "0.428571428571429", "0.46875", "0.434782608695652"] + }, { + "caterpie": ["0.666666666666667"] + }, { + "celebi": ["0.938461538461539"] + }, { + "celesteela": ["8.75238095238095"] + }, { + "centiskorch": ["1.13445378151261", "11.1570247933884"] + }, { + "cetitan": ["6.16438356164384"] + }, { + "cetoddle": ["1.83076923076923"] + }, { + "chandelure": ["0.916666666666667"] + }, { + "chansey": ["1.87931034482759"] + }, { + "charizard": ["1.55", "18.66", "1.58878504672897", "1.2289156626506"] + }, { + "charjabug": ["1.0625"] + }, { + "charmander": ["1.07017543859649"] + }, { + "charmeleon": ["1.55714285714286"] + }, { + "chatot": ["0.85"] + }, { + "cherrim": ["0.894736842105263", "0.761194029850746"] + }, { + "cherubi": ["0.854166666666667"] + }, { + "chesnaught": ["1.50943396226415"] + }, { + "chespin": ["0.640625"] + }, { + "chewtle": ["0.5"] + }, { + "chikorita": ["1.41269841269841"] + }, { + "chimchar": ["0.728571428571429"] + }, { + "chimecho": ["0.835616438356164"] + }, { + "chinchou": ["0.962264150943396"] + }, { + "chingling": ["0.303030303030303"] + }, { + "cinccino": ["0.80952380952381"] + }, { + "cinderace": ["1.2280701754386", "21.9512195121951"] + }, { + "clamperl": ["0.773584905660377"] + }, { + "clauncher": ["0.980769230769231"] + }, { + "clawitzer": ["1.36842105263158"] + }, { + "claydol": ["1.76470588235294"] + }, { + "clefable": ["2"] + }, { + "clefairy": ["1.27083333333333"] + }, { + "cleffa": ["0.681818181818182"] + }, { + "clobbopus": ["1.15094339622642"] + }, { + "cloyster": ["1.76470588235294"] + }, { + "coalossal": ["2.14615384615385", "26.7579617834395"] + }, { + "cobalion": ["1.93577981651376"] + }, { + "cofagrigus": ["1.42857142857143"] + }, { + "combee": ["0.652173913043478", "0.652173913043478"] + }, { + "combusken": ["1.07228915662651", "1.15584415584416"] + }, { + "comfey": ["0.106382978723404"] + }, { + "conkeldurr": ["1.57303370786517"] + }, { + "copperajah": ["3.09278350515464", "16.2042253521127"] + }, { + "corphish": ["1.10909090909091"] + }, { + "corsola": ["0.884057971014493", "0.824324324324324"] + }, { + "corviknight": ["1.77345679012346", "12.4113475177305"] + }, { + "corvisquire": ["0.71219696969697"] + }, { + "cosmoem": ["0.144927536231884"] + }, { + "cosmog": ["0.338983050847458"] + }, { + "cottonee": ["0.75"] + }, { + "crabominable": ["2.17948717948718"] + }, { + "crabrawler": ["0.983870967741936"] + }, { + "cradily": ["1.875"] + }, { + "cramorant": ["1", "1", "1"] + }, { + "cranidos": ["1.30882352941176"] + }, { + "crawdaunt": ["1.47297297297297"] + }, { + "cresselia": ["1.5625"] + }, { + "croagunk": ["1.36538461538462", "1.36538461538462"] + }, { + "crobat": ["2.0018691588785"] + }, { + "crocalor": ["1.47761194029851"] + }, { + "croconaw": ["1.3974358974359"] + }, { + "crustle": ["1.68674698795181"] + }, { + "cryogonal": ["1.1010101010101"] + }, { + "cubchoo": ["0.864406779661017"] + }, { + "cubone": ["0.836734693877551"] + }, { + "cufant": ["1.83076923076923"] + }, { + "cursola": ["0.860869565217391"] + }, { + "cutiefly": ["0.175438596491228"] + }, { + "cyndaquil": ["1.13333333333333"] + }, { + "darkrai": ["1.29310344827586"] + }, { + "darmanitan": ["1.42857142857143", "1.0625", "1.60377358490566", "2.24137931034483"] + }, { + "dartrix": ["1.04411764705882"] + }, { + "darumaka": ["1", "1.26785714285714"] + }, { + "decidueye": ["1.6", "1.61616161616162"] + }, { + "dedenne": ["0.4"] + }, { + "deerling": ["0.859154929577465", "0.859154929577465", "0.859154929577465", "0.859154929577465"] + }, { + "deino": ["1.03947368421053"] + }, { + "delcatty": ["1.41558441558442"] + }, { + "delibird": ["1.25352112676056"] + }, { + "delphox": ["1.36363636363636"] + }, { + "deoxys": ["1.97674418604651", "1.77083333333333", "1.82795698924731", "1.80851063829787"] + }, { + "dewgong": ["1.97101449275362"] + }, { + "dewott": ["1.08219178082192"] + }, { + "dewpider": ["0.491803278688525"] + }, { + "dhelmise": ["4.34444444444444"] + }, { + "dialga": ["4.4344262295082"] + }, { + "diancie": ["0.788888888888889", "0.956140350877193"] + }, { + "diggersby": ["0.942857142857143"] + }, { + "diglett": ["0.571428571428571", "0.465116279069767"] + }, { + "ditto": ["0.857142857142857"] + }, { + "dodrio": ["1.76470588235294", "1.76470588235294"] + }, { + "doduo": ["2", "2"] + }, { + "dolliv": ["1.05172413793103"] + }, { + "dondozo": ["6.23188405797102"] + }, { + "donphan": ["1.62686567164179", "1.62686567164179"] + }, { + "dottler": ["0.836734693877551"] + }, { + "doublade": ["1.03947368421053"] + }, { + "dracovish": ["2.51086956521739"] + }, { + "dracozolt": ["2.43243243243243"] + }, { + "dragalge": ["1.31386861313869"] + }, { + "dragapult": ["2.44897959183673"] + }, { + "dragonair": ["2.5741935483871"] + }, { + "dragonite": ["2.25510204081633"] + }, { + "drakloak": ["2.15384615384615"] + }, { + "drampa": ["4.26923076923077"] + }, { + "drapion": ["1.52941176470588"] + }, { + "dratini": ["2.85714285714286"] + }, { + "drednaw": ["1.43478260869565", "20"] + }, { + "dreepy": ["1.24390243902439"] + }, { + "drifblim": ["1.33707865168539"] + }, { + "drifloon": ["0.546666666666667"] + }, { + "drilbur": ["0.612244897959184"] + }, { + "drizzile": ["0.922077922077922"] + }, { + "drowzee": ["1.73684210526316"] + }, { + "druddigon": ["1.53846153846154"] + }, { + "dubwool": ["1.36842105263158"] + }, { + "ducklett": ["0.82258064516129"] + }, { + "dugtrio": ["1.42", "1.44897959183673"] + }, { + "dudunsparce": ["1.53868852459016", "1.44444444444444"] + }, { + "dunsparce": ["1.21951219512195"] + }, { + "duosion": ["0.953125"] + }, { + "duraludon": ["1.65137614678899", "30.9352517985612"] + }, { + "durant": ["0.789473684210526"] + }, { + "dusclops": ["1.66666666666667"] + }, { + "dusknoir": ["2.18811881188119"] + }, { + "duskull": ["1.234375"] + }, { + "dustox": ["1.67605633802817", "1.67605633802817"] + }, { + "dwebble": ["0.714285714285714"] + }, { + "eelektrik": ["1.4875"] + }, { + "eelektross": ["1.64285714285714"] + }, { + "eevee": ["0.545454545454545", "10.3505747126437"] + }, { + "eiscue": ["1.52173913043478", "1.91780821917808"] + }, { + "ekans": ["1.675"] + }, { + "eldegoss": ["0.653846153846154"] + }, { + "electabuzz": ["1.3974358974359"] + }, { + "electivire": ["2.11764705882353"] + }, { + "electrike": ["1.60526315789474"] + }, { + "electrode": ["2.01694915254237", "2.01694915254237"] + }, { + "elekid": ["0.968253968253968"] + }, { + "elgyem": ["0.761194029850746"] + }, { + "emboar": ["1.56862745098039"] + }, { + "emolga": ["0.694915254237288"] + }, { + "empoleon": ["1.53153153153153"] + }, { + "enamorus": ["1.45454545454545", "1.45454545454545"] + }, { + "entei": ["2.42528735632184"] + }, { + "escavalier": ["0.98019801980198"] + }, { + "espathra": ["1.80188679245283"] + }, { + "espeon": ["1.15584415584416"] + }, { + "espurr": ["0.517241379310345"] + }, { + "eternatus": ["15.8650793650794", "66.2251655629139"] + }, { + "excadrill": ["0.89873417721519"] + }, { + "exeggcute": ["1.41379310344828"] + }, { + "exeggutor": ["2.03030303030303", "6.05555555555556"] + }, { + "exploud": ["1.78571428571429"] + }, { + "falinks": ["1.02040816326531"] + }, { + "farfetchd": ["1.58", "1.36206896551724"] + }, { + "farigiraf": ["2.5"] + }, { + "fearow": ["1.04896296296296"] + }, { + "feebas": ["1.17307692307692"] + }, { + "fennekin": ["0.694915254237288"] + }, { + "feraligatr": ["2.35714285714286"] + }, { + "ferroseed": ["0.953125"] + }, { + "ferrothorn": ["1.41428571428571"] + }, { + "finizen": ["2.36363636363636"] + }, { + "finneon": ["0.976190476190476"] + }, { + "flaaffy": ["1.17910447761194"] + }, { + "flabebe": ["0.128205128205128", "0.128205128205128", "0.128205128205128", "0.128205128205128", "0.128205128205128"] + }, { + "flapple": ["0.4", "15.6862745098039"] + }, { + "flareon": ["0.956989247311828"] + }, { + "fletchinder": ["0.663551401869159"] + }, { + "fletchling": ["0.697674418604651"] + }, { + "flittle": ["0.454545454545455"] + }, { + "floatzel": ["1.17204301075269", "1.17204301075269"] + }, { + "floette": ["0.210526315789474", "0.210526315789474", "0.222222222222222", "0.210526315789474", "0.210526315789474", "0.210526315789474"] + }, { + "floragato": ["1.14102564102564"] + }, { + "florges": ["1.09", "1.09", "1.09", "1.09", "1.09"] + }, { + "flygon": ["1.89622641509434"] + }, { + "fomantis": ["0.535714285714286"] + }, { + "foongus": ["0.416666666666667"] + }, { + "forretress": ["1.72463768115942"] + }, { + "fraxure": ["1.26923076923077"] + }, { + "frillish": ["1.38372093023256", "1.36781609195402"] + }, { + "froakie": ["0.576923076923077"] + }, { + "frogadier": ["1.05172413793103"] + }, { + "froslass": ["1.64556962025316"] + }, { + "frosmoth": ["1.35416666666667"] + }, { + "fuecoco": ["0.732142857142857"] + }, { + "furfrou": ["1.41666666666667", "1.45121951219512", "1.56578947368421", "1.38372093023256", "1.43373493975904", "1.54545454545455", "1.52564102564103", "1.60810810810811", "1.41666666666667", "1.43373493975904"] + }, { + "furret": ["1.08108108108108"] + }, { + "gabite": ["1.84210526315789", "1.84210526315789"] + }, { + "gallade": ["2.10526315789474", "1.61616161616162"] + }, { + "galvantula": ["1.61224489795918"] + }, { + "garbodor": ["2.17045454545455", "17.5083333333333"] + }, { + "garchomp": ["1.76851851851852", "1.78504672897196"] + }, { + "gardevoir": ["1.73913043478261", "1.63265306122449"] + }, { + "gastly": ["2.13114754098361"] + }, { + "gastrodon": ["1.15584415584416", "1.15584415584416"] + }, { + "genesect": ["1.6304347826087", "1.6304347826087", "1.6304347826087", "1.6304347826087", "1.6304347826087"] + }, { + "gengar": ["1.92307692307692", "18.009009009009", "1.52173913043478"] + }, { + "geodude": ["1.17142857142857", "0.953488372093023"] + }, { + "gible": ["1.24561403508772", "1.24561403508772"] + }, { + "gigalith": ["1.75257731958763"] + }, { + "girafarig": ["1.70454545454545", "1.70454545454545"] + }, { + "giratina": ["3.94736842105263", "3.81396103896104"] + }, { + "glaceon": ["0.9875"] + }, { + "glalie": ["2", "2.42528735632184"] + }, { + "glameow": ["0.515151515151515", "0.515151515151515"] + }, { + "glastrier": ["1.88888888888889"] + }, { + "gligar": ["1.21111111111111", "1.29761904761905"] + }, { + "gliscor": ["1.99009900990099"] + }, { + "gloom": ["1.49056603773585", "1.49056603773585"] + }, { + "gogoat": ["2.04819277108434"] + }, { + "golbat": ["1.4", "1.4"] + }, { + "goldeen": ["1.12962962962963", "1.12962962962963"] + }, { + "golduck": ["2.2972972972973"] + }, { + "golem": ["1.7948717948718", "1.95402298850575"] + }, { + "golett": ["1.52307692307692"] + }, { + "golisopod": ["2.5125"] + }, { + "golurk": ["2.58333333333333"] + }, { + "goodra": ["1.97058823529412", "1.47826086956522"] + }, { + "goomy": ["0.6"] + }, { + "gorebyss": ["1.94594594594595"] + }, { + "gossifleur": ["0.630769230769231"] + }, { + "gothita": ["0.694915254237288"] + }, { + "gothitelle": ["1.48514851485149"] + }, { + "gothorita": ["0.922077922077922"] + }, { + "gourgeist": ["1.07228915662651", "1.18478260869565", "0.959459459459459", "1.54545454545455"] + }, { + "granbull": ["1.66666666666667"] + }, { + "grapploct": ["1.88235294117647"] + }, { + "graveler": ["1.67796610169492", "1.67796610169492"] + }, { + "greavard": ["0.983870967741936"] + }, { + "greedent": ["0.61"] + }, { + "greninja": ["1.97368421052632", "1.66666666666667"] + }, { + "grimer": ["1.74509803921569", "1.36538461538462"] + }, { + "grimmsnarl": ["1.45631067961165", "22.5352112676056"] + }, { + "grookey": ["0.461538461538462"] + }, { + "grotle": ["1.57971014492754"] + }, { + "groudon": ["3.73404255319149", "5.05050505050505"] + }, { + "grovyle": ["1.12658227848101"] + }, { + "growlithe": ["1.24561403508772", "1.61224489795918"] + }, { + "grubbin": ["1.10810810810811"] + }, { + "grumpig": ["1.21917808219178"] + }, { + "gulpin": ["0.788461538461538"] + }, { + "gumshoos": ["0.89873417721519"] + }, { + "gurdurr": ["1.52564102564103"] + }, { + "guzzlord": ["6.26136363636364"] + }, { + "gyarados": ["5.38383838383838", "4.63524590163934"] + }, { + "hakamo-o": ["1.43373493975904"] + }, { + "happiny": ["1.15094339622642"] + }, { + "hariyama": ["2.6551724137931"] + }, { + "hatenna": ["0.585714285714286"] + }, { + "hatterene": ["1.77310924369748", "19.125"] + }, { + "hattrem": ["0.871428571428572"] + }, { + "haunter": ["2.19178082191781"] + }, { + "hawlucha": ["1.09722222222222"] + }, { + "haxorus": ["1.52542372881356"] + }, { + "heatmor": ["1.68674698795181"] + }, { + "heatran": ["2.65625"] + }, { + "heliolisk": ["1.26923076923077"] + }, { + "helioptile": ["0.944444444444444"] + }, { + "heracross": ["1.72413793103448", "1.53153153153153"] + }, { + "herdier": ["1.2027027027027"] + }, { + "hippopotas": ["1.49056603773585", "1.49056603773585"] + }, { + "hippowdon": ["1.74509803921569", "3.46551724137931"] + }, { + "hitmonchan": ["1.81818181818182"] + }, { + "hitmonlee": ["2.20588235294118"] + }, { + "hitmontop": ["1.97183098591549"] + }, { + "ho-oh": ["3.04270833333333"] + }, { + "honchkrow": ["0.787307692307692"] + }, { + "honedge": ["1"] + }, { + "hoopa": ["0.75", "5.15873015873016"] + }, { + "hoothoot": ["1.12698412698413"] + }, { + "hoppip": ["0.672131147540984"] + }, { + "horsea": ["0.719298245614035"] + }, { + "houndoom": ["1.62790697674419", "1.67543859649123"] + }, { + "houndour": ["1.03389830508475"] + }, { + "houndstone": ["2.54430379746835"] + }, { + "huntail": ["1.43846153846154"] + }, { + "hydreigon": ["1.38461538461538"] + }, { + "hypno": ["2.05128205128205", "2.05128205128205"] + }, { + "igglybuff": ["0.535714285714286"] + }, { + "illumise": ["0.938461538461539"] + }, { + "impidimp": ["0.661290322580645"] + }, { + "incineroar": ["1.875"] + }, { + "indeedee": ["1.2027027027027", "1.28985507246377"] + }, { + "infernape": ["1"] + }, { + "inkay": ["0.672131147540984"] + }, { + "inteleon": ["1.55284552845528", "20.7305699481865"] + }, { + "ivysaur": ["1.5"] + }, { + "jangmo-o": ["1.01666666666667"] + }, { + "jellicent": ["2.1047619047619", "2.14563106796117"] + }, { + "jigglypuff": ["1.10869565217391"] + }, { + "jirachi": ["0.441176470588235"] + }, { + "jolteon": ["1.14492753623188"] + }, { + "joltik": ["0.32258064516129"] + }, { + "jumpluff": ["0.963414634146341"] + }, { + "jynx": ["2.12121212121212"] + }, { + "kabuto": ["1.54545454545455"] + }, { + "kabutops": ["1.78082191780822"] + }, { + "kadabra": ["1.83098591549296", "1.83098591549296"] + }, { + "kakuna": ["1.05172413793103"] + }, { + "kangaskhan": ["2.54022988505747", "2.48314606741573"] + }, { + "karrablast": ["0.761194029850746"] + }, { + "kartana": ["0.36144578313253"] + }, { + "kecleon": ["1.47761194029851"] + }, { + "keldeo": ["1.59090909090909", "1.62790697674419"] + }, { + "kingdra": ["1.85567010309278"] + }, { + "kingler": ["1.56626506024096", "13.013698630137"] + }, { + "kirlia": ["1.16176470588235"] + }, { + "klang": ["0.772151898734177"] + }, { + "kleavor": ["1.74757281553398"] + }, { + "klefki": ["0.227272727272727"] + }, { + "klink": ["0.410958904109589"] + }, { + "klinklang": ["0.847222222222222"] + }, { + "koffing": ["0.792207792207792"] + }, { + "komala": ["0.683333333333333"] + }, { + "kommo-o": ["1.68421052631579"] + }, { + "krabby": ["0.82"] + }, { + "kricketot": ["0.491803278688525", "0.491803278688525"] + }, { + "kricketune": ["1.35616438356164", "1.35616438356164"] + }, { + "krokorok": ["1.30263157894737"] + }, { + "krookodile": ["1.59574468085106"] + }, { + "kubfu": ["0.847222222222222"] + }, { + "kyogre": ["2.45454545454545", "4.59375"] + }, { + "kyurem": ["3.2967032967033", "2.5", "2.578125", "2.75572519083969", "2.75572519083969"] + }, { + "lairon": ["1.53448275862069"] + }, { + "lampent": ["0.74390243902439"] + }, { + "landorus": ["1.61290322580645", "1.38297872340426"] + }, { + "lanturn": ["1.41666666666667"] + }, { + "lapras": ["2.96428571428571", "5.49618320610687"] + }, { + "larvesta": ["1.60294117647059"] + }, { + "larvitar": ["0.938461538461539"] + }, { + "latias": ["2.02898550724638", "2.33766233766234"] + }, { + "latios": ["2.5125", "2.8875"] + }, { + "leafeon": ["1.35616438356164"] + }, { + "leavanny": ["1.09174311926606"] + }, { + "lechonk": ["1.04081632653061"] + }, { + "ledian": ["1.68674698795181", "1.7948717948718"] + }, { + "ledyba": ["1.584", "1.68510638297872"] + }, { + "lickilicky": ["2.15189873417722"] + }, { + "lickitung": ["2.01694915254237"] + }, { + "liepard": ["1"] + }, { + "lileep": ["1.45588235294118"] + }, { + "lilligant": ["1.2247191011236", "1.27956989247312"] + }, { + "lillipup": ["0.745454545454546"] + }, { + "linoone": ["1.30769230769231", "0.910714285714286"] + }, { + "litleo": ["1"] + }, { + "litten": ["0.706896551724138"] + }, { + "litwick": ["0.441176470588235"] + }, { + "lokix": ["1.16470588235294"] + }, { + "lombre": ["1.91935483870968"] + }, { + "lopunny": ["1.36781609195402", "1.47727272727273"] + }, { + "lotad": ["1.64516129032258"] + }, { + "loudred": ["1.26923076923077"] + }, { + "lucario": ["1.23958333333333", "1.17821782178218"] + }, { + "ludicolo": ["1.66666666666667", "1.66666666666667"] + }, { + "lugia": ["4.10236220472441"] + }, { + "lumineon": ["1.41666666666667", "1.41666666666667"] + }, { + "lunala": ["3.95049504950495"] + }, { + "lunatone": ["1.546875"] + }, { + "lurantis": ["1.04705882352941"] + }, { + "luvdisc": ["1.41860465116279"] + }, { + "luxio": ["1.15584415584416", "1.15584415584416"] + }, { + "luxray": ["1.41414141414141", "1.41414141414141"] + }, { + "lycanroc": ["1.05333333333333", "0.877777777777778", "1.31325301204819"] + }, { + "machamp": ["1.6", "18.7894736842105"] + }, { + "machoke": ["1.72413793103448"] + }, { + "machop": ["1.25396825396825"] + }, { + "magby": ["1.14516129032258"] + }, { + "magcargo": ["1.12857142857143"] + }, { + "magearna": ["1.45588235294118", "1.45588235294118"] + }, { + "magikarp": ["1.48333333333333", "1.48333333333333"] + }, { + "magmar": ["1.60493827160494"] + }, { + "magmortar": ["1.79775280898876"] + }, { + "magnemite": ["0.857142857142857"] + }, { + "magneton": ["1.43478260869565"] + }, { + "magnezone": ["1.63013698630137"] + }, { + "makuhita": ["1.5"] + }, { + "malamar": ["1.42857142857143"] + }, { + "mamoswine": ["2.96428571428571", "2.96428571428571"] + }, { + "manaphy": ["0.545454545454545"] + }, { + "mandibuzz": ["1.18055555555556"] + }, { + "manectric": ["1.875", "1.63636363636364"] + }, { + "mankey": ["0.910714285714286"] + }, { + "mantine": ["1.27118644067797"] + }, { + "mantyke": ["2.25"] + }, { + "maractus": ["1.17857142857143"] + }, { + "mareanie": ["0.683333333333333"] + }, { + "mareep": ["1.12962962962963"] + }, { + "marill": ["0.854166666666667"] + }, { + "marowak": ["1.47761194029851", "1.1"] + }, { + "marshadow": ["1.12698412698413"] + }, { + "marshtomp": ["0.922077922077922"] + }, { + "masquerain": ["1.36206896551724"] + }, { + "maushold": ["0.566037735849057", "0.566037735849057"] + }, { + "mawile": ["1.12962962962963", "1.25316455696203"] + }, { + "medicham": ["1.44444444444444", "1.23809523809524"] + }, { + "meditite": ["1.03389830508475", "1.03389830508475"] + }, { + "meltan": ["0.526315789473684"] + }, { + "meganium": ["1.93548387096774", "1.76470588235294"] + }, { + "melmetal": ["3.77272727272727", "19.6771653543307"] + }, { + "meloetta": ["0.859154929577465", "0.685393258426966"] + }, { + "meowscarada": ["1.41509433962264"] + }, { + "meowstic": ["0.847222222222222", "0.835616438356164"] + }, { + "meowth": ["0.672131147540984", "0.683333333333333", "0.594202898550725", "20.61875"] + }, { + "mesprit": ["0.384615384615385"] + }, { + "metagross": ["2.19178082191781", "2.11016949152542"] + }, { + "metang": ["1.72463768115942"] + }, { + "metapod": ["1.31481481481481"] + }, { + "mew": ["0.803921568627451"] + }, { + "mewtwo": ["2.28409090909091", "2.38144329896907", "1.6304347826087"] + }, { + "mienfoo": ["1.32835820895522"] + }, { + "mienshao": ["1.45833333333333"] + }, { + "mightyena": ["1.25316455696203"] + }, { + "milcery": ["0.350877192982456"] + }, { + "milotic": ["2.24255319148936", "2.21894736842105"] + }, { + "miltank": ["1.56578947368421"] + }, { + "mime_jr": ["0.968253968253968"] + }, { + "mimikyu": ["0.298507462686567", "0.133333333333333"] + }, { + "minccino": ["0.672131147540984"] + }, { + "minior": ["0.422535211267606", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039", "0.38961038961039"] + }, { + "minun": ["0.694915254237288"] + }, { + "misdreavus": ["1.12698412698413"] + }, { + "mismagius": ["0.767241379310345"] + }, { + "moltres": ["1.66574585635359", "1.67731034482759"] + }, { + "monferno": ["0.978021978021978"] + }, { + "morelull": ["0.307692307692308"] + }, { + "morgrem": ["0.9875"] + }, { + "morpeko": ["0.517241379310345", "0.517241379310345"] + }, { + "mothim": ["1.03488372093023"] + }, { + "mr-mime": ["1.71052631578947", "1.59090909090909"] + }, { + "mr-rime": ["1.72413793103448"] + }, { + "mudbray": ["1.3943661971831"] + }, { + "mudkip": ["0.621212121212121"] + }, { + "mudsdale": ["2.79775280898876"] + }, { + "muk": ["1.50632911392405", "1.15116279069767"] + }, { + "munchlax": ["1.03389830508475"] + }, { + "munna": ["1.12962962962963"] + }, { + "murkrow": ["0.784615384615385", "0.85"] + }, { + "musharna": ["0.973214285714286"] + }, { + "naganadel": ["2.86507936507937"] + }, { + "natu": ["0.416666666666667"] + }, { + "necrozma": ["2.39", "4.02884615384615", "3.52777777777778", "6.51304347826087"] + }, { + "nickit": ["0.847222222222222"] + }, { + "nidoking": ["1.68674698795181"] + }, { + "nidoqueen": ["1.58536585365854"] + }, { + "nidoran_f": ["1"] + }, { + "nidoran_m": ["0.980769230769231"] + }, { + "nidorina": ["1.41071428571429"] + }, { + "nidorino": ["1.58928571428571"] + }, { + "nihilego": ["1.4"] + }, { + "nincada": ["1.7"] + }, { + "ninetales": ["1.41558441558442", "1.55714285714286"] + }, { + "ninjask": ["1.14492753623188"] + }, { + "noctowl": ["1.9047619047619"] + }, { + "noibat": ["0.53125"] + }, { + "noivern": ["1.59615384615385"] + }, { + "nosepass": ["1.70689655172414"] + }, { + "numel": ["1.26785714285714", "1.26785714285714"] + }, { + "nuzleaf": ["1.43478260869565", "1.43478260869565"] + }, { + "nymble": ["0.377358490566038"] + }, { + "obstagoon": ["1.50943396226415"] + }, { + "octillery": ["1.48333333333333", "1.50847457627119"] + }, { + "oddish": ["1.0625"] + }, { + "oinkologne": ["1.59677419354839", "1.22222222222222"] + }, { + "omanyte": ["0.911111111111111"] + }, { + "omastar": ["1.546875"] + }, { + "onix": ["3.13382608695652"] + }, { + "oranguru": ["2"] + }, { + "orbeetle": ["0.640625", "12.3893805309735"] + }, { + "oricorio": ["0.897058823529412", "1.01666666666667", "1.05172413793103", "1.03389830508475"] + }, { + "orthworm": ["1.81159420289855"] + }, { + "oshawott": ["1.04081632653061"] + }, { + "overqwil": ["2.09243697478992"] + }, { + "pachirisu": ["0.546666666666667", "0.546666666666667"] + }, { + "palafin": ["2.36363636363636", "1.76470588235294"] + }, { + "palkia": ["3.91588785046729"] + }, { + "palossand": ["1.73333333333333"] + }, { + "palpitoad": ["1.1969696969697"] + }, { + "pancham": ["0.953125"] + }, { + "pangoro": ["2.06862745098039"] + }, { + "panpour": ["0.953125"] + }, { + "pansage": ["0.924242424242424"] + }, { + "pansear": ["0.968253968253968"] + }, { + "paras": ["0.882352941176471"] + }, { + "parasect": ["1.59677419354839"] + }, { + "passimian": ["1.62972972972973"] + }, { + "patrat": ["0.927272727272727"] + }, { + "pawniard": ["0.75"] + }, { + "pelipper": ["1.29347826086957"] + }, { + "perrserker": ["1.01282051282051"] + }, { + "persian": ["1.41428571428571", "1.51388888888889"] + }, { + "petilil": ["0.739130434782609"] + }, { + "phanpy": ["1.02"] + }, { + "phantump": ["0.683333333333333"] + }, { + "pheromosa": ["1.8"] + }, { + "phione": ["0.732142857142857"] + }, { + "pichu": ["0.576923076923077"] + }, { + "pidgeot": ["1.60887096774194", "2.02583333333333"] + }, { + "pidgeotto": ["1.52093023255814"] + }, { + "pidgey": ["0.612244897959184"] + }, { + "pidove": ["0.612244897959184"] + }, { + "pignite": ["1.26923076923077"] + }, { + "pikachu": ["0.683333333333333", "0.626666666666667", "0.626666666666667", "13.5548387096774", "0.732142857142857", "0.630769230769231", "0.640625", "0.640625"] + }, { + "pikipek": ["0.535714285714286"] + }, { + "piloswine": ["1.51388888888889", "1.51388888888889"] + }, { + "pincurchin": ["0.652173913043478"] + }, { + "pineco": ["1.03389830508475"] + }, { + "pinsir": ["1.97368421052632", "1.54545454545455"] + }, { + "piplup": ["0.694915254237288"] + }, { + "plusle": ["0.694915254237288"] + }, { + "poipole": ["0.782051282051282"] + }, { + "politoed": ["1.41558441558442", "1.41558441558442"] + }, { + "poliwag": ["1.525"] + }, { + "poliwhirl": ["1.98"] + }, { + "poliwrath": ["2.06349206349206"] + }, { + "polteageist": ["0.240963855421687"] + }, { + "ponyta": ["1.45588235294118", "1.11267605633803"] + }, { + "poochyena": ["0.944444444444444"] + }, { + "popplio": ["0.836734693877551"] + }, { + "porygon": ["1.49056603773585"] + }, { + "porygon-z": ["1.30882352941176"] + }, { + "porygon2": ["0.968253968253968"] + }, { + "primarina": ["1.66666666666667"] + }, { + "primeape": ["1.52307692307692"] + }, { + "prinplup": ["1.05333333333333"] + }, { + "probopass": ["1.7283950617284"] + }, { + "psyduck": ["1.49056603773585"] + }, { + "pumpkaboo": ["0.694915254237288", "0.784615384615385", "0.6", "1.02597402597403"] + }, { + "pupitar": ["1.75"] + }, { + "purrloin": ["0.585714285714286"] + }, { + "purugly": ["1.22222222222222"] + }, { + "pyroar": ["1.51515151515152", "1.57894736842105"] + }, { + "pyukumuku": ["0.769230769230769"] + }, { + "quagsire": ["1.81818181818182", "1.81818181818182"] + }, { + "quaquaval": ["1.61860465116279"] + }, { + "quaxly": ["0.85"] + }, { + "quaxwell": ["1.43373493975904"] + }, { + "quilava": ["1.48333333333333"] + }, { + "quilladin": ["1.04411764705882"] + }, { + "qwilfish": ["1.02"] + }, { + "raboot": ["0.734939759036145"] + }, { + "rabsca": ["0.258620689655172"] + }, { + "raichu": ["0.766990291262136", "0.763440860215054"] + }, { + "raikou": ["2.32926829268293"] + }, { + "ralts": ["0.788461538461538"] + }, { + "rampardos": ["1.79775280898876"] + }, { + "rapidash": ["1.78947368421053", "1.73469387755102"] + }, { + "raticate": ["1.109375", "1.20338983050847"] + }, { + "rattata": ["0.491803278688525", "0.576923076923077"] + }, { + "rayquaza": ["2.18954248366013", "2.73972602739726"] + }, { + "regice": ["2.19512195121951"] + }, { + "regidrago": ["1.75833333333333"] + }, { + "regieleki": ["1.615"] + }, { + "regigigas": ["3.86458333333333"] + }, { + "regirock": ["2.04819277108434"] + }, { + "registeel": ["2.48051948051948"] + }, { + "relicanth": ["1.45588235294118"] + }, { + "rellor": ["0.384615384615385"] + }, { + "remoraid": ["0.983870967741936"] + }, { + "reshiram": ["2.78260869565217"] + }, { + "reuniclus": ["1.32"] + }, { + "revavroom": ["2.53521126760563"] + }, { + "rhydon": ["2.32926829268293", "2.32926829268293"] + }, { + "rhyhorn": ["1.73684210526316", "1.73684210526316"] + }, { + "rhyperior": ["2.54255319148936", "2.62637362637363"] + }, { + "ribombee": ["0.3125"] + }, { + "rillaboom": ["1.72950819672131", "4.44285714285714"] + }, { + "riolu": ["1.16393442622951"] + }, { + "rockruff": ["0.894736842105263"] + }, { + "roggenrola": ["0.683333333333333"] + }, { + "rolycoly": ["0.652173913043478"] + }, { + "rookidee": ["0.476190476190476"] + }, { + "roselia": ["0.517241379310345", "0.508474576271186"] + }, { + "roserade": ["1.14102564102564", "1.14102564102564"] + }, { + "rotom": ["0.428571428571429", "0.405405405405405", "0.461538461538462", "0.483870967741936", "0.508474576271186", "0.46875"] + }, { + "rowlet": ["0.6"] + }, { + "rufflet": ["0.784615384615385"] + }, { + "runerigus": ["1.83908045977012"] + }, { + "sableye": ["0.796875", "0.68"] + }, { + "salamence": ["1.6304347826087", "2.53521126760563"] + }, { + "salandit": ["1.29787234042553"] + }, { + "salazzle": ["1.35227272727273"] + }, { + "samurott": ["1.38888888888889", "1.54639175257732"] + }, { + "sandaconda": ["1.63285714285714", "5.28"] + }, { + "sandile": ["1.51063829787234"] + }, { + "sandshrew": ["1.29787234042553", "1.54347826086957"] + }, { + "sandslash": ["1.45588235294118", "1.41666666666667"] + }, { + "sandygast": ["0.796875"] + }, { + "sawk": ["1.68674698795181"] + }, { + "sawsbuck": ["1.91", "1.75229357798165", "1.73636363636364", "1.89108910891089"] + }, { + "scatterbug": ["0.535714285714286"] + }, { + "sceptile": ["1.82795698924731", "1.96907216494845"] + }, { + "scizor": ["1.93548387096774", "1.95145631067961"] + }, { + "scolipede": ["2.00806451612903"] + }, { + "scorbunny": ["0.319148936170213"] + }, { + "scovillain": ["1.36923076923077"] + }, { + "scrafty": ["1.41558441558442"] + }, { + "scraggy": ["0.968253968253968"] + }, { + "scyther": ["1.47058823529412", "1.47058823529412"] + }, { + "seadra": ["1.60810810810811"] + }, { + "seaking": ["1.88405797101449", "1.88405797101449"] + }, { + "sealeo": ["2.18"] + }, { + "seedot": ["1.10869565217391"] + }, { + "seel": ["2.42222222222222"] + }, { + "seismitoad": ["1.66666666666667"] + }, { + "sentret": ["1.43636363636364"] + }, { + "serperior": ["1.2962962962963"] + }, { + "servine": ["0.963414634146341"] + }, { + "seviper": ["2.44545454545455"] + }, { + "sewaddle": ["0.638297872340426"] + }, { + "sharpedo": ["1.76470588235294", "2.59375"] + }, { + "shaymin": ["0.465116279069767", "0.561643835616438"] + }, { + "shedinja": ["1.36206896551724"] + }, { + "shelgon": ["1.84745762711864"] + }, { + "shellder": ["0.810810810810811"] + }, { + "shellos": ["0.483870967741936", "0.5"] + }, { + "shelmet": ["0.836734693877551"] + }, { + "shieldon": ["0.927272727272727"] + }, { + "shiftry": ["1.66666666666667"] + }, { + "shiinotic": ["1.41428571428571"] + }, { + "shinx": ["0.864406779661017", "0.944444444444444"] + }, { + "shroomish": ["1.13888888888889"] + }, { + "shuckle": ["1.07017543859649"] + }, { + "shuppet": ["0.968253968253968"] + }, { + "sigilyph": ["1.1965811965812"] + }, { + "silcoon": ["1.56410256410256"] + }, { + "silicobra": ["1.60727272727273"] + }, { + "silvally": ["1.90909090909091", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897", "1.97435897435897"] + }, { + "simipour": ["1.19277108433735"] + }, { + "simisage": ["1.14736842105263"] + }, { + "simisear": ["1.22222222222222"] + }, { + "sinistea": ["0.277777777777778"] + }, { + "sirfetchd": ["1.12056737588652"] + }, { + "sizzlipede": ["3.08695652173913"] + }, { + "skarmory": ["2.65625"] + }, { + "skiddo": ["1.41269841269841"] + }, { + "skiploom": ["1.48780487804878"] + }, { + "skitty": ["1.10909090909091"] + }, { + "skeledirge": ["2.10526315789474"] + }, { + "skorupi": ["1.234375"] + }, { + "skrelp": ["0.662337662337662"] + }, { + "skuntank": ["1.25316455696203"] + }, { + "skwovet": ["0.326086956521739"] + }, { + "slaking": ["2.79166666666667"] + }, { + "slakoth": ["0.866451612903226"] + }, { + "sliggoo": ["0.963414634146341", "0.845238095238095"] + }, { + "slowbro": ["2.25352112676056", "2.13333333333333", "2.31034482758621"] + }, { + "slowking": ["2.36470588235294", "2.11764705882353"] + }, { + "slowpoke": ["1.23103448275862", "1.428"] + }, { + "slugma": ["1.12698412698413"] + }, { + "slurpuff": ["1.12857142857143"] + }, { + "smeargle": ["1.60810810810811"] + }, { + "smoliv": ["0.625"] + }, { + "smoochum": ["0.672131147540984"] + }, { + "sneasel": ["1.23611111111111", "1.41269841269841", "1.25352112676056", "1.41269841269841"] + }, { + "sneasler": ["1.49425287356322"] + }, { + "snivy": ["1.10909090909091"] + }, { + "snom": ["0.75"] + }, { + "snorlax": ["2.6375", "8.203125"] + }, { + "snorunt": ["1.51063829787234"] + }, { + "snover": ["1.62295081967213", "1.62295081967213"] + }, { + "snubbull": ["1.05172413793103"] + }, { + "sobble": ["0.434782608695652"] + }, { + "solgaleo": ["2.50526315789474"] + }, { + "solosis": ["0.666666666666667"] + }, { + "solrock": ["1.50632911392405"] + }, { + "spearow": ["0.576923076923077"] + }, { + "spewpa": ["0.697674418604651"] + }, { + "spheal": ["1.88095238095238"] + }, { + "spectrier": ["1.86111111111111"] + }, { + "spidops": ["1.32"] + }, { + "spinarak": ["1.88888888888889"] + }, { + "spinda": ["1.57971014492754"] + }, { + "spiritomb": ["1.35616438356164"] + }, { + "spoink": ["0.739583333333333"] + }, { + "sprigatito": ["0.745454545454546"] + }, { + "spritzee": ["0.327868852459016"] + }, { + "squirtle": ["0.944444444444444"] + }, { + "stakataka": ["5.45544554455446"] + }, { + "stantler": ["1.52173913043478"] + }, { + "staraptor": ["0.993920454545455", "0.993920454545455"] + }, { + "staravia": ["0.705", "0.705"] + }, { + "starly": ["0.652173913043478", "0.652173913043478"] + }, { + "starmie": ["1.78688524590164"] + }, { + "staryu": ["1.58"] + }, { + "steelix": ["3.58847619047619", "3.60343511450382"] + }, { + "steenee": ["0.922077922077922"] + }, { + "stonjourner": ["2.41747572815534"] + }, { + "stoutland": ["1.35227272727273"] + }, { + "stufful": ["0.944444444444444"] + }, { + "stunfisk": ["2.13", "0.523770491803279"] + }, { + "stunky": ["0.621212121212121"] + }, { + "sudowoodo": ["1.8030303030303", "1.859375"] + }, { + "suicune": ["2.33720930232558"] + }, { + "sunflora": ["1.06756756756757"] + }, { + "sunkern": ["0.681818181818182"] + }, { + "surskit": ["0.980769230769231"] + }, { + "swablu": ["0.773584905660377"] + }, { + "swadloon": ["0.894736842105263"] + }, { + "swalot": ["2.42857142857143", "2.42857142857143"] + }, { + "swampert": ["1.66666666666667", "2.3875"] + }, { + "swanna": ["1.05776397515528"] + }, { + "swellow": ["1.61363636363636"] + }, { + "swinub": ["1.24242424242424"] + }, { + "swirlix": ["0.836734693877551"] + }, { + "swoobat": ["1.0896261682243"] + }, { + "sylveon": ["1.15116279069767"] + }, { + "tadbulb": ["0.526315789473684"] + }, { + "taillow": ["0.652173913043478"] + }, { + "talonflame": ["0.997027027027027"] + }, { + "tandemaus": ["0.566037735849057"] + }, { + "tangela": ["1.86792452830189"] + }, { + "tangrowth": ["2.45121951219512", "2.45121951219512"] + }, { + "tapubulu": ["1.83653846153846"] + }, { + "tapufini": ["1.41304347826087"] + }, { + "tapukoko": ["1.89473684210526"] + }, { + "tapulele": ["1.41666666666667"] + }, { + "tarountula": ["0.405405405405405"] + }, { + "tauros": ["1.47368421052632"] + }, { + "teddiursa": ["1.07017543859649"] + }, { + "tentacool": ["1.21917808219178"] + }, { + "tentacruel": ["1.88235294117647"] + }, { + "tepig": ["0.82258064516129"] + }, { + "terrakion": ["2.27380952380952"] + }, { + "thievul": ["1.27956989247312"] + }, { + "throh": ["1.47727272727273"] + }, { + "thundurus": ["1.45631067961165", "2.77777777777778"] + }, { + "thwackey": ["0.731958762886598"] + }, { + "timburr": ["1"] + }, { + "tirtouga": ["2.21875"] + }, { + "togedemaru": ["0.483870967741936"] + }, { + "togekiss": ["2.5"] + }, { + "togepi": ["0.638297872340426"] + }, { + "togetic": ["0.859154929577465"] + }, { + "torchic": ["0.672131147540984", "0.672131147540984"] + }, { + "torkoal": ["0.662337662337662"] + }, { + "tornadus": ["1.5", "1.03703703703704"] + }, { + "torracat": ["0.959459459459459"] + }, { + "torterra": ["2.08490566037736"] + }, { + "totodile": ["1.05172413793103"] + }, { + "toucannon": ["1.43421052631579"] + }, { + "toxapex": ["0.865853658536585"] + }, { + "toxel": ["0.719298245614035"] + }, { + "toxicroak": ["1.60493827160494", "1.60493827160494"] + }, { + "toxtricity": ["1.29032258064516", "4.8", "1.32231404958678"] + }, { + "tranquill": ["0.491935483870968"] + }, { + "trapinch": ["1.57777777777778"] + }, { + "treecko": ["0.864406779661017"] + }, { + "trevenant": ["1.5"] + }, { + "tropius": ["2.54430379746835"] + }, { + "trubbish": ["1.07017543859649"] + }, { + "trumbeak": ["0.635416666666667"] + }, { + "tsareena": ["1.33707865168539"] + }, { + "turtonator": ["2.71621621621622"] + }, { + "turtwig": ["0.694915254237288"] + }, { + "tympole": ["1.34210526315789"] + }, { + "tynamo": ["0.769230769230769"] + }, { + "typenull": ["2.03191489361702"] + }, { + "typhlosion": ["1.78947368421053", "1.40350877192982"] + }, { + "tyranitar": ["1.6890756302521", "2.30555555555556"] + }, { + "tyrantrum": ["2.30555555555556"] + }, { + "tyrogue": ["1.02898550724638"] + }, { + "tyrunt": ["1.16176470588235"] + }, { + "umbreon": ["1.28571428571429"] + }, { + "unfezant": ["1.07267605633803", "1.07267605633803"] + }, { + "unown": ["0.838356164383562", "0.971428571428571", "1.07368421052632", "0.794805194805195", "1.0551724137931", "0.774683544303797", "1.13333333333333", "0.88695652173913", "1.2", "0.913432835820895", "1.09285714285714", "1.2", "0.85", "1.17692307692308", "1.07368421052632", "0.774683544303797", "1.15471698113208", "0.987096774193548", "1.13333333333333", "0.987096774193548", "0.88695652173913", "1.07368421052632", "1.24897959183673", "1.15471698113208", "0.987096774193548", "1.11272727272727", "1.224", "0.971428571428571"] + }, { + "ursaluna": ["2.62317073170732", "2.66336633663366"] + }, { + "ursaring": ["1.89473684210526", "1.89473684210526"] + }, { + "urshifu": ["1.5655737704918", "6.04375", "5.53404255319149", "1.76851851851852"] + }, { + "uxie": ["0.384615384615385"] + }, { + "vanillish": ["1.28235294117647"] + }, { + "vanillite": ["0.650793650793651"] + }, { + "vanilluxe": ["1.46067415730337"] + }, { + "vaporeon": ["1.375"] + }, { + "varoom": ["1.94117647058824"] + }, { + "veluza": ["1.63322580645161"] + }, { + "venipede": ["0.931818181818182"] + }, { + "venomoth": ["1.76470588235294"] + }, { + "venonat": ["1.57142857142857"] + }, { + "venusaur": ["2.61038961038961", "6.92307692307692", "2.62637362637363"] + }, { + "vespiquen": ["1.35227272727273"] + }, { + "vibrava": ["2.18"] + }, { + "victini": ["0.561643835616438"] + }, { + "victreebel": ["2.125"] + }, { + "vigoroth": ["1.75"] + }, { + "vikavolt": ["1.92307692307692"] + }, { + "vileplume": ["2.125", "2.125"] + }, { + "virizion": ["2.07216494845361"] + }, { + "vivillon": ["1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077", "1.14423076923077"] + }, { + "volbeat": ["0.959459459459459"] + }, { + "volcanion": ["1.86813186813187"] + }, { + "volcarona": ["1.72043010752688"] + }, { + "voltorb": ["1.18604651162791", "1.15909090909091"] + }, { + "vullaby": ["1.08510638297872"] + }, { + "vulpix": ["1.29787234042553", "1.29787234042553"] + }, { + "wailmer": ["2.95588235294118"] + }, { + "wailord": ["9.84567901234568"] + }, { + "walrein": ["1.97183098591549"] + }, { + "wartortle": ["1.35616438356164"] + }, { + "watchog": ["1.37974683544304"] + }, { + "weavile": ["1.3974358974359", "1.3974358974359"] + }, { + "weedle": ["0.566037735849057"] + }, { + "weepinbell": ["1.94117647058824"] + }, { + "weezing": ["1.35227272727273", "1.35227272727273"] + }, { + "whimsicott": ["1.05970149253731"] + }, { + "whirlipede": ["1.83076923076923"] + }, { + "whiscash": ["1.43548387096774"] + }, { + "whismur": ["1.27083333333333"] + }, { + "wigglytuff": ["1.45588235294118"] + }, { + "wiglett": ["1.4875"] + }, { + "wimpod": ["1.37837837837838"] + }, { + "wingull": ["1.01666666666667"] + }, { + "wishiwashi": ["0.540540540540541", "4.85436893203883"] + }, { + "wobbuffet": ["1.91176470588235", "1.91176470588235"] + }, { + "woobat": ["0.732142857142857"] + }, { + "wooloo": ["1.01666666666667"] + }, { + "wooper": ["0.872340425531915", "0.872340425531915"] + }, { + "wormadam": ["0.621951219512195", "0.662337662337662", "0.621951219512195"] + }, { + "wugtrio": ["1.7"] + }, { + "wurmple": ["0.566037735849057"] + }, { + "wynaut": ["1.15094339622642"] + }, { + "wyrdeer": ["1.53846153846154"] + }, { + "xatu": ["2.32758620689655", "2.14285714285714"] + }, { + "xerneas": ["2.4", "2.36220472440945"] + }, { + "xurkitree": ["4.53571428571429"] + }, { + "yamask": ["0.761194029850746", "0.6375"] + }, { + "yamper": ["0.555555555555556"] + }, { + "yanma": ["0.928818181818182"] + }, { + "yanmega": ["1.6534328358209"] + }, { + "yungoos": ["1.13888888888889"] + }, { + "yveltal": ["4.43489361702128"] + }, { + "zacian": ["2.93684210526316", "2.51351351351351"] + }, { + "zamazenta": ["3.25842696629214", "2.58928571428571"] + }, { + "zangoose": ["1.66666666666667"] + }, { + "zapdos": ["1.50943396226415", "1.6"] + }, { + "zarude": ["1.65137614678899", "1.65137614678899"] + }, { + "zebstrika": ["1.66666666666667"] + }, { + "zekrom": ["2.13235294117647"] + }, { + "zeraora": ["2.30769230769231", "1.30434782608696"] + }, { + "zigzagoon": ["0.872340425531915", "0.694915254237288"] + }, { + "zoroark": ["1.70212765957447", "1.36752136752137"] + }, { + "zorua": ["1.12698412698413", "0.731958762886598"] + }, { + "zubat": ["1.3314606741573", "1.41071428571429"] + }, { + "zweilous": ["1.77215189873418"] + }, { + "zygarde-10": ["1.63013698630137", "3.42990654205607", "4.09090909090909"] + }] + + fakemonsize = [{ + "astrolotl": ["1.8252427184466"] + }, { + "aurumoth": ["0.274509803921569"] + }, { + "colossoil": ["3.01162790697674"] + }, { + "crucibelle": ["0.637362637362637", "0.568627450980392"] + }, { + "equilibra": ["2.68539325842697"] + }, { + "fidgit": ["0.775510204081633"] + }, { + "jumbao": ["2.39"] + }, { + "justyke": ["0"] + }, { + "kerfluffle": ["1.78409090909091", "1.78409090909091"] + }, { + "kitsunoh": ["1.8030303030303", "1.8030303030303"] + }, { + "krilowatt": ["0.644444444444445"] + }, { + "malaconda": ["2.34210526315789"] + }, { + "miasmaw": ["1.68817204301075"] + }, { + "mollux": ["1.14492753623188"] + }, { + "mumbao": ["0.840579710144928"] + }, { + "necturna": ["0.25"] + }, { + "pajantom": ["1.07920792079208"] + }, { + "plasmanta": ["0.266666666666667"] + }, { + "pluffle": ["0.891891891891892"] + }, { + "protowatt": ["1.03571428571429", "1.03571428571429"] + }, { + "pyroak": ["2.69791666666667"] + }, { + "scratchet": ["1.02597402597403"] + }, { + "smogecko": ["0.655172413793103"] + }, { + "smoguana": ["0.506666666666667"] + }, { + "smokomodo": ["1.48936170212766"] + }, { + "stratagem": ["0.304347826086957"] + }, { + "tomohawk": ["0.774509803921569"] + }, { + "volkraken": ["0.373333333333333"] + }, { + "voodoom": ["1.23958333333333"] + }] \ No newline at end of file