├── .gitignore ├── README.md └── src ├── assets └── json │ ├── pokedex.json │ └── stats.json ├── class └── command.js ├── commands ├── pokemon │ ├── inventory.js │ └── trade.js └── util │ ├── exec.js │ └── ping.js └── events ├── message.js └── ready.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/README.md -------------------------------------------------------------------------------- /src/assets/json/pokedex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/src/assets/json/pokedex.json -------------------------------------------------------------------------------- /src/assets/json/stats.json: -------------------------------------------------------------------------------- 1 | {"messages":72,"commands":15} -------------------------------------------------------------------------------- /src/class/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/src/class/command.js -------------------------------------------------------------------------------- /src/commands/pokemon/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/src/commands/pokemon/inventory.js -------------------------------------------------------------------------------- /src/commands/pokemon/trade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/src/commands/pokemon/trade.js -------------------------------------------------------------------------------- /src/commands/util/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/src/commands/util/exec.js -------------------------------------------------------------------------------- /src/commands/util/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/src/commands/util/ping.js -------------------------------------------------------------------------------- /src/events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonder-Toast/Pokebot/HEAD/src/events/message.js -------------------------------------------------------------------------------- /src/events/ready.js: -------------------------------------------------------------------------------- 1 | exports.run = (client) => { 2 | console.log('Pokebot is online and ready.'); 3 | } 4 | --------------------------------------------------------------------------------