UNPKG

la-cosa-nostra

Version:

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

36 lines (24 loc) 1.14 kB
module.exports = function (actionable, game, params) { var target = game.getPlayerByIdentifier(actionable.to); var roleblocker = game.getPlayerByIdentifier(actionable.from); // Considered as visit game.execute("visit", {visitor: actionable.from, target: actionable.to, priority: actionable.priority, reason: "Consort-visit"}); game.execute("roleblock", {roleblocker: actionable.from, target: actionable.to, priority: actionable.priority, reason: "Consort-roleblock"}); var immunity = target.getStat("roleblock-immunity", Math.max); if (immunity < 1) { // Delete all game.actions.delete(x => x.from === target.identifier && x.tags.includes("roleblockable")); game.addMessage(target, ":exclamation: You were roleblocked last night!"); target.setStatus("roleblocked", true); } else { game.addMessage(target, ":exclamation: Someone tried roleblocking you last night but you could not be roleblocked!"); //game.addMessage(roleblocker, ":exclamation: Your target could not be roleblocked last night!"); }; }; module.exports.TAGS = ["drivable", "roleblockable", "visit"];