This commit is contained in:
Dragon Fire
2021-01-22 18:33:56 -05:00
parent aa4e89ca3b
commit ded8926f61
3 changed files with 8 additions and 10 deletions
+8 -2
View File
@@ -101,7 +101,7 @@ don't grant that permission.
## Fun Information
- 500+ commands
- 32,000+ lines of JavaScript
- 33,000+ lines of JavaScript
- 65,000+ lines of JSON data
- 4 years of development
@@ -261,7 +261,7 @@ in the appropriate channel's topic to use it.
## Commands
Total: 582
Total: 584
### Utility:
@@ -537,9 +537,11 @@ Total: 582
### Pokédex:
* **pokedex-ability:** Searches the Pokédex for a Pokémon ability.
* **pokedex-cry:** Plays a Pokémon's cry.
* **pokedex-image:** Responds with the image of a Pokémon.
* **pokedex-location:** Responds with the location data for a Pokémon.
* **pokedex-move:** Searches the Pokédex for a Pokémon move.
* **pokedex-moveset:** Responds with the moveset for a Pokémon.
* **pokedex-stats:** Responds with the stats for a Pokémon.
* **pokedex:** Searches the Pokédex for a Pokémon.
@@ -1574,9 +1576,11 @@ here.
* pokemon-fusion (Images)
- [PokéAPI](https://pokeapi.co/)
* pokedex (API)
* pokedex-ability (API)
* pokedex-cry (API)
* pokedex-image (API)
* pokedex-location (API)
* pokedex-move (API)
* pokedex-moveset (API)
* pokedex-stats (API)
* smogon (API)
@@ -1588,9 +1592,11 @@ here.
* hat (Ash Hat Original Anime)
* name-rater (Sprite)
* pokedex (Images, Original Game)
* pokedex-ability (Original Game)
* pokedex-cry (Original Game)
* pokedex-image (Images, Original Game)
* pokedex-location (Images, Original Game)
* pokedex-move (Original Game)
* pokedex-moveset (Images, Original Game)
* pokedex-stats (Images, Original Game)
* pokemon-fusion (Original Game)
-4
View File
@@ -3,10 +3,6 @@ const request = require('node-superfetch');
const Ability = require('./Ability');
module.exports = class AbilityStore extends Collection {
constructor(options) {
super(options);
}
async fetch(query) {
if (this.has(query)) return this.get(query);
query = this.makeSlug(query.toString());
-4
View File
@@ -3,10 +3,6 @@ const request = require('node-superfetch');
const Move = require('./Move');
module.exports = class MoveStore extends Collection {
constructor(options) {
super(options);
}
async fetch(query) {
if (this.has(query)) return this.get(query);
query = this.makeSlug(query.toString());