UNPKG

warscript

Version:

A typescript library for Warcraft III using Warpack.

17 lines (16 loc) 858 B
/** @noSelfInFile */ import { AbilityType, AbilityTypeId } from "../ability-type"; import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry"; export declare class InventoryAbilityType extends AbilityType { static readonly BASE_ID: AbilityTypeId; get capacity(): number[]; set capacity(capacity: ObjectDataEntryLevelFieldValueSupplier<number>); get dropsItemsOnDeath(): boolean[]; set dropsItemsOnDeath(dropsItemsOnDeath: ObjectDataEntryLevelFieldValueSupplier<boolean>); get canUseItems(): boolean[]; set canUseItems(canUseItems: ObjectDataEntryLevelFieldValueSupplier<boolean>); get canGetItems(): boolean[]; set canGetItems(canGetItems: ObjectDataEntryLevelFieldValueSupplier<boolean>); get canDropItems(): boolean[]; set canDropItems(canDropItems: ObjectDataEntryLevelFieldValueSupplier<boolean>); }