Skip to content

NPM package to automatically solve hints & check the rarity of pokemon, made for pokemon discord bots like Pokétwo

License

Notifications You must be signed in to change notification settings

kyan0045/pokehint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PokeHint

NPM package to automatically solve hints & check the rarity of pokemon, made for pokemon discord bots like Pokétwo

Installation

Use the package manager npm to install the module.

npm i pokehint

Usage

const { solveHint, checkRarity, getName, getImage } = require("pokehint");

// Solving hints
var hint = "The pokémon is Ch_r__n__r.";
console.log(solveHint(hint)); // Logs 'Charmander'.

// Checking the rarity
var pokemonName = "Moltres";
console.log(checkRarity(pokemonName)); // Logs Moltres' rarity: 'Legendary'.

// Converting a name to a different language
console.log(
  getName({
    name: "Charmander",
    language: "French",
    inputLanguage: "English",
  })
); // Logs the French name of Charmander: 'Salamèche'.

// Getting the Pokétwo image sprite of a specified pokemon
console.log(getImage("charmander", false)); // Logs 'https://cdn.poketwo.net/images/4.png'.

Links

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

NPM package to automatically solve hints & check the rarity of pokemon, made for pokemon discord bots like Pokétwo

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published