isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
21 lines (18 loc) • 826 B
text/typescript
import { HeartSubType } from "isaac-typescript-definitions";
export const DEFAULT_HEART_NAME = "Unknown";
/** Taken from "entities2.xml". */
export const HEART_NAMES = {
[]: DEFAULT_HEART_NAME, // 0
[]: "Heart", // 1
[]: "Heart (half)", // 2
[]: "Heart (soul)", // 3
[]: "Heart (eternal)", // 4
[]: "Heart (double)", // 5
[]: "Black Heart", // 6
[]: "Gold Heart", // 7
[]: "Heart (half soul)", // 8
[]: "Scared Heart", // 9
[]: "Blended Heart", // 10
[]: "Bone Heart", // 11
[]: "Rotten Heart", // 12
} as const satisfies Record<HeartSubType, string>;