UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

33 lines 1.37 kB
/** * Altar - Legion hero production building * Sacred structure that creates Legion's champion heroes */ import { LegionSpecialBuilding } from "../../../../defaults/legion.js"; export class Altar extends LegionSpecialBuilding { // Readonly properties constructor() { super(); this.hexiteCost = 200; this.fluxCost = 75; this.buildTime = 40; this.buildCount = 1; this.name = "Altar"; this.tier = ""; this.uuid = "e2a1f14a-4a41-4583-9e16-ba09023a64e7"; // Sacred hero production facility stats this.hp = 1000; this.armor = 1; this.armorType = "building"; this.speed = 0; // Relationships this.createdBy = ["faction/legion/unit/legion-build-drone"]; this.unlockedBy = ["faction/legion/building/legion-barracks"]; this.unlocks = ["faction/legion/hero/galavax", "faction/legion/hero/inquisitress", "faction/legion/hero/kraegar"]; // PKL has unlocks for the heroes // Hero production - creates all Legion champions this.creates = ["faction/legion/hero/galavax", "faction/legion/hero/inquisitress", "faction/legion/hero/kraegar"]; // Lore - sacred hero forge through divine blessing } } Altar.src = "src/zerospace/faction/legion/building/altar.ts"; export default Altar; //# sourceMappingURL=altar.js.map