isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
17 lines • 507 B
TypeScript
/**
* This represents the type of health that is either given or taken away from a player. Note that we
* cannot use the `HeartSubType` enum for this purpose this since it has no value for broken hearts
* or max hearts.
*/
export declare enum HealthType {
RED = 0,// 5.10.1
SOUL = 1,// 5.10.3
ETERNAL = 2,// 5.10.4
BLACK = 3,// 5.10.6
GOLDEN = 4,// 5.10.7
BONE = 5,// 5.10.11
ROTTEN = 6,// 5.10.12
BROKEN = 7,
MAX_HEARTS = 8
}
//# sourceMappingURL=HealthType.d.ts.map