la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
19 lines (11 loc) • 320 B
JavaScript
module.exports = async function (game, role) {
var client = game.client;
var config = game.config;
var lynchable = role.lynchable();
if (!lynchable) {
return false;
};
var lynches = Array.from(role.votes);
game.execute("lynch", {target: role.identifier, votes: lynches});
return lynchable;
};