isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
17 lines (16 loc) • 745 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LOST_STYLE_CHARACTERS_SET = void 0;
const isaac_typescript_definitions_1 = require("isaac-typescript-definitions");
const ReadonlySet_1 = require("../types/ReadonlySet");
/**
* This is the set of characters that look like The Lost and play the "LostDeath" animation when
* they die.
*/
exports.LOST_STYLE_CHARACTERS_SET = new ReadonlySet_1.ReadonlySet([
isaac_typescript_definitions_1.PlayerType.LOST, // 10
isaac_typescript_definitions_1.PlayerType.SOUL, // 17
isaac_typescript_definitions_1.PlayerType.LOST_B, // 31
isaac_typescript_definitions_1.PlayerType.JACOB_2_B, // 39
isaac_typescript_definitions_1.PlayerType.SOUL_B, // 40
]);