isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
24 lines (23 loc) • 976 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RockAltType = void 0;
/** This is used in the various rock alt type helper functions. */
var RockAltType;
(function (RockAltType) {
RockAltType[RockAltType["URN"] = 0] = "URN";
RockAltType[RockAltType["MUSHROOM"] = 1] = "MUSHROOM";
RockAltType[RockAltType["SKULL"] = 2] = "SKULL";
RockAltType[RockAltType["POLYP"] = 3] = "POLYP";
/**
* Destroying buckets in Downpour give different outcomes than in Dross.
*
* See: https://bindingofisaacrebirth.fandom.com/wiki/Rocks#Buckets
*/
RockAltType[RockAltType["BUCKET_DOWNPOUR"] = 4] = "BUCKET_DOWNPOUR";
/**
* Destroying buckets in Dross give different outcomes than in Downpour.
*
* See: https://bindingofisaacrebirth.fandom.com/wiki/Rocks#Buckets
*/
RockAltType[RockAltType["BUCKET_DROSS"] = 5] = "BUCKET_DROSS";
})(RockAltType || (exports.RockAltType = RockAltType = {}));