ZeroSpace.gg

Nourishing Pod

Grell T0 Supply Building

import { GrellSupplyBuilding } from "../../../../defaults/grell.js"; import { Heal } from "../../../../engine/ability.js"; export class NourishingPod extends GrellSupplyBuilding { override uuid: string; static override src = "src/zerospace/faction/grell/building/nourishing-pod.ts"; constructor() { super(); this.hexiteCost = 75; this.fluxCost = 0; this.buildTime = 12; this.buildCount = 1; this.name = "Nourishing Pod"; this.description = `Provides ${this.providesSupply} Supply. \nHeals nearby units.`; this.tier = "T0"; this.hotkey = "W"; this.maxTurrets = 0; this.providesBiomass = 750; this.uuid = "08fb8408-472c-4589-8df4-b371e5ecf218"; this.hp = 500; this.shields = 0; this.armor = 1; this.armorType = "building"; this.speed = 0; this.createdBy = ["faction/grell/unit/seedling"]; this.unlockedBy = ["faction/grell/building/bloomwell"]; // this.upgradedBy = []; this.unlocks = ["faction/grell/building/broodwomb"]; this.heals.heal = new Heal({ name: "Heal", healing: 15, cooldown: 1.0, energyCost: 4, parentId: this.id, parentUUID: this.uuid, }); } } export default NourishingPod;