la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
15 lines (10 loc) • 348 B
JavaScript
module.exports = function (actionable, game, params) {
var from = game.getPlayerByIdentifier(actionable.from);
var to = game.getPlayerByIdentifier(actionable.to);
var removed = game.actions.delete(x => x.tags.includes("poison") && x.to === actionable.to);
if (removed.length > 0) {
return true;
} else {
return false;
};
};