From 64e1ebdd13f2e90f6bef992b5c867a82038e9724 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 22 Nov 2020 11:56:09 -0500 Subject: [PATCH] Ib Hardcore Edition Command --- README.md | 3 ++- commands/games-sp/ib-hardcore-edition.js | 17 +++++++++++++++++ package.json | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 commands/games-sp/ib-hardcore-edition.js diff --git a/README.md b/README.md index fdf85acd..089b88cf 100644 --- a/README.md +++ b/README.md @@ -268,7 +268,7 @@ in the appropriate channel's topic to use it. ## Commands -Total: 560 +Total: 561 ### Utility: @@ -574,6 +574,7 @@ Total: 560 * **horse-info:** Responds with detailed information on a horse. * **horse-race:** Bet on the fastest horse in a 6-horse race. * **hunger-games:** Simulate a Hunger Games match with up to 24 tributes. +* **ib-hardcore-edition:** Responds with the download link for Ib: Hardcore Edition. * **jeopardy:** Answer a Jeopardy question. * **lottery:** Attempt to win the lottery with 6 numbers. * **mad-libs:** Choose words that fill in the blanks to create a crazy story! diff --git a/commands/games-sp/ib-hardcore-edition.js b/commands/games-sp/ib-hardcore-edition.js new file mode 100644 index 00000000..62cfc60c --- /dev/null +++ b/commands/games-sp/ib-hardcore-edition.js @@ -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'); + } +}; diff --git a/package.json b/package.json index 9f2cbff3..4139b9a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "120.0.4", + "version": "120.1.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {