isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
58 lines (55 loc) • 2.68 kB
text/typescript
import { PillEffect } from "isaac-typescript-definitions";
export const DEFAULT_PILL_EFFECT_NAME = "Unknown";
export const PILL_EFFECT_NAMES = {
[]: "Bad Gas", // 0
[]: "Bad Trip", // 1
[]: "Balls of Steel", // 2
[]: "Bombs Are Key", // 3
[]: "Explosive Diarrhea", // 4
[]: "Full Health", // 5
[]: "Health Down", // 6
[]: "Health Up", // 7
[]: "I Found Pills", // 8
[]: "Puberty", // 9
[]: "Pretty Fly", // 10
[]: "Range Down", // 11
[]: "Range Up", // 12
[]: "Speed Down", // 13
[]: "Speed Up", // 14
[]: "Tears Down", // 15
[]: "Tears Up", // 16
[]: "Luck Down", // 17
[]: "Luck Up", // 18
[]: "Telepills", // 19
[]: "48 Hour Energy", // 20
[]: "Hematemesis", // 21
[]: "Paralysis", // 22
[]: "I can see forever!", // 23
[]: "Pheromones", // 24
[]: "Amnesia", // 25
[]: "Lemon Party", // 26
[]: "R U a Wizard?", // 27
[]: "Percs!", // 28
[]: "Addicted!", // 29
[]: "Re-Lax", // 30
[]: "???", // 31
[]: "One makes you larger", // 32
[]: "One makes you small", // 33
[]: "Infested!", // 34
[]: "Infested?", // 35
[]: "Power Pill!", // 36
[]: "Retro Vision", // 37
[]: "Friends Till The End!", // 38
[]: "X-Lax", // 39
[]: "Something's wrong...", // 40
[]: "I'm Drowsy...", // 41
[]: "I'm Excited!!!", // 42
[]: "Gulp!", // 43
[]: "Horf!", // 44
[]:
"Feels like I'm walking on sunshine!", // 45
[]: "Vurp!", // 46
[]: "Shot Speed Down", // 47
[]: "Shot Speed Up", // 48
[]: "Experimental Pill", // 49
} as const satisfies Record<PillEffect, string>;