aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-06-27 18:22:17 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-06-27 18:22:17 -0400
commit68109a88c4707bab948b40c02acc28b17a27fd7a (patch)
treed6daae09a8f5faa4ff23a1767c69b14db9104eed /commands
parentec75863f7b0eeade92d9e921a04ec9ce0511fd88 (diff)
downloadPokeBot-68109a88c4707bab948b40c02acc28b17a27fd7a.tar.gz
PokeBot-68109a88c4707bab948b40c02acc28b17a27fd7a.tar.bz2
PokeBot-68109a88c4707bab948b40c02acc28b17a27fd7a.zip
We made PokeCoins... whee
Diffstat (limited to 'commands')
-rw-r--r--commands/Fun/balance.js4
-rw-r--r--commands/Fun/jobs.js8
-rw-r--r--commands/Fun/slots.js4
3 files changed, 8 insertions, 8 deletions
diff --git a/commands/Fun/balance.js b/commands/Fun/balance.js
index afe094e..fd387bc 100644
--- a/commands/Fun/balance.js
+++ b/commands/Fun/balance.js
@@ -9,11 +9,11 @@
exports.run = async (bot, msg) => {
const credits = await bot.plugins.economy.get(msg.author.id);
- msg.reply(credits + ' credits');
+ msg.reply(credits + ' PokeCoins');
};
exports.conf = {
- aliases: ['bal', 'money', 'credits'],
+ aliases: ['bal', 'money', 'coins'],
guildOnly: true,
};
diff --git a/commands/Fun/jobs.js b/commands/Fun/jobs.js
index f71ba28..3d42fdf 100644
--- a/commands/Fun/jobs.js
+++ b/commands/Fun/jobs.js
@@ -13,9 +13,9 @@ exports.run = (bot, msg) => {
const jobs = [
"started a BitCoin farm",
- "pissed for an elderly woman",
+ "crashed an airplane",
"became a doctor and illegally sold organs",
- "extracted eggs from elderly women",
+ "stole Blake Australia's fame and made a lot of money",
"became a bus driver",
"started working for Universe Dev Group",
"programmed a Discord bot",
@@ -28,12 +28,12 @@ exports.run = (bot, msg) => {
if (bot.dbl.hasVoted(msg.author.id)) {
var creditsEarned = Math.floor(Math.random() * 650);
bot.plugins.economy.add(msg.author.id, creditsEarned);
- msg.channel.send('You worked and ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.');
+ msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.');
}
else {
var creditsEarned = Math.floor(Math.random() * 250);
bot.plugins.economy.add(msg.author.id, creditsEarned);
- msg.channel.send('You worked and ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.');
+ msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.');
}
cooldown.add(msg.author.id);
setTimeout(() => {
diff --git a/commands/Fun/slots.js b/commands/Fun/slots.js
index ddd6757..0fe5af9 100644
--- a/commands/Fun/slots.js
+++ b/commands/Fun/slots.js
@@ -31,12 +31,12 @@ exports.run = async (bot, msg) => {
if (number2 == number1 + 1 && number3 == number2 + 1) {
await bot.plugins.economy.add(msg.author.id, 1000);
const balance = await bot.plugins.economy.get(msg.author.id);
- return await msg.channel.send('You won 1000 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1000 PokeCoins!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else if (number2 == number3 - 1 && number1 == number2 - 1) {
await bot.plugins.economy.add(msg.author.id, 1500);
const balance = await bot.plugins.economy.get(msg.author.id);
- return await msg.channel.send('You won 1500 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1500 PokeCoins!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else {
await bot.plugins.economy.subtract(msg.author.id, 10);