mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-29 13:02:46 +02:00
* address shop cursor target feedbacks * make rewards left-most * fix tests breaking * Update src/test/items/dire_hit.test.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Update src/test/items/temp_stat_stage_booster.test.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Update src/locales/ja/settings.json Co-authored-by: Chapybara-jp <charlie.beer@hotmail.com> * update default value * stylistic change --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> Co-authored-by: Chapybara-jp <charlie.beer@hotmail.com>
14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
/**
|
|
* Determines the row cursor target when entering the shop phase.
|
|
*/
|
|
export enum ShopCursorTarget {
|
|
/** Cursor points to Reroll row */
|
|
REROLL,
|
|
/** Cursor points to Rewards row */
|
|
REWARDS,
|
|
/** Cursor points to Shop row */
|
|
SHOP,
|
|
/** Cursor points to Check Team row */
|
|
CHECK_TEAM
|
|
}
|