@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
16 lines • 614 B
JavaScript
/**
* TechHero - Adopted Grell Hero
* Support hero. Can slow and damage enemies in line. Teleport or swap with other units. Add a shield to friendly units.
*/
import { default as OriginalTechHero } from "../../protectorate/hero/tech-hero.js";
class GrellTechHero extends OriginalTechHero {
constructor() {
super();
this.uuid = "34975810-b4d7-4ecc-95b7-f878f345b00e";
this.faction = "grell";
this.factionName = "Grell";
}
}
GrellTechHero.src = "src/zerospace/faction/grell/hero/grell-tech-hero.ts";
export default GrellTechHero;
//# sourceMappingURL=grell-tech-hero.js.map