Ib Hardcore Edition Command

This commit is contained in:
Dragon Fire
2020-11-22 11:56:09 -05:00
parent 3fbb4b89ff
commit 64e1ebdd13
3 changed files with 20 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
const Command = require('../../structures/Command');
module.exports = class IbHardcoreEditionCommand extends Command {
constructor(client) {
super(client, {
name: 'ib-hardcore-editon',
aliases: ['ib-hardcore', 'ib'],
group: 'games-sp',
memberName: 'ib-hardcore-edition',
description: 'Responds with the download link for Ib: Hardcore Edition.'
});
}
run(msg) {
return msg.say('https://drive.google.com/file/d/1RHDvI8RthElngagvwu-GXUN69-oHsUBO/view?usp=sharing');
}
};