UNPKG

@zerospacegg/iolin

Version:

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

36 lines 1.28 kB
/** * Armory - Legion T2.5 tech building * Advanced weapons facility that provides upgrades for Legion heroes */ import { LegionTechBuilding } from "../../legion-classes.js"; import Galavax from "../hero/galavax.js"; import Inquisitress from "../hero/inquisitress.js"; import Kraegar from "../hero/kraegar.js"; import LegionBuildDrone from "../unit/legion-build-drone.js"; import Citadel from "./citadel.js"; export class Armory extends LegionTechBuilding { constructor() { super(); this.name = "Armory"; this.tier = "T2.5"; this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 25; this.buildCount = 1; this.uuid = "cdc86f55-32a9-4cdd-a7a1-7c222522885d"; // Advanced weapons facility stats this.hp = 1000; this.armor = 1; this.armorType = "building"; this.speed = 0; // Relationships this.createdBy = [LegionBuildDrone.id]; this.unlockedBy = [Citadel.id]; // Tech capabilities this.providesUpgradesFor = [Galavax.id, Inquisitress.id, Kraegar.id]; // Lore - sacred weapon blessing facility } } Armory.src = "src/zerospace/faction/legion/building/armory.ts"; export default Armory; //# sourceMappingURL=armory.js.map