mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-10 19:04:42 +02:00
Various Fixes and Additions
This commit is contained in:
@@ -823,7 +823,7 @@ Total: 565
|
||||
* **currency:** Converts currency from one currency to another.
|
||||
* **final-grade:** Determines the grade you need to make on your final to get your desired course grade.
|
||||
* **grade:** Determines your grade on an assignment on an 100-point scale.
|
||||
* **gravity:** Determines weight on another planet.
|
||||
* **gravity:** Determines weight on another celestial object.
|
||||
* **math:** Evaluates a math expression.
|
||||
* **prime:** Determines if a number is a prime number.
|
||||
* **roman:** Converts a number to roman numerals.
|
||||
@@ -985,6 +985,8 @@ here.
|
||||
* cuteness (Concept)
|
||||
* screenshot (Concept)
|
||||
* worth (Concept)
|
||||
- [Becel](https://www.becel.ca/en-ca)
|
||||
* hat (Becel Hat Image)
|
||||
- [Bethesda](https://bethesda.net/en/dashboard)
|
||||
* dislike ([Image, Original "Fallout" Game](https://fallout.bethesda.net/en/))
|
||||
* like ([Image, Original "Fallout" Game](https://fallout.bethesda.net/en/))
|
||||
|
||||
@@ -113,6 +113,11 @@ module.exports = class HatCommand extends Command {
|
||||
url: 'https://webstockreview.net/',
|
||||
reason: 'Devil Hat Image',
|
||||
reasonURL: 'https://webstockreview.net/explore/horn-clipart-purple-devil/'
|
||||
},
|
||||
{
|
||||
name: 'Becel',
|
||||
url: 'https://www.becel.ca/en-ca',
|
||||
reason: 'Becel Hat Image'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
|
||||
@@ -8,8 +8,8 @@ module.exports = class GravityCommand extends Command {
|
||||
name: 'gravity',
|
||||
group: 'edit-number',
|
||||
memberName: 'gravity',
|
||||
description: 'Determines weight on another planet.',
|
||||
details: `**Planets:** ${Object.keys(planets).join(', ')}`,
|
||||
description: 'Determines weight on another celestial object.',
|
||||
details: `**Celestial Objects:** ${Object.keys(planets).join(', ')}`,
|
||||
credit: [
|
||||
{
|
||||
name: 'NASA',
|
||||
|
||||
@@ -15,6 +15,7 @@ module.exports = class NekoAtsumePasswordCommand extends Command {
|
||||
group: 'events',
|
||||
memberName: 'neko-atsume-password',
|
||||
description: 'Responds with today\'s Neko Atsume password.',
|
||||
details: `**Locales:** ${locales.join(', ')}`,
|
||||
credit: [
|
||||
{
|
||||
name: 'Neko Atsume: Kitty Collector',
|
||||
|
||||
@@ -18,7 +18,6 @@ module.exports = class NewsCommand extends SubredditCommand {
|
||||
prompt: `What subreddit do you want to get news from? Either ${list(subreddits, 'or')}.`,
|
||||
type: 'string',
|
||||
oneOf: subreddits,
|
||||
default: () => subreddits[Math.floor(Math.random() * subreddits.length)],
|
||||
parse: subreddit => subreddit.toLowerCase()
|
||||
}
|
||||
]
|
||||
|
||||
@@ -12,6 +12,7 @@ module.exports = class SoundboardCommand extends Command {
|
||||
group: 'voice',
|
||||
memberName: 'soundboard',
|
||||
description: 'Plays a sound in a voice channel.',
|
||||
details: `**Sounds:** ${soundsChoice.join(', ')}`,
|
||||
guildOnly: true,
|
||||
throttling: {
|
||||
usages: 1,
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "123.0.1",
|
||||
"version": "123.0.2",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user