isaac-typescript-definitions
Version:
TypeScript definitions for The Binding of Isaac: Repentance.
15 lines (14 loc) • 727 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ActiveSlot = void 0;
var ActiveSlot;
(function (ActiveSlot) {
/** The main slot for active items, in the top-left-hand corner. */
ActiveSlot[ActiveSlot["PRIMARY"] = 0] = "PRIMARY";
/** The Schoolbag slot, to the top-left of the active item. */
ActiveSlot[ActiveSlot["SECONDARY"] = 1] = "SECONDARY";
/** The permanent card/pill slot. Several Tainted characters use this slot. */
ActiveSlot[ActiveSlot["POCKET"] = 2] = "POCKET";
/** A single use card/pill slot. Used by Dice Bag. */
ActiveSlot[ActiveSlot["POCKET_SINGLE_USE"] = 3] = "POCKET_SINGLE_USE";
})(ActiveSlot || (exports.ActiveSlot = ActiveSlot = {}));
;