mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-27 19:27:16 +00:00
9faa489f19
Add endless mode; prevent stat booster items from being transferred or stolen
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
export enum Unlockables {
|
|
ENDLESS_MODE,
|
|
MINI_BLACK_HOLE
|
|
}
|
|
|
|
export function getUnlockableName(unlockable: Unlockables) {
|
|
switch (unlockable) {
|
|
case Unlockables.ENDLESS_MODE:
|
|
return 'Endless Mode';
|
|
case Unlockables.MINI_BLACK_HOLE:
|
|
return 'MINI BLACK HOLE';
|
|
}
|
|
} |