ZeroSpace.gg

Sacrificial Site

Legion Special Building

import { Heal } from "../../../../engine/ability.js"; import { LegionSpecialBuilding } from "../../../../defaults/legion.js"; export class SacrificialSite extends LegionSpecialBuilding { override uuid: string; static override src = "src/zerospace/faction/legion/building/sacrificial-site.ts"; constructor() { super(); this.hexiteCost = 50; this.fluxCost = 0; this.buildTime = 15; this.buildCount = 1; this.name = "Sacrificial Site"; this.uuid = "7ef26777-d15e-4877-b5e9-7b9631f92aba"; this.hp = 150; this.armor = 2; this.armorType = "building"; this.speed = 0; this.createdBy = ["faction/legion/hero/galavax"]; this.heals.heal = new Heal({ name: "Heal", healing: 15, cooldown: 1, parentId: this.id, parentUUID: this.uuid, }); } } export default SacrificialSite;