mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 06:45:24 +01:00
14 lines
484 B
TypeScript
14 lines
484 B
TypeScript
import type { ObjectValues } from "#types/type-helpers";
|
|
|
|
/**
|
|
* Enum representing modifiers for Move priorities.
|
|
*/
|
|
export const MovePriorityInBracket = Object.freeze({
|
|
/** Used when moves go last in their priority bracket, but before moves of lower priority. */
|
|
LAST: 0,
|
|
NORMAL: 1,
|
|
/** Used when moves go first in their priority bracket, but before moves of lower priority. */
|
|
FIRST: 2,
|
|
});
|
|
export type MovePriorityInBracket = ObjectValues<typeof MovePriorityInBracket>;
|