UNPKG

warscript

Version:

A typescript library for Warcraft III using Warpack.

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