UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

18 lines 675 B
import OriginalTechHero from "../../protectorate/hero/tech-hero.js"; /** * 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. */ class GrellTechHero extends OriginalTechHero { constructor() { super(); this.uuid = "34975810-b4d7-4ecc-95b7-f878f345b00e"; this.faction = "grell"; this.factionName = "Grell"; this.internalId = undefined; this.internalPath = undefined; } } GrellTechHero.src = "src/zerospace/faction/grell/hero/grell-tech-hero.ts"; export default GrellTechHero; //# sourceMappingURL=grell-tech-hero.js.map