ZeroSpace.gg

Valkaru Merc Outpost

Valkaru T1 Merc Outpost Building

import { ValkaruMercOutpost } from "../../../../defaults/valkaru.js"; class ValkaruMercOutpostBuilding extends ValkaruMercOutpost { override uuid: string; static override src = "src/zerospace/mercenary/valkaru/building/valkaru-merc-outpost.ts"; constructor() { super(); this.name = "Valkaru Merc Outpost"; this.tier = "T1"; this.hotkey = "O"; this.maxOwned = 3; this.uuid = "4b85ed94-054e-45c7-a3c9-7ad81fe2a68e"; this.shortName = "Merc Outpost"; this.hp = 1500; this.shields = 0; this.armor = 4; this.armorType = "building"; this.speed = 0; this.supply = 0; this.creates = [ "mercenary/valkaru/unit/valkaru-beast", "mercenary/valkaru/unit/valkaru-flame-walker", "mercenary/valkaru/unit/valkaru-hound", "mercenary/valkaru/unit/valkaru-shock-trooper", "mercenary/valkaru/unit/valkaru-tow-bot", "mercenary/valkaru/hero/torq", "mercenary/valkaru/hero/mondar", ]; this.unlocks = [...this.creates]; } } export default ValkaruMercOutpostBuilding;