@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
18 lines • 749 B
JavaScript
/**
* Mera - Adopted Grell Hero
* Melee hero that gets stronger with each attack (lasts 10s). Can Dash through enemies gaining armor, or create a Shield bubble increasing armor.
*/
import { default as OriginalMera } from "../../protectorate/hero/mera.js";
class GrellMera extends OriginalMera {
constructor() {
super();
this.uuid = "b6143673-7911-43c0-91c1-9b7a3b10bf4a";
this.faction = "grell";
this.factionName = "Grell";
// Pulse rifle inherits air+ground targeting from base Protectorate Mera
// Sword attack is ground-only (as shown in documentation)
}
}
GrellMera.src = "src/zerospace/faction/grell/hero/grell-mera.ts";
export default GrellMera;
//# sourceMappingURL=grell-mera.js.map