@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 680 B
TypeScript
/**
* Mera - Protectorate Hero
* Weapon-switching warrior with sword and pulse rifle combat modes
*/
import { ProtectorateHeroUnit } from "../../../../defaults/protectorate.js";
import { Attack, Spell, WeaponSwitch } from "../../../../engine/ability.js";
export declare class Mera extends ProtectorateHeroUnit {
uuid: string;
static src: string;
readonly attacks: {
swordAttack: Attack;
pulseRifle: Attack;
};
readonly spells: {
dash: Spell;
protectiveBarrier: Spell;
};
readonly weaponSwitches: {
weaponSwitch: WeaponSwitch;
};
constructor();
}
export default Mera;
//# sourceMappingURL=mera.d.ts.map