mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-22 00:35:56 +00:00
trivia: add science and nature
This commit is contained in:
parent
96a12f0f72
commit
204540f936
2 changed files with 5 additions and 2 deletions
|
@ -89,7 +89,7 @@ node bot.js
|
|||
|
||||
### Fun Commands
|
||||
|
||||
- **/trivia**: Starts a trivia game with video game-themed, Anime & Manga, Computers, Board Games, Comics, Cartoons & Animations, Film and General Knowledge (more to come soon!) questions. Players have 30 seconds to answer.
|
||||
- **/trivia**: Starts a trivia game with video game-themed, Anime & Manga, Computers, Board Games, Comics, Cartoons & Animations, Film, General Knowledge and Science & Nature (more to come soon!) questions. Players have 30 seconds to answer.
|
||||
|
||||
- Accepts both number answers (1-4) **or** the correct answer
|
||||
- for example:
|
||||
|
|
|
@ -27,7 +27,8 @@ module.exports = {
|
|||
{ name: "Board Games", value: "16" },
|
||||
{ name: "Comics", value: "29" },
|
||||
{ name: "Cartoons & Animations", value: "32" },
|
||||
{ name: "Film", value: "11" }
|
||||
{ name: "Film", value: "11" },
|
||||
{ name: "Science & Nature", value: "17" }
|
||||
)
|
||||
),
|
||||
|
||||
|
@ -69,6 +70,8 @@ module.exports = {
|
|||
return "Film";
|
||||
case "9":
|
||||
return "General Knowledge";
|
||||
case "17":
|
||||
return "Science & Nature";
|
||||
default:
|
||||
return "Video Games";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue