-
-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bbe3624
commit fc615f9
Showing
9 changed files
with
333 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const Command = require("../../base/Command.js"), | ||
Discord = require("discord.js"); | ||
|
||
class Approved extends Command { | ||
constructor (client) { | ||
super(client, { | ||
name: "batslap", | ||
dirname: __dirname, | ||
enabled: true, | ||
guildOnly: false, | ||
aliases: [], | ||
memberPermissions: [], | ||
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ], | ||
nsfw: false, | ||
ownerOnly: false, | ||
cooldown: 5000 | ||
}); | ||
} | ||
|
||
async run (message, args) { | ||
|
||
const user = await this.client.resolveUser(args[0]) || message.author; | ||
const m = await message.sendT("misc:PLEASE_WAIT", null, { | ||
prefixEmoji: "loading" | ||
}); | ||
const buffer = await this.client.AmeAPI.generate("approved", { url: user.displayAvatarURL({ format: "png", size: 512 }) }); | ||
const attachment = new Discord.MessageAttachment(buffer, "approved.png"); | ||
m.delete(); | ||
message.channel.send(attachment); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = Approved; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
const Command = require("../../base/Command.js"), | ||
Discord = require("discord.js"); | ||
|
||
class BatSlap extends Command { | ||
constructor (client) { | ||
super(client, { | ||
name: "batslap", | ||
dirname: __dirname, | ||
enabled: true, | ||
guildOnly: false, | ||
aliases: [], | ||
memberPermissions: [], | ||
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ], | ||
nsfw: false, | ||
ownerOnly: false, | ||
cooldown: 5000 | ||
}); | ||
} | ||
|
||
async run (message, args) { | ||
|
||
const users = [ | ||
await this.client.resolveUser(args[0]) || message.author, | ||
await this.client.resolveUser(args[1]) || message.author | ||
]; | ||
const m = await message.sendT("misc:PLEASE_WAIT", null, { | ||
prefixEmoji: "loading" | ||
}); | ||
const buffer = await this.client.AmeAPI.generate("batslap", { avatar: users[0].displayAvatarURL({ format: "png", size: 512 }), url: users[1].displayAvatarURL({ format: "png", size: 512 }) }); | ||
const attachment = new Discord.MessageAttachment(buffer, "batslap.png"); | ||
m.delete(); | ||
message.channel.send(attachment); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = BatSlap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const Command = require("../../base/Command.js"), | ||
Discord = require("discord.js"); | ||
|
||
class Beautiful extends Command { | ||
constructor (client) { | ||
super(client, { | ||
name: "beautiful", | ||
dirname: __dirname, | ||
enabled: true, | ||
guildOnly: false, | ||
aliases: [], | ||
memberPermissions: [], | ||
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ], | ||
nsfw: false, | ||
ownerOnly: false, | ||
cooldown: 5000 | ||
}); | ||
} | ||
|
||
async run (message, args) { | ||
|
||
const user = await this.client.resolveUser(args[0]) || message.author; | ||
const m = await message.sendT("misc:PLEASE_WAIT", null, { | ||
prefixEmoji: "loading" | ||
}); | ||
const buffer = await this.client.AmeAPI.generate("beautiful", { url: user.displayAvatarURL({ format: "png", size: 512 }) }); | ||
const attachment = new Discord.MessageAttachment(buffer, "beautiful.png"); | ||
m.delete(); | ||
message.channel.send(attachment); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = Beautiful; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const Command = require("../../base/Command.js"), | ||
Discord = require("discord.js"); | ||
|
||
class Brazzers extends Command { | ||
constructor (client) { | ||
super(client, { | ||
name: "brazzers", | ||
dirname: __dirname, | ||
enabled: true, | ||
guildOnly: false, | ||
aliases: [], | ||
memberPermissions: [], | ||
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ], | ||
nsfw: false, | ||
ownerOnly: false, | ||
cooldown: 5000 | ||
}); | ||
} | ||
|
||
async run (message, args) { | ||
|
||
const user = await this.client.resolveUser(args[0]) || message.author; | ||
const m = await message.sendT("misc:PLEASE_WAIT", null, { | ||
prefixEmoji: "loading" | ||
}); | ||
const buffer = await this.client.AmeAPI.generate("brazzers", { url: user.displayAvatarURL({ format: "png", size: 512 }) }); | ||
const attachment = new Discord.MessageAttachment(buffer, "brazzers.png"); | ||
m.delete(); | ||
message.channel.send(attachment); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = Brazzers; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const Command = require("../../base/Command.js"), | ||
Discord = require("discord.js"); | ||
|
||
class Burn extends Command { | ||
constructor (client) { | ||
super(client, { | ||
name: "burn", | ||
dirname: __dirname, | ||
enabled: true, | ||
guildOnly: false, | ||
aliases: [], | ||
memberPermissions: [], | ||
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ], | ||
nsfw: false, | ||
ownerOnly: false, | ||
cooldown: 5000 | ||
}); | ||
} | ||
|
||
async run (message, args) { | ||
|
||
const user = await this.client.resolveUser(args[0]) || message.author; | ||
const m = await message.sendT("misc:PLEASE_WAIT", null, { | ||
prefixEmoji: "loading" | ||
}); | ||
const buffer = await this.client.AmeAPI.generate("burn", { url: user.displayAvatarURL({ format: "png", size: 512 }) }); | ||
const attachment = new Discord.MessageAttachment(buffer, "burn.png"); | ||
m.delete(); | ||
message.channel.send(attachment); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = Burn; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const Command = require("../../base/Command.js"), | ||
Discord = require("discord.js"); | ||
|
||
class Challenger extends Command { | ||
constructor (client) { | ||
super(client, { | ||
name: "challenger", | ||
dirname: __dirname, | ||
enabled: true, | ||
guildOnly: false, | ||
aliases: [], | ||
memberPermissions: [], | ||
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ], | ||
nsfw: false, | ||
ownerOnly: false, | ||
cooldown: 5000 | ||
}); | ||
} | ||
|
||
async run (message, args) { | ||
|
||
const user = await this.client.resolveUser(args[0]) || message.author; | ||
const m = await message.sendT("misc:PLEASE_WAIT", null, { | ||
prefixEmoji: "loading" | ||
}); | ||
const buffer = await this.client.AmeAPI.generate("challenger", { url: user.displayAvatarURL({ format: "png", size: 512 }) }); | ||
const attachment = new Discord.MessageAttachment(buffer, "challenger.png"); | ||
m.delete(); | ||
message.channel.send(attachment); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = Challenger; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const Command = require("../../base/Command.js"), | ||
Discord = require("discord.js"); | ||
|
||
class Dictator extends Command { | ||
constructor (client) { | ||
super(client, { | ||
name: "dictator", | ||
dirname: __dirname, | ||
enabled: true, | ||
guildOnly: false, | ||
aliases: [], | ||
memberPermissions: [], | ||
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ], | ||
nsfw: false, | ||
ownerOnly: false, | ||
cooldown: 5000 | ||
}); | ||
} | ||
|
||
async run (message, args) { | ||
|
||
const user = await this.client.resolveUser(args[0]) || message.author; | ||
const m = await message.sendT("misc:PLEASE_WAIT", null, { | ||
prefixEmoji: "loading" | ||
}); | ||
const buffer = await this.client.AmeAPI.generate("dictator", { url: user.displayAvatarURL({ format: "png", size: 512 }) }); | ||
const attachment = new Discord.MessageAttachment(buffer, "dictator.png"); | ||
m.delete(); | ||
message.channel.send(attachment); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = Dictator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.