-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbeheeyem.js
More file actions
192 lines (178 loc) · 8.88 KB
/
beheeyem.js
File metadata and controls
192 lines (178 loc) · 8.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
const Discord = require("discord.js"), // Require Node modules and initialize Discord client
beheeyem = new Discord.Client(),
fs = require("fs"),
jsonfile = require("jsonfile"),
path = require("path"),
request = require("request"),
colors = require('colors'),
italics = require('./data/italics.js'),
requireFromUrl = require('require-from-url');
var config = require('./config.js'),
otherAliases = require('./data/otherAliases.js'),
imageCheck,
dex = require('./data/pokedex.js').BattlePokedex,
species = [],
aliases = require('./data/aliases.js').BattleAliases;
Object.keys(dex).map(function(key, index) {
species.push(dex[key].species.toLowerCase());
});
console.log("Starting Beheeyem...");
var commands = loadCommands(); // Load commands into the commands object
beheeyem.on("ready", function() {
console.log(("Beheeyem is active! Currently serving in " + String(beheeyem.guilds.size).white + " guilds.\n".green).bold);
beheeyem.user.setActivity(`you on shard ${this.shard.id + 1}`, { type: 3 }); //Set "playing" status on the user's profile
});
function loadCommands() {
console.log('Loading commands...'.cyan);
let commands = {}, // Initialize values
errCount = 0;
cmdfiles = fs.readdirSync('./commands/'); // Read files in the commands directory
cmdfiles.forEach(filename => {
var cmdName = filename.split('.')[0];
try { // Attempt to load the command into the bot
commands[cmdName] = require('./commands/' + filename);
console.log('Loaded '.green + cmdName.yellow.bold);
} catch (err) { // If unsuccessful, display an error
if (err) {
errCount++;
console.log('Error in '.red + cmdName.yellow + '!'.red + '\n' + err.stack);
}
}
});
console.log('Loaded commands with '.cyan + (errCount > 0 ? errCount.toString().red : 'no'.green) + ` error${errCount == 1? '' : 's'}!`.cyan); // Print number of errored commands, if any.
return commands;
}
beheeyem.on("message", msg => { // Fires when a message is sent that can be detected by Beheeyem
if (msg.author.id != beheeyem.user.id && !msg.author.bot) { // Ensures Beheeyem doesn't detect messages from bots or itself
if (msg.content.startsWith(config.prefix)) { // Check to see if the message is an attempted command
let commandstring = msg.content.substring(config.prefix.length),
cmd = commandstring.split(" ")[0], // Split the message into more readable argument/command portions
args = commandstring.substring(cmd.length + 1);
if (commands[cmd]) { // If a command by the name of the attempted name exists, try to fire it
try {
commands[cmd].action(msg, args, beheeyem);
} catch (err) {
console.error(err); // If unsuccessful, log the error.
}
// TO MOVE TO SEPARATE FILES
} else if (cmd == "obtain") {
msg.channel.send("Honestly, just use Bulbapedia. The encounter data on the web is so inconsistent and undreadable that there's no way I could create an obtainability command. Sorry about that. 🙁");
} else if (cmd == "deathbird") {
msg.channel.send('', {
file: "https://i.imgur.com/pIxQQXA.png",
name: "DEATHBIRD.png"
});
} else if (cmd == "youtried") {
msg.channel.send('', {
file: "https://i.imgur.com/bAxMdQ0.png",
name: "Filename.jpeg.gif.webp.mp4.exe.bat.sh.app.png"
});
} else if (msg.author.id == 120887602395086848) { // Commands only to be fired by the bot's owner
if (cmd == 'eval') {
beheeyem.shard.broadcastEval(args)
.then(results => {
msg.channel.send("", {
embed: {
title: '🖥 JavaScript Eval',
fields: [{
name: "Input",
value: args
},
{
name: "Output",
value: String(results) // jshint ignore:line
}
],
color: 5561189
}
});
})
.catch(err => {
msg.channel.send("", {
embed: {
title: '⚠ Error',
fields: [{
name: "Input",
value: args
},
{
name: "Error",
value: err.toString()
}
],
color: 16724015
}
});
});
}
}
} else if (msg.content == beheeyem.user) {
msg.react(beheeyem.emojis.get('328348788202799109'))
.catch(console.error)
} else { // If a command was fired, do not check for italics in the messsage.
checkItalics(msg);
}
}
});
beheeyem.login(config.token);
function capitalizeFirstLetter(string) { // Simple function to capitalize the first letter in a string.
return string.charAt(0).toUpperCase() + string.slice(1);
}
function checkItalics(msg) { // Function to be fired if a message is valid for italicization checking
let isFound = false,
pokePast = [],
pokeCount = 0,
splits = [msg.content.replace(/#/g, '').replace(/\?/g, '').split("*"), msg.content.replace(/#/g, '').replace(/\?/g, '').split("_")];
var pokeName;
for (let j = 0; j < 2; j++) {
if (isFound) return;
for (var i = 1; i < splits[j].length - 1; i++) { // Check each substring between asterixes/underscores
pokeName = splits[j][i].toLowerCase();
if (italics[pokeName]) {
if (pokeCount > 1) break;
if (pokePast.indexOf(pokeName) != -1) continue;
pokePast.push(pokeName);
pokeCount++;
italics[pokeName].action(msg);
isFound = true;
continue;
}
let isShiny = false, // Sprite defaults to a non-shiny version
urlBuild = 'https://play.pokemonshowdown.com/sprites/xyani/', // Default constructor for a sprite
a = otherAliases.aliases(msg.guild.id);
for (let r in a) {
if (pokeName.startsWith(r)) pokeName = pokeName.replace(`${r} `, `${a[r]} `);
if (pokeName.endsWith(r)) pokeName = pokeName.replace(` ${r}`, ` ${a[r]}`);
if (pokeName == r) pokeName = a[r];
if (pokeName.indexOf(` ${r} `) > -1) pokeName = pokeName.replace(` ${r} `, ` ${a[r]} `);
}
if (pokeName.split(" ")[0] == "mega") {
pokeName = pokeName.substring(pokeName.split(" ")[0].length + 1) + "-mega";
} else if (pokeName.split(' ')[0] == "alolan") {
pokeName = pokeName.substring(pokeName.split(" ")[0].length + 1) + "-alola";
}
if (pokeName.indexOf('shiny') != -1) { // Detect if the potential pokemon is a shiny
isShiny = true;
pokeName = pokeName.replace(' shiny', '').replace('shiny ', '').replace('-shiny', '').replace('shiny-', '').replace('shiny', '');
}
pokeName = pokeName.replace(" ", "-");
let imgPoke = pokeName.toLowerCase();
if (pokeCount > 1) break;
if (pokePast.indexOf(imgPoke) != -1) continue;
pokePast.push(imgPoke);
if (species.indexOf(imgPoke) > -1) pokeCount++;
if (isShiny) urlBuild = 'https://play.pokemonshowdown.com/sprites/xyani-shiny/';
/* jshint ignore:start */
request(urlBuild + imgPoke + ".gif", (err, response) => { // Check to see if the sprite for the desired Pokemon exists
if (!err && response.statusCode == 200) {
msg.channel.send('', { // If it does, send it
file: response.request.href
});
isFound = true;
}
});
/* jshint ignore:end */
if (isFound) break;
}
}
}