summaryrefslogtreecommitdiff
path: root/constants
AgeCommit message (Collapse)Author
2020-10-22Identify some more map object labels and constantsRangi
2020-10-21Identify remaining battle AI labelsRangi
2020-10-06Update battle anim bg function comments, and identify more unnamed labelsRangi
2020-10-06 Identify battle bg effects functions and constants (#773)7Soul
Identify battle bg effects functions and constants
2020-10-04Identify anim object constants (#772)7Soul
Identify anim object constants
2020-10-03Identify battle animation functions (#771)7Soul
Identify battle animation functions
2020-09-27Fix whitespace alignment of commentsRangi
2020-08-27GS_INTRO_STAR/SPARKLE -> GS_GAMEFREAK_LOGO_STAR/SPARKLEmid-kid
These two sprite animations are related to the Game Freak Logo splash screen, not the actual intro.
2020-08-27Fix some constants surrounding sprite animationsmid-kid
Also commented the use of the field surrounding the struct initialization functions. SPRITEANIMSTRUCT_0C -> SPRITEANIMSTRUCT_VAR1 SPRITEANIMSTRUCT_0D -> SPRITEANIMSTRUCT_VAR2 SPRITEANIMSTRUCT_0E -> SPRITEANIMSTRUCT_VAR3 SPRITEANIMSTRUCT_0F -> SPRITEANIMSTRUCT_VAR4 BATTLEANIMSTRUCT_01 -> BATTLEANIMSTRUCT_OAMFLAGS BATTLEANIMSTRUCT_ANON_JT_INDEX -> BATTLEANIMSTRUCT_JUMPTABLE_INDEX BATTLEANIMSTRUCT_0F -> BATTLEANIMSTRUCT_VAR1 BATTLEANIMSTRUCT_10 -> BATTLEANIMSTRUCT_VAR2
2020-08-13Consistent constants for radio data table sizes (could still be better)Rangi
2020-08-11Identify some time-related dataRangi
2020-07-22Move EngineFlags and SpecialsPointers into data/engine/Rangi
2020-07-22Revert "Factor out tables into data/overworld/"Rangi
This reverts commit b5a7e7de3e6b75e95967edd28b9c2af5959cd136.
2020-07-22Factor out tables into data/overworld/Rangi
Fixes #749
2020-07-21Define JOHTO_FLYPOINT like KANTO_FLYPOINTRangi
2020-07-21Define NUM_FLYPOINTSRangi
2020-07-17SPRITE_GYM_GUY -> SPRITE_GYM_GUIDERangi
2020-07-13Define map setup commands as macros like other script commandsRangi
2020-07-13Disassemble the final English debug ROMRangi
2020-07-10Use const_skip and const_next macros for brevityRangi
2020-07-08Eliminate enum: use const instead, with case-by-case parallel const ↵Rangi
implementations
2020-07-06add_tm, add_hm, and add_mt define TM##_MOVE, HM##_MOVE, and MT##_MOVE ↵Rangi
constants, to avoid repeating the move names in tmhm_moves.asm
2020-07-06Define SERIAL_PREAMBLE_LENGTHRangi
2020-07-05Use MAX_NEUTRAL_DAMAGE in BattleCommand_DamageCalcRangi
Also make .gitignore consistent with pokered
2020-07-04SCGB_PARTY_MENU_HP_PALS -> SCGB_PARTY_MENU_HP_BARS, and SCGB_RAM -> SCGB_DEFAULTRangi
2020-06-29Identify more unnamed labelsRangi
2020-06-21Comment more ROM labels as unreferencedRangi
(Some unreferenced labels are above code which is still used via fallthrough!)
2020-06-21Remove some more raw addressesRangi
2020-06-20Remove RAM address commentsRangi
2020-06-17Harmonize engine/overworld with pokegoldRangi
2020-06-16[in progress] Harmonize more constant and data files with pokegoldRangi
2020-06-16Harmonize some more symbols with pokegoldRangi
2020-06-13Label some mobile addresses, and revise some commentsRangi
2020-06-10Resolve #723: treat std scripts like specials and predefsRangi
2020-05-10Update some commentsRangi
2020-05-07Clean up some percentage valuesRangi
2020-05-06Use a FIRST_UNOWN_CHAR constant for the Unown fontRangi
2020-04-30Miscellaneous updatesRangi
- `PREDEFPAL_00` -> `PREDEFPAL_ROUTES` (observed from `LoadSGBLayout.GetMapPalsIndex.route`) - `$0` -> `PLAYER` (standard person ID) - Fix some whitespace formatting
2020-04-04Move, comment, and simplify some macro definitionsRangi
2020-03-21Add suffixes to some constants to avoid ambiguityRangi
- `PSYCHIC` → `PSYCHIC_TYPE` (not the trainer `PSYCHIC_T` or the move `PSYCHIC_M`) - `BLACKBELT` → `BLACKBELT_I` (not the trainer `BLACKBELT_T`) - `CURSE_T` → `CURSE_TYPE` (not the move `CURSE`) - `TOWN_MAP_D` → `TOWN_MAP_POSTER` (not the item `TOWN_MAP`) This also uncovered a misidentified event: `EVENT_DECO_PLANT_4` → `EVENT_DECO_POSTER_1`. (There are three plants and four posters.)
2020-03-21rgbds supports 'X - 1' instead of 'X + -1'Rangi
2020-03-15Add a `LANDMARK_` prefix to landmark constantsRangi
Resolves #697
2020-03-15Refactor flypoints to separate const definition from data usageRangi
2020-02-26Fix some comments and whitespaceRangi
2020-02-25unused_dark_cave -> unused_johto (goes with the beta Johto town+city maps)Rangi
2020-02-13Define TileCollisionTable as a standard 'db' seriesRangi
2020-02-05Merge pull request #650 from pret/audio-macrosRangi
Update audio macros and arguments
2020-02-04Use CMDQUEUE constantsRangi
2020-02-04Identify four padding bytes in base data as beta front/back pic pointersRangi
2020-01-06Merge branch 'master' into audio-macrosdannye