cosa-nostra-backstabbers
Version:
Turbo Mafia bot based off LCN
64 lines (42 loc) • 1.63 kB
JavaScript
var lcn = require("../../../../../source/lcn.js");
var rs = lcn.rolesystem;
module.exports = function (game, message, params) {
var actions = game.actions;
var config = game.config;
// Run checks, etc
var from = game.getPlayerById(message.author.id);
if (params[0] === undefined) {
message.channel.send(":x: Wrong syntax! Please use `" + config["command-prefix"] + "ordain <alphabet/username/nobody>` instead!");
return null;
};
var to = game.getPlayerMatch(params[0]);
actions.delete(x => x.from === from.identifier && x.identifier === "quaestor/ordain");
if (to.score < 0.7 || params[0].toLowerCase() === "nobody") {
message.channel.send(":closed_lock_with_key: You have decided not to sacrifice anyone tonight.");
return null;
};
to = to.player;
if (!to.isAlive()) {
message.channel.send(":x: You cannot ordain a dead player!" + rs.misc.sarcasm(true));
return null;
};
if (to.id === message.author.id) {
message.channel.send(":x: You cannot ordain yourself!" + rs.misc.sarcasm(true));
return null;
} else {
game.addAction("quaestor/ordain", ["cycle"], {
name: "Quaestor-Ordain",
expiry: 1,
from: message.author.id,
to: to.id
});
var mention = to.getDisplayName();
};
message.channel.send(":closed_lock_with_key: You have decided to ordain **" + mention + "** tonight.");
};
module.exports.ALLOW_NONSPECIFIC = false;
module.exports.PRIVATE_ONLY = true;
module.exports.DEAD_CANNOT_USE = true;
module.exports.ALIVE_CANNOT_USE = false;
module.exports.DISALLOW_DAY = true;
module.exports.DISALLOW_NIGHT = false;