@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
27 lines • 889 B
TypeScript
/**
* Terror Tank - Legion's ultimate modular siege platform
* Massive mobile temple with customizable add-on systems and devastating firepower
*/
import { LegionArmyUnit } from "../../../../defaults/legion.js";
import { Attack } from "../../../../engine/ability.js";
import { Turret } from "../../../../engine/turret.js";
export declare class TerrorTank extends LegionArmyUnit {
uuid: string;
static src: string;
get infuseCost(): number | undefined;
readonly attacks: {
mainGun: Attack;
flameTurretAttack?: Attack;
gatlingGunAttack?: Attack;
pulseforgeAcceleratorAttack?: Attack;
};
readonly turrets: {
flameTurret: Turret;
gatlingGun: Turret;
pulseforgeAccelerator: Turret;
shieldGenerator: Turret;
};
constructor();
}
export default TerrorTank;
//# sourceMappingURL=terror-tank.d.ts.map