@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
49 lines • 1.7 kB
JavaScript
"use strict";
/**
* Nourishing Pod - Grell T1 supply building
* Living sanctuary with healing abilities and symbiotic regeneration
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NourishingPod = void 0;
const grell_js_1 = require("../../../../defaults/grell.cjs");
const ability_js_1 = require("../../../../engine/ability.cjs");
class NourishingPod extends grell_js_1.GrellSupplyBuilding {
// Static properties for ID references
constructor() {
super();
this.hexiteCost = 75;
this.fluxCost = 0;
this.buildTime = 12;
this.buildCount = 1;
this.name = "Nourishing Pod";
this.tier = "T0";
this.hotkey = "W";
this.maxAddOns = 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/root-colony"];
// this.upgradedBy = [];
// Tech unlocks
this.unlocks = ["faction/grell/building/incubator"];
// Healing ability
this.heals.heal = new ability_js_1.Heal({
name: "Heal",
healing: 15,
cooldown: 1.0,
energyCost: 4,
parentId: this.id,
parentUUID: this.uuid,
});
}
}
exports.NourishingPod = NourishingPod;
// Static property for source path
NourishingPod.src = "src/zerospace/faction/grell/building/nourishing-pod.ts";
exports.default = NourishingPod;
//# sourceMappingURL=nourishing-pod.js.map