mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 14:55:22 +01:00
14 lines
503 B
TypeScript
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>;
|