summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2018-01-01Consistent *_palette_map.asmRemy Oukaour
2018-01-01Remove trailing whitespaceRemy Oukaour
find . -name '*.asm' -exec sed -i 's/[ \t]\+$//' {} \;
2018-01-01Route 17-18 Gate and Route 29-46 GateRemy Oukaour
2018-01-01Merge pull request #451 from yenatch/document-battle-anim-macrosyenatch
Fix and document some battle animation macros
2017-12-29Fix anim_obj x/y valuesyenatch
- negative values have no meaning - left in optional tile x/y for backwards compatibility
2017-12-29FAST_TEXT_DELAY_FRemy Oukaour
2017-12-29Constants for TextBoxFlagsRemy Oukaour
2017-12-28Merge branch 'master' of https://github.com/pret/pokecrystalRemy Oukaour
# Conflicts: # macros/scripts/maps.asm
2017-12-28endm -> ENDMxCrystal
2017-12-28Consistent (x, y) coordinate formatting in map scriptsRemy Oukaour
2017-12-28Lowercase v for VRAM addressesxCrystal
2017-12-28Uppercase MACRO and EQU(S) according to the style guidexCrystal
2017-12-28Prefix engine_flags wram addresses with wxCrystal
2017-12-27Move more decoration data to data/Remy Oukaour
2017-12-27Remove redundant data/ filename prefixesRemy Oukaour
2017-12-27Move events/ to engine/events/Remy Oukaour
2017-12-26Correct documentationRemy Oukaour
Split out text_constants.asm
2017-12-26event/ → events/, and move some appropriate engine/ files thereRemy Oukaour
2017-12-26Various cleanupRemy Oukaour
2017-12-26Name mail graphicsRemy Oukaour
2017-12-26Battle animation data is like sprite animation dataRemy Oukaour
2017-12-26Use "battle_anims" and "sprite_anims" for clarity, not just "anims"Remy Oukaour
2017-12-26Split battle/ into data/ and engine/ componentsRemy Oukaour
2017-12-26Constant commentsRemy Oukaour
2017-12-26Rename: gfx/pics → gfx/pokemonRemy Oukaour
2017-12-26Rename: emote_headers, sprite_headers, cry_headers, gfx_headers, tileset_headersRemy Oukaour
2017-12-25Follow the X_constants/X_data_constants conventionRemy Oukaour
2017-12-25Resolve #428: Use `HIGH(X)` and `LOW(X)` instead of `X / $100` and `X % ↵Remy Oukaour
$100` or `X >> 8` and `X & $ff`
2017-12-25Clean up color/palette codeRemy Oukaour
2017-12-24Clarify why G/S egg moves were removed (resolves #294)Remy Oukaour
2017-12-24Rename maps:Remy Oukaour
- Underground -> UndergroundPath - Route5UndergroundEntrance -> Route5UndergroundPathEntrance - Route6UndergroundEntrance -> Route6UndergroundPathEntrance - WarehouseEntrance -> GoldenrodUnderground - UndergroundWarehouse -> GoldenrodUndergroundWarehouse - UndergroundPathSwitchRoomEntrances -> GoldenrodUndergroundSwitchRoomEntrances
2017-12-24Use PSYCHIC_M for the Psychic TM.yenatch
Fixes #385
2017-12-24Merge branch 'master' of https://github.com/pret/pokecrystalRemy Oukaour
2017-12-24Renaming: (fix #412)Remy Oukaour
- MapTriggers / maptrigger → SceneScripts / scene_script - XYTriggers / xy_trigger → CoordEvents / coord_event - Signposts / signpost → BGEvents / bg_event - PersonEvents / person_event → ObjectEvents / object_event
2017-12-24Rename "map permissions" to "map environment" (fix #396)Remy Oukaour
2017-12-24callba/callab → farcall/callfarRemy Oukaour
2017-12-24HELD_TRADE_EVOLVE -> HELD_FLINCHmid-kid
This item effect effectively causes the target to flinch (sometimes). It's not exclusive to trade evolve items in later generations either.
2017-12-23Move NUM_BUENA_PRIZES to event/buena.asm (still hard-coded)Remy Oukaour
Buena_PrizeMenu has "rept NUM_BUENA_PRIZES", which needs NUM_BUENA_PRIZES to be already defined. BuenaPrizeItems and BuenaPrizeItemsEnd are needed to define NUM_BUENA_PRIZES; but BuenaPrizeItems is defined after Buena_PrizeMenu. I don't see a way to avoid hard-coding its value of 9. Contrast that with the NUM_MOM_ITEMS constants, which are not used as "rept" arguments and so can be defined within their code file.
2017-12-16Move some more main.asm routines into individual filesRemy Oukaour
2017-12-15Add more palettes to data/palettes/Remy Oukaour
2017-12-15Copy pokered's organization some more, with further constant and data filesRemy Oukaour
2017-12-15Move all misc/ and unknown/ files to meaningful directoriesRemy Oukaour
2017-12-15Move data/audio/ back into audio/Remy Oukaour
Keep trainer data together
2017-12-15Move predef/ files into engine/Remy Oukaour
Get rid of single-file engine/ subdirectories Move tilesets/ palettes unrelated to individual tilesets into data/palettes/ (more from engine/colors.asm can be moved here too)
2017-12-15Document one more bug/oversightRemy Oukaour
Move FleeMons table into data/
2017-12-14Split items/ and trainers/ into their data/ and engine/ componentsRemy Oukaour
Move some data into a pokemon/ subdirectory
2017-12-14Reorganize macrosRemy Oukaour
2017-12-13Use constants for gender ratiosRemy Oukaour
2017-12-12SpriteAnimSeqData comments on same lineyenatch
2017-12-12Define constants for collision typesRemy Oukaour