@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
27 lines • 831 B
TypeScript
/**
* Sabretooth - Kraegar's loyal companion beast
* Unique rebuildable creature that grows stronger from allied beast deaths
*/
import { Attack, Passive } from "../../../../engine/ability.js";
import { LegionSpecialUnit } from "../../legion-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class Sabretooth extends LegionSpecialUnit {
uuid: string;
static src: string;
readonly rebuildTime: number;
readonly rebuildable: boolean;
readonly name: string;
readonly tier: Tier;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly attacks: {
attack: Attack;
};
readonly passives: {
feed: Passive;
};
constructor();
}
export default Sabretooth;
//# sourceMappingURL=sabretooth.d.ts.map