la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
22 lines (17 loc) • 367 B
JavaScript
var beasts = [
":tiger:",
":bear:",
":lion_face:",
":boar:",
":wolf:",
":ram:",
":water_buffalo:",
":crocodile:",
":rhino:",
":gorilla:"
]
module.exports = function (prepend_space=false) {
// Inserts a sarcastic remark
var index = Math.floor(Math.random() * beasts.length);
return prepend_space ? " " + beasts[index] : beasts[index];
};