@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
31 lines • 967 B
TypeScript
/**
* Root Colony - Foundational Grell base building
* The living heart of Grell expansion with unit production, biomass generation, and defensive capabilities
*/
import { Attack, Spell } from "../../../../engine/ability.js";
import type { HotKey } from "../../../../engine/core.js";
import { Tier } from "../../../../engine/core.js";
import { GrellBaseBuilding } from "../../grell-classes.js";
export declare class RootColony extends GrellBaseBuilding {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly hp: number;
readonly shields: number;
armor: number;
hotkey: HotKey;
readonly maxAddOns: number;
readonly providesBiomass: number;
unlocksMercTier: Tier;
description: string;
readonly attacks: {
attack: Attack;
};
readonly spells: {
homeBase: Spell;
};
constructor();
}
export default RootColony;
//# sourceMappingURL=root-colony.d.ts.map