mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-20 14:00:22 +02:00
Beep beep
This commit is contained in:
@@ -22,7 +22,7 @@ module.exports = class EightBallCommand extends Command {
|
|||||||
|
|
||||||
run(msg, { question }) {
|
run(msg, { question }) {
|
||||||
return msg.say(stripIndents`
|
return msg.say(stripIndents`
|
||||||
Question: ${question}
|
${question}
|
||||||
🎱 ${answers[Math.floor(Math.random() * answers.length)]} 🎱
|
🎱 ${answers[Math.floor(Math.random() * answers.length)]} 🎱
|
||||||
`);
|
`);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,12 +23,12 @@ module.exports = class CharlieCharlieChallengeCommand extends Command {
|
|||||||
run(msg, { question }) {
|
run(msg, { question }) {
|
||||||
const answer = answers[Math.floor(Math.random() * answers.length)];
|
const answer = answers[Math.floor(Math.random() * answers.length)];
|
||||||
return msg.say(stripIndent`
|
return msg.say(stripIndent`
|
||||||
Question: ${question}
|
${question}
|
||||||
\`\`\`
|
\`\`\`
|
||||||
${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '}
|
${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '}
|
||||||
NO ${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '}YES
|
NO ${answer === 'no1' ? '\\' : ' '} | ${answer === 'yes1' ? '/' : ' '}YES
|
||||||
${answer === 'no1' ? '\\' : ' '}|${answer === 'yes1' ? '/' : ' '}
|
${answer === 'no1' ? '\\' : ' '}|${answer === 'yes1' ? '/' : ' '}
|
||||||
----------------
|
———————+————————
|
||||||
${answer === 'yes2' ? '/' : ' '}|${answer === 'no2' ? '\\' : ' '}
|
${answer === 'yes2' ? '/' : ' '}|${answer === 'no2' ? '\\' : ' '}
|
||||||
YES${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '}NO
|
YES${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '}NO
|
||||||
${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '}
|
${answer === 'yes2' ? '/' : ' '} | ${answer === 'no2' ? '\\' : ' '}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ module.exports = class MagicConchCommand extends Command {
|
|||||||
|
|
||||||
run(msg, { question }) {
|
run(msg, { question }) {
|
||||||
return msg.say(stripIndents`
|
return msg.say(stripIndents`
|
||||||
Question: ${question}
|
${question}
|
||||||
🐚 ${answers[Math.floor(Math.random() * answers.length)]} 🐚
|
🐚 ${answers[Math.floor(Math.random() * answers.length)]} 🐚
|
||||||
`);
|
`);
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiaobot",
|
"name": "xiaobot",
|
||||||
"version": "46.3.0",
|
"version": "46.3.1",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Shard.js",
|
"main": "Shard.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user