swordio
Version:
A medieval warrior-based programming language
19 lines (14 loc) • 504 B
JavaScript
function SwordCell(map) {
this.map = map;
}
SwordCell.type = "1";
SwordCell.prototype.encounter = function(enemy, vector) {
var targetX = this.x + vector.x;
var targetY = this.y + vector.y;
var stringValue = this.map.get(targetX, targetY).type;
var numberValue = stringValue.charCodeAt(0) - 32;
enemy.kill();
this.map.set(targetX, targetY, String.fromCharCode(numberValue + 31));
if (numberValue <= 1) this.map.set(this.x, this.y, " ");
};
module.exports = SwordCell;