aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/og151.js
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-06-27 18:11:57 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-06-27 18:11:57 -0400
commitec75863f7b0eeade92d9e921a04ec9ce0511fd88 (patch)
treebda52ea98e4263cc06b6817243c38ff016ff1ea7 /commands/Fun/og151.js
parent6faab8d3e10049ab0d6f0592e10e66b0624e9161 (diff)
downloadPokeBot-ec75863f7b0eeade92d9e921a04ec9ce0511fd88.tar.gz
PokeBot-ec75863f7b0eeade92d9e921a04ec9ce0511fd88.tar.bz2
PokeBot-ec75863f7b0eeade92d9e921a04ec9ce0511fd88.zip
welcome to 2.0 alpha 12.0_a1
Diffstat (limited to 'commands/Fun/og151.js')
-rw-r--r--commands/Fun/og151.js176
1 files changed, 0 insertions, 176 deletions
diff --git a/commands/Fun/og151.js b/commands/Fun/og151.js
deleted file mode 100644
index d2b3ccf..0000000
--- a/commands/Fun/og151.js
+++ /dev/null
@@ -1,176 +0,0 @@
-/** **************************************
- *
- * og151: Plugin for PokeBot that randomly picks 1 out of the original 151 Pokemon.
- * Copyright (C) 2018 TheEdge, jtsshieh, Alee
- *
- * Licensed under the Open Software License version 3.0
- *
- * *************************************/
-
-exports.run = (bot, msg) => {
- const pokemon = [
- 'Abra',
- 'Aerodactyl',
- 'Alakazam',
- 'Arbok',
- 'Arcanine',
- 'Articuno',
- 'Beedrill',
- 'Bellsprout',
- 'Blastoise',
- 'Bulbasaur',
- 'Butterfree',
- 'Caterpie',
- 'Chansey',
- 'Charizard',
- 'Charmander',
- 'Charmeleon',
- 'Clefable',
- 'Clefairy',
- 'Cloyster',
- 'Cubone',
- 'Dewgong',
- 'Diglett',
- 'Ditto',
- 'Dodrio',
- 'Doduo',
- 'Dragonair',
- 'Dragonite',
- 'Dratini',
- 'Drowzee',
- 'Dugtrio',
- 'Eevee',
- 'Ekans',
- 'Electabuzz',
- 'Electrode',
- 'Exeggcute',
- 'Exeggutor',
- 'Farfetch’d',
- 'Fearow',
- 'Flareon',
- 'Gastly',
- 'Gengar',
- 'Geodude',
- 'Gloom',
- 'Golbat',
- 'Goldeen',
- 'Golduck',
- 'Golem',
- 'Graveler',
- 'Grimer',
- 'Growlithe',
- 'Gyarados',
- 'Haunter',
- 'Hitmonchan',
- 'Hitmonlee',
- 'Horsea',
- 'Hypno',
- 'Ivysaur',
- 'Jigglypuff',
- 'Jolteon',
- 'Jynx',
- 'Kabuto',
- 'Kabutops',
- 'Kadabra',
- 'Kakuna',
- 'Kangaskhan',
- 'Kingler',
- 'Koffing',
- 'Krabby',
- 'Lapras',
- 'Lickitung',
- 'Machamp',
- 'Machoke',
- 'Machop',
- 'Magikarp',
- 'Magmar',
- 'Magnemite',
- 'Magneton',
- 'Mankey',
- 'Marowak',
- 'Meowth',
- 'Metapod',
- 'Mew',
- 'Mewtwo',
- 'Moltres',
- 'Mr. Mime',
- 'Muk',
- 'Nidoking',
- 'Nidoqueen',
- 'Nidoran♀',
- 'Nidoran♂',
- 'Nidorina',
- 'Nidorino',
- 'Ninetales',
- 'Oddish',
- 'Omanyte',
- 'Omastar',
- 'Onix',
- 'Paras',
- 'Parasect',
- 'Persian',
- 'Pidgeot',
- 'Pidgeotto',
- 'Pidgey',
- 'Pikachu',
- 'Pinsir',
- 'Poliwag',
- 'Poliwhirl',
- 'Poliwrath',
- 'Ponyta',
- 'Porygon',
- 'Primeape',
- 'Psyduck',
- 'Raichu',
- 'Rapidash',
- 'Raticate',
- 'Rattata',
- 'Rhydon',
- 'Rhyhorn',
- 'Sandshrew',
- 'Sandslash',
- 'Scyther',
- 'Seadra',
- 'Seaking',
- 'Seel',
- 'Shellder',
- 'Slowbro',
- 'Slowpoke',
- 'Snorlax',
- 'Spearow',
- 'Squirtle',
- 'Starmie',
- 'Staryu',
- 'Tangela',
- 'Tauros',
- 'Tentacool',
- 'Tentacruel',
- 'Vaporeon',
- 'Venomoth',
- 'Venonat',
- 'Venusaur',
- 'Victreebel',
- 'Vileplume',
- 'Voltorb',
- 'Vulpix',
- 'Wartortle',
- 'Weedle',
- 'Weepinbell',
- 'Weezing',
- 'Wigglytuff',
- 'Zapdos',
- 'Zubat',
- ];
-
- msg.channel.send(pokemon[Math.floor(Math.random() * pokemon.length)]);
-};
-
-exports.conf = {
- aliases: [],
- guildOnly: true,
-};
-
-exports.help = {
- name: 'og151',
- description: 'Randomly picks one of the generation 1 pokemon, and gives you its name.',
-};