adventure
Version:
quickly hack together a nodeschool adventure
19 lines (17 loc) • 502 B
JavaScript
exports.problem = 'Make a dinosaur sound.\n'
+ 'Use `$ADVENTURE_COMMAND verify YOUR_TEXT...` to make your sound.'
;
exports.verify = function (args, cb) {
if (/RAWR/.test(args)) {
console.log('Wow that is a convincing dinosaur.\n');
cb(true);
}
else if (/rawr/i.test(args)) {
console.log('Close, but too quiet. Try louder.\n');
cb(false);
}
else {
console.log("That doesn't sound like a dinosaur at all.\n");
cb(false);
}
};