diff options
author | 2019-08-27 17:32:50 +0530 | |
---|---|---|
committer | 2019-08-27 17:32:50 +0530 | |
commit | c558d88e74fa6e638dd38bc1232e2839ba72c8da (patch) | |
tree | 386920f795b7e7c56ae47f233d7b8a35bcf49273 /bot/resources | |
parent | Merge pull request #265 from vivax3794/losing_addintions (diff) |
A fun trivia quiz that can be played on multiple channelsThe trivia quiz has the following features: quiz has the following features:
- There wont be any options to the questions asked, the users have to type the answer in the chat and the bot will pick up the right anwer
- If 3 questions have not been answered in a row, the quiz will be brought to a halt assuming inactivity.
- There are also hints in this game! A hint will be sent after 10s after the question has been sent.Each question has a maximum if 2 hints.
- The bot checks for the closest answer rather than the exact one(Incase of typoes in the users answer
Diffstat (limited to 'bot/resources')
-rw-r--r-- | bot/resources/evergreen/trivia_quiz.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/bot/resources/evergreen/trivia_quiz.json b/bot/resources/evergreen/trivia_quiz.json new file mode 100644 index 00000000..f884e67a --- /dev/null +++ b/bot/resources/evergreen/trivia_quiz.json @@ -0,0 +1,34 @@ +{ + "retro": [ + { + "id": 1, + "hints": ["It was not a mainline Mario Game, although the plumber was present.", "It was not a mainline Zelda Game, although Link was present."], + "question": "What was the best selling game on the Nintendo Gamecube?", + "answer": "Super Smash Bros" + }, + { + "id": 2, + "hints": ["It was released before the 90s.", "It was released after 1980."], + "question": "What year was Tetris released?", + "answer": "1984" + }, + { + "id": 3, + "hints": ["The occupation was in construction", "He appeared as this kind of worker in 1981's Donkey Kong"], + "question": "What was Mario's original occupation?", + "answer": "Carpenter" + }, + { + "id": 4, + "hints": ["It was revelead in the Nintendo Character Guide in 1993.", "His last name has to do with eating Mario's enemies."], + "question": "What is Yoshi's(from Mario Bros) full name?", + "answer": "Yoshisaur Munchakoopas" + }, + { + "id": 5, + "hints": ["The game was released in 1990.", "It was released on the SNES."], + "question": "What was the first game Yoshi appeared in?", + "answer": "Super Mario World" + } + ] +} |