Showing
1 changed file
with
16 additions
and
0 deletions
commands/auction.js
0 → 100644
1 | +const { SlashCommandBuilder } = require('@discordjs/builders'); | ||
2 | +const { MessageEmbed } = require('discord.js'); | ||
3 | + | ||
4 | +module.exports = { | ||
5 | + data: new SlashCommandBuilder() | ||
6 | + .setName('경매') | ||
7 | + .setDescription('경매에서 최대로 이득을 볼 수 있는 입찰가를 계산합니다.') | ||
8 | + .addStringOption((option)=> | ||
9 | + option | ||
10 | + .setName("경매가") | ||
11 | + .setDescription("경매 물품의 경매장 최저가") | ||
12 | + .setRequired(true) | ||
13 | + ), | ||
14 | + async execute(interaction) { | ||
15 | + }, | ||
16 | +}; | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment