@randomgeekdom/rollbard
Version:
Libraries and generators for fantasy/scifi worldbuilding
16 lines • 429 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Enemy = /** @class */ (function () {
function Enemy() {
this.Name = "";
this.Description = "";
this.HP = 0;
this.Armor = 0;
this.Weakness = "";
this.Immunity = "";
this.Locations = "";
}
return Enemy;
}());
exports.default = Enemy;
//# sourceMappingURL=Enemy.js.map