mirror of
https://github.com/pret/pokepinballrs.git
synced 2026-09-26 13:32:51 -04:00
c75a93182f
* 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
17 lines
587 B
C
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
|