Adding 8-ball command

This commit is contained in:
Raven Scott
2022-10-17 00:38:56 -04:00
parent f15c2786a6
commit 8561265a05
6 changed files with 258 additions and 5 deletions

View File

@ -1,10 +1,19 @@
const { EmbedBuilder } = require('discord.js');
const { ContextMenuCommandBuilder, ApplicationCommandType } = require('discord.js');
module.exports = {
name: "ping",
description: "Returns websocket latency",
run: async (client, interaction) => {
const { ContextMenuCommandBuilder, ApplicationCommandType } = require('discord.js');
const data = new ContextMenuCommandBuilder()
.setName('User Information')
.setType(ApplicationCommandType.User);
const embed = new EmbedBuilder()
.setColor("#FF0000")
.setTitle("🏓 Pong!")