mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-15 15:57:47 +02:00
Ib Hardcore Edition Command
This commit is contained in:
@@ -268,7 +268,7 @@ in the appropriate channel's topic to use it.
|
|||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
Total: 560
|
Total: 561
|
||||||
|
|
||||||
### Utility:
|
### Utility:
|
||||||
|
|
||||||
@@ -574,6 +574,7 @@ Total: 560
|
|||||||
* **horse-info:** Responds with detailed information on a horse.
|
* **horse-info:** Responds with detailed information on a horse.
|
||||||
* **horse-race:** Bet on the fastest horse in a 6-horse race.
|
* **horse-race:** Bet on the fastest horse in a 6-horse race.
|
||||||
* **hunger-games:** Simulate a Hunger Games match with up to 24 tributes.
|
* **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.
|
* **jeopardy:** Answer a Jeopardy question.
|
||||||
* **lottery:** Attempt to win the lottery with 6 numbers.
|
* **lottery:** Attempt to win the lottery with 6 numbers.
|
||||||
* **mad-libs:** Choose words that fill in the blanks to create a crazy story!
|
* **mad-libs:** Choose words that fill in the blanks to create a crazy story!
|
||||||
|
|||||||
@@ -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');
|
||||||
|
}
|
||||||
|
};
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "120.0.4",
|
"version": "120.1.0",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user