Added riddles outline.
This commit is contained in:
6
assets/riddles.json
Normal file
6
assets/riddles.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"riddle": "What has to be broken before you can use it?",
|
||||||
|
"answer": "An egg."
|
||||||
|
}
|
||||||
|
]
|
||||||
12
src/games/riddle.js
Normal file
12
src/games/riddle.js
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const riddles = require('../../assets/riddles.json');
|
||||||
|
|
||||||
|
const open = new Map();
|
||||||
|
|
||||||
|
function onCommand(args, context) {
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
onCommand,
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user