isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
106 lines (103 loc) • 5.73 kB
text/typescript
import { CardType } from "isaac-typescript-definitions";
export const DEFAULT_CARD_DESCRIPTION = "Unknown";
/** This is a temporary map due to missing features in the vanilla API. */
export const CARD_DESCRIPTIONS = {
[]: DEFAULT_CARD_DESCRIPTION, // 0
[]: "Where journey begins", // 1
[]: "May you never miss your goal", // 2
[]: "Mother is watching you", // 3
[]: "May your rage bring power", // 4
[]: "Challenge me!", // 5
[]: "Two prayers for the lost", // 6
[]: "May you prosper and be in good health", // 7
[]: "May nothing stand before you", // 8
[]: "May your future become balanced", // 9
[]: "May you see what life has to offer", // 10
[]: "Spin the wheel of destiny", // 11
[]: "May your power bring rage", // 12
[]: "May you find enlightenment ", // 13
[]: "Lay waste to all that oppose you ", // 14
[]: "May you be pure in heart", // 15
[]: "Revel in the power of darkness", // 16
[]: "Destruction brings creation", // 17
[]: "May you find what you desire ", // 18
[]: "May you find all you have lost", // 19
[]: "May the light heal and enlighten you", // 20
[]: "Judge lest ye be judged", // 21
[]: "Open your eyes and see", // 22
[]: "Item multiplier", // 23
[]: "Item multiplier", // 24
[]: "Item multiplier", // 25
[]: "Item multiplier", // 26
[]: "Convert all", // 27
[]: "Convert all", // 28
[]: "Convert all", // 29
[]: "Convert all", // 30
[]: "???", // 31
[]: "Destruction", // 32
[]: "Abundance", // 33
[]: "Passage", // 34
[]: "Purity", // 35
[]: "Vision", // 36
[]: "Change", // 37
[]: "Companionship", // 38
[]: "Resistance", // 39
[]: "???", // 40
[]: "Void", // 41
[]: "???", // 42
[]: "Charge it!", // 43
[]: "???", // 44
[]: "Something stinks...", // 45
[]: "A true ending?", // 46
[]: "Open Sesame", // 47
[]: "Double active", // 48
[]: "D6 + D20", // 49
[]: "Help from above", // 50
[]: "You feel protected", // 51
[]: "Become immense!", // 52
[]: "Draw 3 cards", // 53
[]: "Savor the moment", // 54
[]: "It still glows faintly", // 55
[]: "Let go and move on", // 56
[]: "May no harm come to you", // 57
[]: "Run", // 58
[]: "May your love bring protection", // 59
[]: "May you find a worthy opponent", // 60
[]: "Two prayers for the forgotten", // 61
[]: "May your heart shatter into pieces", // 62
[]: "May nothing walk past you", // 63
[]: "May your sins come back to torment you", // 64
[]: "May you see the value of all things in life", // 65
[]: "Throw the dice of fate", // 66
[]: "May you break their resolve", // 67
[]: "May your greed know no bounds", // 68
[]: "May life spring forth from the fallen", // 69
[]: "May your hunger be satiated", // 70
[]: "Bask in the light of your mercy", // 71
[]: "Creation brings destruction", // 72
[]: "May your loss bring fortune", // 73
[]: "May you remember lost memories", // 74
[]: "May the darkness swallow all around you", // 75
[]: "May you redeem those found wanting", // 76
[]: "Step into the abyss", // 77
[]: "???", // 78
[]: "<3", // 79
[]: "Again", // 80
[]: "Reroll... or not", // 81
[]: "Give me your love!", // 82
[]: "Opens the unopenable", // 83
[]: "Right behind you", // 84
[]: "Chemical warfare", // 85
[]: "Your very own murder", // 86
[]: "Slay a thousand", // 87
[]: "Demon rage!", // 88
[]: "Life after death", // 89
[]: "Embrace chaos", // 90
[]: "Leave your body behind", // 91
[]: "Motherhood", // 92
[]: "$$$", // 93
[]: "Bringer of calamity", // 94
[]: "Skeletal protector", // 95
[]: "Friends from beyond", // 96
[]: "Bound by blood", // 97
} as const satisfies Record<CardType, string>;