UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

20 lines (19 loc) 1.04 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CHARACTERS_WITH_NO_RED_HEARTS_SET = void 0; const isaac_typescript_definitions_1 = require("isaac-typescript-definitions"); const ReadonlySet_1 = require("../types/ReadonlySet"); /** * The set of characters where red heart containers will be turned into soul hearts (e.g. Blue * Baby). This includes The Lost and Tainted Lost. This does not include Keeper or Tainted Keeper. */ exports.CHARACTERS_WITH_NO_RED_HEARTS_SET = new ReadonlySet_1.ReadonlySet([ isaac_typescript_definitions_1.PlayerType.BLUE_BABY, // 4 isaac_typescript_definitions_1.PlayerType.LOST, // 10 isaac_typescript_definitions_1.PlayerType.DARK_JUDAS, // 12 isaac_typescript_definitions_1.PlayerType.JUDAS_B, // 24 isaac_typescript_definitions_1.PlayerType.BLUE_BABY_B, // 25 isaac_typescript_definitions_1.PlayerType.LOST_B, // 31 isaac_typescript_definitions_1.PlayerType.FORGOTTEN_B, // 35 isaac_typescript_definitions_1.PlayerType.BETHANY_B, // 36 ]);