module.exports = function (actionable, game, params) {
varfrom = game.getPlayerByIdentifier(actionable.from);
var to = game.getPlayerByIdentifier(actionable.to);
// Set stats or do whatever
to.setGameStat("basic-defense", 2, Math.max);
returntrue;
};