update
This commit is contained in:
parent
a5e78a23c4
commit
170583415a
7 changed files with 16 additions and 212 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 }),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -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,6 @@
|
||||||
{
|
{
|
||||||
"scam": [
|
"scam": [
|
||||||
|
"disceord.gift",
|
||||||
"discode.gift",
|
"discode.gift",
|
||||||
"discosb.gift",
|
"discosb.gift",
|
||||||
"discorx.gift",
|
"discorx.gift",
|
||||||
|
|
Loading…
Reference in a new issue