summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-04tools/unnamed.py -r . -l N prints up to N unnamed symbols next to their ↵Rangi
filenames
2020-10-04Merge pull request #55 from Deokishisu/patch-1Rangi
Label Unknown Entries in HappinessChangeTable
2020-10-04Merge pull request #295 from SatoMew/masterRangi
Clarify comment in constants/pokemon_constants.asm
2020-10-04Merge pull request #56 from SatoMew/masterRangi
Give ghost Marowak a constant
2020-09-27Clarify comment in constants/pokemon_constants.asmSatoMew
2020-09-27Add constant for ghost Marowak like pokeredSatoMew
2020-09-22Merge pull request #294 from SatoMew/masterRangi
Give a better label to ghost Marowak's constant
2020-09-22Fix alignment in Pokémon name constantsSatoMew
2020-09-22Use the constant in all relevant situationsSatoMew
2020-09-22Replace ghost Marowak's ambiguous constantSatoMew
2020-09-21Merge pull request #292 from Akatsuki-py/fix/ExecuteCurMapScriptInTableDaniel Harding
fix ExecuteCurMapScriptInTable's comment
2020-09-19fix ExecuteCurMapScriptInTable's commentAkatsuki-py
2020-09-17Label Unknown Entries in HappinessChangeTableDeokishisu
The two unknown entries in the HappinessChangeTable for Pikachu appear to be when the starter Pikachu faints to an opponent Pokemon 30 levels higher (PIKAHAPPY_CARELESSTRAINER) and when the starter Pikachu is traded away (PIKAHAPPY_TRADE). I have labelled them in the comments like the other fields.
2020-09-15rgbds has moved from rednex to gbdevRangi
2020-09-02Add the pic.py (de)compressor from pokemon-reverse-engineering-toolsRangi
$ tools/pic.py decompress x.pic # creates x.2bpp $ tools/gfx.py png x.2bpp # creates x.png $ tools/gfx.py 2bpp x.png # creates x.2bpp $ tools/pic.py compress x.2bpp # creates x.pic
2020-09-01Pan Docs: "When sending three or more data sets, data is continued in ↵Rangi
further packet(s). Unused bytes at the end of the last packet should be set to zero."
2020-08-31Separate the two lists of unused namesRangi
2020-08-31Define a constant for the ghost Marowak (hard-coded throughout the engine, ↵Rangi
like the starters)
2020-08-31Use constants to delineate map types, and factor out more dataRangi
2020-08-30Factor out data/tilesets/pair_collision_tile_ids.asmRangi
2020-08-30Identify some hSpriteDataOffset valuesRangi
2020-08-30Document more hidden object data and behaviorRangi
2020-08-29Merge pull request #290 from Rangi42/masterRangi
Separate splash screen, intro, and credits (like pokegold/pokecrystal)
2020-08-28Use decimal, not hex, for sprite (object) coordinates in map scriptsRangi
2020-08-28Separate splash screen, intro, and credits (like pokegold/pokecrystal)Rangi
2020-08-21Align warp and sign coordinatesRangi
2020-08-20Merge pull request #287 from Rangi42/masterRangi
Simplify map event definitions
2020-08-18Comments explain the def_warps_to macrosRangi
2020-08-17Implement def_warps_to in a simpler wayRangi
Instead of building a semicolon-separated "array" of warp_to coordinates in _WARP_TO_BUFFER, just declare a new EQUS for each one: _WARP_TO_NUM_1, _WARP_TO_NUM_2, etc. Then have def_warps_to output and PURGE each one of them.
2020-08-17Fix keyword capitalization and indentationRangi
2020-08-17Use def_warps_to macro for automatic warp_to entriesRangi
2020-08-17Use map constants for SilphCoElevator warpsRangi
2020-08-17Use def_* macros for automatic map event countsRangi
2020-08-17Use ANY_DIR, UP_DOWN, and LEFT_RIGHT for map objectsRangi
2020-08-17Identify some map object related constantsRangi
2020-08-17Fix Town Map coordinates to be in (X, Y) order as comments claimRangi
2020-08-17ld bc -> lb bcRangi
2020-08-16Fix comment about SONYRangi
2020-08-11'make clean' reuses 'make tidy' commandsRangi
2020-08-02Fix encounter rate commentsRangi
2020-08-02fix OAMFLAG_VFLIPPED (#283)Akihiro Otomo
Replace incorrect label OAMFLAG_VFLIPPED with OAM_HFLIP
2020-07-28'make tidy' shouldn't trigger 'make -C tools'Rangi
2020-07-27rgbdscheck requires 0.4.1Rangi
2020-07-22tools/unnamed.py supports rgbds 0.4.1 object filesRangi
2020-07-22Merge pull request #282 from Rangi42/masterRangi
Use LOAD/ENDL for OAM DMA code in HRAM (requires rgbds 0.4.1)
2020-07-21Use LOAD/ENDL for OAM DMA code in HRAM (requires rgbds 0.4.1)Rangi
2020-07-20Merge pull request #281 from Rangi42/masterRangi
Add comments associating constants with data, and identify some more data
2020-07-20Add comments associating constants with data, and identify some more dataRangi
2020-07-19Merge pull request #279 from Rangi42/masterRangi
Identify sprite and battle animation data
2020-07-19Missingno's Pokédex weight is two bytes like the restRangi