Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
3d35e1d838
8 changed files with 23 additions and 214 deletions
|
@ -1,40 +0,0 @@
|
||||||
const { MessageEmbed } = require("discord.js");
|
|
||||||
const { getreddit } = require("cath");
|
|
||||||
module.exports = {
|
|
||||||
name: "ass",
|
|
||||||
description: "Get some ass images",
|
|
||||||
run: async (client, interaction) => {
|
|
||||||
if (!interaction.channel.nsfw) {
|
|
||||||
const embed = new MessageEmbed()
|
|
||||||
.setTitle(`AYO Calm Yo Cheeks`)
|
|
||||||
.setDescription("This command only works in NSFW Channels!")
|
|
||||||
.setImage(
|
|
||||||
"https://media.discordapp.net/attachments/851761493815853060/893777701599584266/warning.gif"
|
|
||||||
)
|
|
||||||
.setColor(client.color)
|
|
||||||
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
|
|
||||||
.setTimestamp();
|
|
||||||
interaction.followUp({ embeds: [embed] });
|
|
||||||
} else {
|
|
||||||
const subreddits = ["ass", "BestBooties", "BootyGIFs", "booty_queens"];
|
|
||||||
const reddit = subreddits[Math.round(Math.random() * subreddits.length)];
|
|
||||||
const data = await getreddit(reddit);
|
|
||||||
interaction.followUp({
|
|
||||||
embeds: [
|
|
||||||
new MessageEmbed({
|
|
||||||
title: data.title,
|
|
||||||
url: data.url,
|
|
||||||
image: { url: data.image },
|
|
||||||
timestamp: Date.now(),
|
|
||||||
footer: { text: data.footer },
|
|
||||||
color: client.color,
|
|
||||||
author: {
|
|
||||||
name: interaction.user.tag,
|
|
||||||
iconURL: interaction.user.displayAvatarURL({ dynamic: true }),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -1,48 +0,0 @@
|
||||||
const { MessageEmbed } = require("discord.js");
|
|
||||||
const { getreddit } = require("cath");
|
|
||||||
module.exports = {
|
|
||||||
name: "blowjob",
|
|
||||||
description: "Get some blowjob images",
|
|
||||||
run: async (client, interaction) => {
|
|
||||||
if (!interaction.channel.nsfw) {
|
|
||||||
const embed = new MessageEmbed()
|
|
||||||
.setTitle(`AYO Calm Yo Cheeks`)
|
|
||||||
.setDescription("This command only works in NSFW Channels!")
|
|
||||||
.setImage(
|
|
||||||
"https://media.discordapp.net/attachments/851761493815853060/893777701599584266/warning.gif"
|
|
||||||
)
|
|
||||||
.setColor(client.color)
|
|
||||||
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
|
|
||||||
.setTimestamp();
|
|
||||||
|
|
||||||
interaction.followUp({ embeds: [embed] });
|
|
||||||
} else {
|
|
||||||
const subreddits = [
|
|
||||||
"BlowJob",
|
|
||||||
"blowjobs",
|
|
||||||
"blowjobgifs",
|
|
||||||
"OralSex",
|
|
||||||
"PushHerHead",
|
|
||||||
"ThroatFuck",
|
|
||||||
];
|
|
||||||
const reddit = subreddits[Math.round(Math.random() * subreddits.length)];
|
|
||||||
const data = await getreddit(reddit);
|
|
||||||
interaction.followUp({
|
|
||||||
embeds: [
|
|
||||||
new MessageEmbed({
|
|
||||||
title: data.title,
|
|
||||||
url: data.url,
|
|
||||||
image: { url: data.image },
|
|
||||||
timestamp: Date.now(),
|
|
||||||
footer: { text: data.footer },
|
|
||||||
color: client.color,
|
|
||||||
author: {
|
|
||||||
name: interaction.user.tag,
|
|
||||||
iconURL: interaction.user.displayAvatarURL({ dynamic: true }),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -1,40 +0,0 @@
|
||||||
const { MessageEmbed } = require("discord.js");
|
|
||||||
const { getreddit } = require("cath");
|
|
||||||
module.exports = {
|
|
||||||
name: "boobs",
|
|
||||||
description: "Get some boobie images",
|
|
||||||
run: async (client, interaction) => {
|
|
||||||
if (!interaction.channel.nsfw) {
|
|
||||||
const embed = new MessageEmbed()
|
|
||||||
.setTitle(`AYO Calm Yo Cheeks`)
|
|
||||||
.setDescription("This command only works in NSFW Channels!")
|
|
||||||
.setImage(
|
|
||||||
"https://media.discordapp.net/attachments/851761493815853060/893777701599584266/warning.gif"
|
|
||||||
)
|
|
||||||
.setColor(client.color)
|
|
||||||
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
|
|
||||||
.setTimestamp();
|
|
||||||
interaction.followUp({ embeds: [embed] });
|
|
||||||
} else {
|
|
||||||
const subreddits = ["boobs", "GrabHerTitties", "titfuck"];
|
|
||||||
const reddit = subreddits[Math.round(Math.random() * subreddits.length)];
|
|
||||||
const data = await getreddit(reddit);
|
|
||||||
interaction.followUp({
|
|
||||||
embeds: [
|
|
||||||
new MessageEmbed({
|
|
||||||
title: data.title,
|
|
||||||
url: data.url,
|
|
||||||
image: { url: data.image },
|
|
||||||
timestamp: Date.now(),
|
|
||||||
footer: { text: data.footer },
|
|
||||||
color: client.color,
|
|
||||||
author: {
|
|
||||||
name: interaction.user.tag,
|
|
||||||
iconURL: interaction.user.displayAvatarURL({ dynamic: true }),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -1,40 +0,0 @@
|
||||||
const { MessageEmbed } = require("discord.js");
|
|
||||||
const { getreddit } = require("cath");
|
|
||||||
module.exports = {
|
|
||||||
name: "hentai",
|
|
||||||
description: "Get some hentai images",
|
|
||||||
run: async (client, interaction) => {
|
|
||||||
if (!interaction.channel.nsfw) {
|
|
||||||
const embed = new MessageEmbed()
|
|
||||||
.setTitle(`AYO Calm Yo Cheeks`)
|
|
||||||
.setDescription("This command only works in NSFW Channels!")
|
|
||||||
.setImage(
|
|
||||||
"https://media.discordapp.net/attachments/851761493815853060/893777701599584266/warning.gif"
|
|
||||||
)
|
|
||||||
.setColor(client.color)
|
|
||||||
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
|
|
||||||
.setTimestamp();
|
|
||||||
interaction.followUp({ embeds: [embed] });
|
|
||||||
} else {
|
|
||||||
const subreddits = ["hentai", "HentaiAnime", "nekogirls"];
|
|
||||||
const reddit = subreddits[Math.round(Math.random() * subreddits.length)];
|
|
||||||
const data = await getreddit(reddit);
|
|
||||||
interaction.followUp({
|
|
||||||
embeds: [
|
|
||||||
new MessageEmbed({
|
|
||||||
title: data.title,
|
|
||||||
url: data.url,
|
|
||||||
image: { url: data.image },
|
|
||||||
timestamp: Date.now(),
|
|
||||||
footer: { text: data.footer },
|
|
||||||
color: client.color,
|
|
||||||
author: {
|
|
||||||
name: interaction.user.tag,
|
|
||||||
iconURL: interaction.user.displayAvatarURL({ dynamic: true }),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -1,42 +0,0 @@
|
||||||
const { MessageEmbed } = require("discord.js");
|
|
||||||
const { getreddit } = require("cath");
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
name: "pussy",
|
|
||||||
description: "Get some vagina images",
|
|
||||||
run: async (client, interaction) => {
|
|
||||||
if (!interaction.channel.nsfw) {
|
|
||||||
const embed = new MessageEmbed()
|
|
||||||
.setTitle(`AYO Calm Yo Cheeks`)
|
|
||||||
.setDescription("This command only works in NSFW Channels!")
|
|
||||||
.setImage(
|
|
||||||
"https://media.discordapp.net/attachments/851761493815853060/893777701599584266/warning.gif"
|
|
||||||
)
|
|
||||||
.setColor(client.color)
|
|
||||||
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
|
|
||||||
.setTimestamp();
|
|
||||||
interaction.followUp({ embeds: [embed] });
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
const subreddits = ["vagina", "GodPussy", "peachlips"];
|
|
||||||
const reddit = subreddits[Math.round(Math.random() * subreddits.length)];
|
|
||||||
const data = await getreddit(reddit);
|
|
||||||
interaction.followUp({
|
|
||||||
embeds: [
|
|
||||||
new MessageEmbed({
|
|
||||||
title: data.title,
|
|
||||||
url: data.url,
|
|
||||||
image: { url: data.image },
|
|
||||||
timestamp: Date.now(),
|
|
||||||
footer: { text: data.footer },
|
|
||||||
color: client.color,
|
|
||||||
author: {
|
|
||||||
name: interaction.user.tag,
|
|
||||||
iconURL: interaction.user.displayAvatarURL({ dynamic: true }),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -2,7 +2,7 @@ const { getreddit } = require("cath");
|
||||||
const { MessageActionRow, MessageButton, MessageEmbed } = require("discord.js");
|
const { MessageActionRow, MessageButton, MessageEmbed } = require("discord.js");
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: "nsfw",
|
name: "nsfw",
|
||||||
description: "nsfw command",
|
description: "NSFW command",
|
||||||
run: async (client, interaction) => {
|
run: async (client, interaction) => {
|
||||||
const msg = await interaction.channel.send({ content: "Getting images" });
|
const msg = await interaction.channel.send({ content: "Getting images" });
|
||||||
async function embed() {
|
async function embed() {
|
||||||
|
@ -14,11 +14,17 @@ module.exports = {
|
||||||
"https://media.discordapp.net/attachments/851761493815853060/893777701599584266/warning.gif"
|
"https://media.discordapp.net/attachments/851761493815853060/893777701599584266/warning.gif"
|
||||||
)
|
)
|
||||||
.setColor(client.color)
|
.setColor(client.color)
|
||||||
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
|
.setFooter({
|
||||||
|
text: `Made by ${client.author}`,
|
||||||
|
iconURL: client.user.displayAvatarURL(),
|
||||||
|
})
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
interaction.followUp({ embeds: [embed] });
|
interaction.followUp({ embeds: [embed] });
|
||||||
}
|
}
|
||||||
let subreddits = [
|
let subreddits = [
|
||||||
|
"GodPussy",
|
||||||
|
"peachlips",
|
||||||
|
"vagina",
|
||||||
"GoneWild",
|
"GoneWild",
|
||||||
"WorkGoneWild",
|
"WorkGoneWild",
|
||||||
"GoneWild30Plus",
|
"GoneWild30Plus",
|
||||||
|
@ -42,9 +48,16 @@ module.exports = {
|
||||||
"thighs",
|
"thighs",
|
||||||
"PerfectThighs",
|
"PerfectThighs",
|
||||||
"thickthighs",
|
"thickthighs",
|
||||||
|
"PushHerHead",
|
||||||
|
"ThroatFuck",
|
||||||
];
|
];
|
||||||
const reddit = subreddits[Math.round(Math.random() * subreddits.length)];
|
const reddit = subreddits[Math.round(Math.random() * subreddits.length)];
|
||||||
const data = await getreddit(reddit);
|
let data = await getreddit(reddit);
|
||||||
|
while (data.length === 0) {
|
||||||
|
while (data.image.length === 0) {
|
||||||
|
data = await getreddit(reddit);
|
||||||
|
}
|
||||||
|
}
|
||||||
let embed1 = null;
|
let embed1 = null;
|
||||||
embed1 = new MessageEmbed({
|
embed1 = new MessageEmbed({
|
||||||
title: data.title,
|
title: data.title,
|
|
@ -1,5 +1,10 @@
|
||||||
{
|
{
|
||||||
"scam": [
|
"scam": [
|
||||||
|
"disceord.gift",
|
||||||
|
"discode.gift",
|
||||||
|
"discosb.gift",
|
||||||
|
"discorx.gift",
|
||||||
|
"disocrds.gift",
|
||||||
"disocrde.gift",
|
"disocrde.gift",
|
||||||
"discrods.gift",
|
"discrods.gift",
|
||||||
"discordsgift.com",
|
"discordsgift.com",
|
||||||
|
|
|
@ -345,7 +345,7 @@ function attachmentsIdentifier(inpmsg, gun) {
|
||||||
probables[probables.length - 1].length != 1 ||
|
probables[probables.length - 1].length != 1 ||
|
||||||
probables.length < splitInputAttachmentsName.length
|
probables.length < splitInputAttachmentsName.length
|
||||||
) {
|
) {
|
||||||
// ask the user if he/she means xxx = which attachment
|
// ask the user if he means xxx = which attachment
|
||||||
errors.push(
|
errors.push(
|
||||||
`\`
|
`\`
|
||||||
${curr
|
${curr
|
||||||
|
@ -358,6 +358,7 @@ function attachmentsIdentifier(inpmsg, gun) {
|
||||||
"\``
|
"\``
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
// push the attachment to the output list
|
||||||
outAttachments.push(gun.aments[probables[probables.length - 1][0]]);
|
outAttachments.push(gun.aments[probables[probables.length - 1][0]]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue