Various Fixes and Additions

This commit is contained in:
Dragon Fire
2020-11-29 13:45:56 -05:00
parent e2f55c048c
commit 33d40c238c
7 changed files with 13 additions and 5 deletions
+3 -1
View File
@@ -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/))
+5
View File
@@ -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: [
+2 -2
View File
@@ -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',
+1
View File
@@ -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',
-1
View File
@@ -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()
}
]
+1
View File
@@ -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
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "123.0.1",
"version": "123.0.2",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {