UNPKG

la-cosa-nostra

Version:

A Mafia bot designed to run in Discord - beware the traitors and the lies!

27 lines (17 loc) 773 B
var lcn = require("../../../../../source/lcn.js"); var rs = lcn.rolesystem; var auxils = lcn.auxils; module.exports = function (actionable, game, params) { var escort = game.getPlayerByIdentifier(actionable.from); var alive = game.findAll(x => x.isAlive() && x.identifier !== actionable.from && !escort.misc.visit_log.includes(x.identifier)); var target = auxils.choice(alive); game.addMessage(escort, ":exclamation: You did not pick a target! As a result, **" + target.getDisplayName() + "** has been selected and you have roleblocked them!"); // Revert back to original haunt game.addAction("epi_escort/roleblock", ["cycle"], { name: "Escort-roleblock", expiry: 1, from: actionable.from, to: target.identifier }); return true; };