ggejs
Version:
A powerful JavaScript library for interacting with the server of Goodgame Empire: Four Kingdoms
22 lines (15 loc) • 419 B
JavaScript
const InteractiveMapobject = require("./InteractiveMapobject");
class FactionInteractiveMapobject extends InteractiveMapobject {
isDestroyed = false;
aliveProtectorPositions = [];
get titleText() {
return "";
}
get levelText() {
return "";
}
get specialCampId() {
return this.objectId;
}
}
module.exports = FactionInteractiveMapobject;