la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
23 lines (14 loc) • 651 B
JavaScript
var rs = require("../../../rolesystem/rolesystem.js");
module.exports = function (actionable, game, params) {
// Deals an Unstoppable attack
var poisoner = game.getPlayerByIdentifier(actionable.from);
var poisoned = game.getPlayerByIdentifier(actionable.to);
if (!poisoned.isAlive()) {
return null;
};
rs.prototypes.unstoppableAttack.reason = "poisoned to death by a member of the __Mafia__";
var outcome = rs.prototypes.unstoppableAttack(...arguments);
if (!outcome) {
game.addMessage(poisoner, ":exclamation: Your poisoned target, **" + poisoned.getDisplayName() + "** could not be killed from the poison!");
};
};