mirror of
https://github.com/Ninluc/Dat_Boi.git
synced 2025-08-09 23:26:13 +02:00
30 lines
867 B
Plaintext
30 lines
867 B
Plaintext
const { MessageEmbed, Message } = require("discord.js");
|
|
const config = require("../botconfig/config.json");
|
|
const ee = require("../botconfig/embed.json");
|
|
const { sendNinluc } = require("../handlers/functions");
|
|
|
|
const RAPPEL_CHANNEL_ID = "1296051297262370866";
|
|
|
|
module.exports = {
|
|
name: "Shop Marvel Snap",
|
|
time: "21:00",
|
|
run: async (client) => {
|
|
try {
|
|
client.channels.fetch(RAPPEL_CHANNEL_ID)
|
|
.then(channel => channel.send({
|
|
embeds: [
|
|
new MessageEmbed()
|
|
.setColor(ee.color)
|
|
.setFooter({ text: ee.footertext, iconURL: ee.footericon })
|
|
.setTitle(`Rappel : Shop Marvel Snap`)
|
|
],
|
|
})
|
|
);
|
|
} catch (e) {
|
|
console.log(String(e.stack).bgRed);
|
|
}
|
|
},
|
|
};
|
|
|
|
/** Template by Tomato#6966 | https://github.com/Tomato6966/Discord-Js-Handler-Template */
|