la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
27 lines (17 loc) • 593 B
JavaScript
var lcn = require("../../../../../source/lcn.js");
var rs = lcn.rolesystem;
module.exports = function (actionable, game, params) {
// Check if XK roles left
var primary_left = game.exists(x => x.role.tags.includes("primary_mafia_pyro") && x.isAlive());
if (primary_left) {
return null;
};
// Promote the player to Mafioso
var player = game.getPlayerByIdentifier(actionable.to);
if (!player.isAlive()) {
return true;
};
player.changeRole("pyromaniac");
game.addMessage(player, ":exclamation: You have been promoted to a __Pyromaniac__!");
return true;
};