유병우

Update help.js for adding contents of auction command

...@@ -20,6 +20,7 @@ module.exports = { ...@@ -20,6 +20,7 @@ module.exports = {
20 .addField('/도움', '명령어 설명 및 목록', true) 20 .addField('/도움', '명령어 설명 및 목록', true)
21 .addField('/도움 <명령어>', '명령어 상세 설명', true) 21 .addField('/도움 <명령어>', '명령어 상세 설명', true)
22 .addField('/마리샵', '마리샵 정보 조회', true) 22 .addField('/마리샵', '마리샵 정보 조회', true)
23 + .addField('/경매', '경매 분배금 계산', true)
23 .addField('/정보 <닉네임>', '전투정보실 조회', true) 24 .addField('/정보 <닉네임>', '전투정보실 조회', true)
24 .addField('/로아와 <닉네임>', '로아와 조회', true) 25 .addField('/로아와 <닉네임>', '로아와 조회', true)
25 .addField('/나침반', '금일 스케줄 조회', true) 26 .addField('/나침반', '금일 스케줄 조회', true)
...@@ -37,6 +38,12 @@ module.exports = { ...@@ -37,6 +38,12 @@ module.exports = {
37 .setTitle(`/마리샵 사용방법`) 38 .setTitle(`/마리샵 사용방법`)
38 .setDescription(`현재 마리샵과 이전, 전전의 마리샵의 정보를 조회합니다.`); 39 .setDescription(`현재 마리샵과 이전, 전전의 마리샵의 정보를 조회합니다.`);
39 await interaction.reply({embeds: [helpEmbed], allowedMentions: {repliedUser: false}}); 40 await interaction.reply({embeds: [helpEmbed], allowedMentions: {repliedUser: false}});
41 + } else if(helpCommand === "경매") {
42 + const helpEmbed = new MessageEmbed()
43 + .setColor('#0099ff')
44 + .setTitle(`/경매 <경매가> <인원> 사용방법`)
45 + .setDescription(`경매 분배금을 계산해서 이득 입찰금을 조회합니다.`);
46 + await interaction.reply({embeds: [helpEmbed], allowedMentions: {repliedUser: false}});
40 } else if(helpCommand === "정보") { 47 } else if(helpCommand === "정보") {
41 const helpEmbed = new MessageEmbed() 48 const helpEmbed = new MessageEmbed()
42 .setColor('#0099ff') 49 .setColor('#0099ff')
......