@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 810 B
JavaScript
import OriginalMera from "../../protectorate/hero/mera.js";
/**
* 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.
*/
class GrellMera extends OriginalMera {
constructor() {
super();
this.uuid = "b6143673-7911-43c0-91c1-9b7a3b10bf4a";
this.faction = "grell";
this.factionName = "Grell";
this.internalId = undefined;
this.internalPath = undefined;
// 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