isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
13 lines (11 loc) • 365 B
text/typescript
import { EntityType } from "isaac-typescript-definitions";
import { ReadonlySet } from "../types/ReadonlySet";
export const SIN_ENTITY_TYPES_SET = new ReadonlySet<EntityType>([
EntityType.SLOTH, // 46
EntityType.LUST, // 47
EntityType.WRATH, // 48
EntityType.GLUTTONY, // 49
EntityType.GREED, // 50
EntityType.ENVY, // 51
EntityType.PRIDE, // 52
]);