UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

17 lines (16 loc) 794 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CHARACTERS_WITH_NO_SOUL_HEARTS_SET = void 0; const isaac_typescript_definitions_1 = require("isaac-typescript-definitions"); const ReadonlySet_1 = require("../types/ReadonlySet"); /** * The set of characters where soul hearts will be automatically stripped away (e.g. Bethany). This * includes The Lost and Tainted Lost. */ exports.CHARACTERS_WITH_NO_SOUL_HEARTS_SET = new ReadonlySet_1.ReadonlySet([ isaac_typescript_definitions_1.PlayerType.LOST, // 10 isaac_typescript_definitions_1.PlayerType.KEEPER, // 14 isaac_typescript_definitions_1.PlayerType.BETHANY, // 18 isaac_typescript_definitions_1.PlayerType.LOST_B, // 31 isaac_typescript_definitions_1.PlayerType.KEEPER_B, // 33 ]);