UNPKG

warscript

Version:

A typescript library for Warcraft III using Warpack.

11 lines (10 loc) 526 B
/** @noSelfInFile */ import { AbilityType, AbilityTypeId } from "../ability-type"; import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry"; export declare class ShockWaveAbilityType extends AbilityType { static readonly BASE_ID: AbilityTypeId; get damagePerTarget(): number[]; set damagePerTarget(damagePerTarget: ObjectDataEntryLevelFieldValueSupplier<number>); get maximumTotalDamage(): number[]; set maximumTotalDamage(maximumTotalDamage: ObjectDataEntryLevelFieldValueSupplier<number>); }