la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
28 lines (18 loc) • 803 B
JavaScript
var lcn = require("../../../../../source/lcn.js");
var rs = lcn.rolesystem;
module.exports = function (actionable, game, params) {
var user = game.getPlayerByIdentifier(actionable.from);
var visitor = game.getPlayerByIdentifier(params.visitor);
/* For some reason, if the veteran visits self after the
alert action was sent, it should not go through */
if (user.identifier === visitor.identifier) {
return null;
};
// Deal basic attack to anyone
rs.prototypes.basicAttack.reason = "decimated by the __God of Revenge__";
// Attack is astral
var outcome = rs.prototypes.basicAttack({from: user.identifier, to: visitor.identifier}, game, params, true);
/*if (!outcome) {
game.addMessage(":exclamation: Someone visited you but they could not be attacked!");
};*/
};