pokerogue/src/enums/move-priority-modifier.ts
2025-10-30 18:58:06 -07:00

14 lines
503 B
TypeScript

import type { ObjectValues } from "#types/type-helpers";
/**
* Enum representing modifiers for Move priorities.
*/
export const MovePriorityModifier = Object.freeze({
/** Used when moves go last in their priority bracket, but before moves of lower priority. */
LAST_IN_BRACKET: 0,
NORMAL: 1,
/** Used when moves go first in their priority bracket, but before moves of lower priority. */
FIRST_IN_BRACKET: 2,
});
export type MovePriorityModifier = ObjectValues<typeof MovePriorityModifier>;