isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
50 lines (47 loc) • 2.7 kB
text/typescript
// cspell:disable
import { PlayerType } from "isaac-typescript-definitions";
export const CHARACTER_SPRITE_PNG_FILE_NAMES = {
// Possessor uses the same sprite as Isaac.
[]: "character_001_isaac.png", // 0
[]: "character_001_isaac.png", // 0
[]: "character_002_magdalene.png", // 1
[]: "character_003_cain.png", // 2
[]: "character_004_judas.png", // 3
[]: "character_006_bluebaby.png", // 4
[]: "character_005_eve.png", // 5
[]: "character_007_samson.png", // 6
[]: "character_008_azazel.png", // 7
[]: "character_009_lazarus.png", // 8
[]: "character_009_eden.png", // 9
[]: "character_012_thelost.png", // 10
[]: "character_010_lazarus2.png", // 11
[]: "character_013_blackjudas.png", // 12
[]: "character_014_lilith.png", // 13
[]: "character_015_keeper.png", // 14
[]: "character_016_apollyon.png", // 15
[]: "character_017_theforgotten.png", // 16
[]: "character_018_thesoul.png", // 17
[]: "character_001x_bethany.png", // 18
[]: "character_002x_jacob.png", // 19
[]: "character_003x_esau.png", // 20
[]: "character_001b_isaac.png", // 21
[]: "character_002b_magdalene.png", // 22
[]: "character_003b_cain.png", // 23
[]: "character_004b_judas.png", // 24
[]: "character_005b_bluebaby.png", // 25
[]: "character_006b_eve.png", // 26
[]: "character_007b_samson.png", // 27
[]: "character_008b_azazel.png", // 28
[]: "character_009b_lazarus.png", // 29
[]: "character_009_eden.png", // 30
[]: "character_012b_thelost.png", // 31
[]: "character_014b_lilith.png", // 32
[]: "character_015b_keeper.png", // 33
[]: "character_016b_apollyon.png", // 34
[]: "character_016b_theforgotten.png", // 35
[]: "character_018b_bethany.png", // 36
[]: "character_019b_jacob.png", // 37
[]: "character_009b_lazarus2.png", // 38
[]: "character_019b_jacob2.png", // 39
[]: "character_017b_thesoul.png", // 40
} as const satisfies Record<PlayerType, string>;