npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pokemongo-data

v1.1.2

Published

Pokemon Go data for Enhanced

Downloads

10

Readme

Node Pokemongo data

Provides useful utility functions to calculate pokemon's data. Granted sample input of:

const SamplePokemon = {
  id: 'redactedid',
  pokemon_id: 'HORSEA',
  cp: 77,
  stamina: 19,
  stamina_max: 19,
  move_1: 'BUBBLE_FAST',
  move_2: 'DRAGON_PULSE',
  height_m: 0.4252958297729492,
  weight_kg: 8.927674293518066,
  individual_attack: 15,
  individual_defense: 15,
  individual_stamina: 15,
  cp_multiplier: 0.2557200491428375,
  pokeball: 'ITEM_POKE_BALL',
  captured_cell_id: 'redactedcellid',
  creation_time_ms: '1469202648753'
};

You can perform the following operations:

stats.calc(pokemon, currentProfileLevel)

const PokemonData = require('pokemongo-data');
const stats = PokemonData.stats.calc(SamplePokemon, 40);

Stats would contain the following response:

{
  // how much extra attack IA would give
  IVInfluenceAttack: '12%',
  // how much extra defense ID would give
  IVInfluenceDefense: '15%',
  // how much extra stamina IS would give
  IVInfluenceStamina: '25%',
  // how much IVs would contribute to total stats
  IVInfluence: '16%',
  // how much stardust is needed to levelup this pokemon to `maxLevel` thats specified below
  stardustToMax: 268400,
  // how much candies is needed to levelup this pokemon to `maxLevel` thats specified below
  candiesToMax: 298,
  // base values of this pokemon, same for every similar pokemon
  BaseStamina: 60,
  BaseAttack: 122,
  BaseDefense: 100,
  // current cp
  cp: 77,
  // current pokemon level
  level: 7,
  // current stats based on level, IVs & base values
  attack: 35.03364673256874,
  defense: 29.407805651426315,
  stamina: 19.179003685712814,
  currentCpMultiplier: 0.2557200491428375,
  // theoretical max current combat power
  currentCombatPower: 83,
  maxLevel: 79,
  // theoretical max stats of this pokemon based on max level, IVs & base values
  maxAttack: 108.27110137000001,
  maxDefense: 90.88450115,
  maxStamina: 59.272500750000006,
  // theoretical max combat power
  maxCombatPower: 794,
  maxCpMultiplier: 0.79030001,
  // how good are IVs
  powerQuotient: 100
}

Roadmap

  • [x] readme > stats.calc()
  • [ ] readme > stats.cpByLevel
  • [ ] readme > stats.levelByCp
  • [ ] readme > stats.candyToLevel
  • [ ] readme > stats.stardustToLevel
  • [ ] readme > moves.byId
  • [ ] readme > moves.byName
  • [ ] readme > data.byName
  • [ ] readme > data.byNumber