Files
Retnuhytnuob c75a93182f Renaming of board related src files, Prize state naming, board/bonus board state/substate naming (#214)
* name prize array, start on main board state

* next board state const refs

* main/groudon board states

* spriteGroup Const initialize

* undo SG_ consts for now - Later PR

* sprite group active bool checkpoint

* sprite group active conditions

* center screen display

* board substate initial enum tagging

* board intro mode; bonus board substates

* folderization; partial

* catch tile naming

* remaining board folderization (2 intended exceptions)

* center catch substates

* Finished Catchem substates

* finish jirachi substate mode

* baby mon substates

* clean up center screen in-file naming

* defolderization, evo/travel substates

* pendingModeChangeFlags

* Kecleon board state naming

* spheal board states

* fix unknown enum name

* kyogre initial state enum

* kyogre const checkpoint

* kyogre state enums finished

* data extraction for roulette wheel sets, state for special capturestate

* rayquaza states, roulette prize option dump
2026-05-09 08:06:24 -05:00

17 lines
587 B
C

#ifndef GUARD_CONSTANTS_FIELDS_H
#define GUARD_CONSTANTS_FIELDS_H
#define FIELD_RUBY 0
#define FIELD_SAPPHIRE 1
#define MAIN_FIELD_COUNT 2
#define FIELD_BONUS_START 2
#define FIELD_DUSCLOPS (FIELD_BONUS_START + 0)
#define FIELD_KECLEON (FIELD_BONUS_START + 1)
#define FIELD_BOSS_START (FIELD_BONUS_START + 2)
#define FIELD_KYOGRE (FIELD_BONUS_START + 2)
#define FIELD_GROUDON (FIELD_BONUS_START + 3)
#define FIELD_RAYQUAZA (FIELD_BONUS_START + 4)
#define FIELD_SPHEAL (FIELD_BONUS_START + 5)
#endif // GUARD_CONSTANTS_FIELDS_H