summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-01-01Add travis webhook for unnamed.pymid-kid
(still requires setup)
2019-01-01unnamed.py: Add completion percentagemid-kid
People love percentages. Gotta show our powerlevel.
2018-12-31Make tools/gfx.py executableRangi
2019-01-01Add tool to find unnamed symbolsmid-kid
This tool should help us identify which are the symbols that still need proper names, and in which files they're located.
2018-12-31Merge pull request #587 from Rangi42/masterRangi
Remove dependency on 'extras' submodule
2018-12-31Keep the most relevant data at the top of the Makefile (the built filenames)Rangi
2018-12-31Remove the 'extras' submoduleRangi
2018-12-31Keep gfx.py with other tools, and remove its dependency on the 'extras' ↵Rangi
submodule
2018-12-31Merge pull request #585 from Rangi42/masterRangi
Refactor engine/phone/
2018-12-31*PhoneScript1 -> *PhoneCalleeScript, and *PhoneScript2 -> *PhoneCallerScriptRangi
2018-12-31Use battle menu flagsRangi
2018-12-31Fix a typoRangi
2018-12-30Split generic phone caller+callee text into individual NPCsRangi
2018-12-30Distinguish "caller" and "called" phone scripts+text (NPCs call you ↵Rangi
automatically, you call them from the Pokégear)
2018-12-30$56 is "<……>"Rangi
2018-12-30Split engine/phone/phone_scripts.asm and phone_gossip.asm into individual filesRangi
2018-12-30Merge pull request #584 from mid-kid/masterRangi
Fix comments around BANK() statements
2018-12-30Merge pull request #583 from melthelesbian/rgbds_environment_configRangi
allow setting RGBASM/etc in environment vars
2018-12-26Fix comments around BANK() statementsmid-kid
Found a couple BANK()s that reference multiple labels.
2018-12-25finish renaming RGBDS_DIR to RGBDSMelody
2018-12-25rename RGBDS_DIR to RGBDSMelody
2018-12-25allow setting RGBDS_DIRMelody
2018-12-25allow setting RGBASM in environment varsMelody
2018-12-23Define RANDY_OT_IDRangi
2018-12-23Fix issue #581 (random stuff ax6 noticed)Rangi
2018-12-16Merge pull request #579 from Rangi42/masterRangi
Miscellaneous
2018-12-09Formatting and commentsRangi
2018-12-09Format music macros like movement macrosRangi
2018-12-09Merge pull request #578 from mid-kid/masterRangi
Fixes in the animation subsystem.
2018-11-26Update docs/battle_anim_commands.mdmid-kid
2018-11-25Rename "feet and head follow" commandsmid-kid
The lot of these were rather misnamed, since they're used to replace part of the player or enemy with objects for several background effects. https://github.com/pret/pokecrystal/pull/578#issuecomment-440996244
2018-11-25Fix Belly Drum fixmid-kid
2018-11-23CalcStats -> CalcBattleStatsmid-kid
Confusingly ambiguous name
2018-11-22Identified another user of wBattleAnimTempmid-kid
QueueBattleAnimation loads an object using these wram addresses. Usually populated by the anim_obj command, but in a couple of cases also manually.
2018-11-21Define ANIM_GFX for PLAYER and ENEMYmid-kid
These are used where the head or the feet of the player/enemy have to be moved in an animation, and shouldn't overlap. These aren't actual GFX and should be loaded with the proper commands, and they're always loaded at the end of the VRAM area. Furthermore, I've defined BATTLEANIM_BASE_TILE, which is the tile from which battle animation graphics may start to load. This value was picked to make sure at least an entire pokemon pic fits in the area before it, even though it doesn't seem very used...
2018-11-21Use ANIM_GFX constants for battle animationsmid-kid
2018-11-21Move BattleSideCopy to transform.asmmid-kid
2018-11-21Define first_music_cmdmid-kid
This replaces the uses of $d0 in the audio engine with proper constants.
2018-11-20Cosmetic fixesmid-kid
2018-11-20Fix usage of endchannel_cmdmid-kid
2018-11-19Recommend the AUR packagemid-kid
2018-11-19Add flex and pkg-config to INSTALL.mdmid-kid
2018-11-18Merge pull request #577 from Rangi42/masterRangi
Resolve issue #575: Rename text commands
2018-11-18Resolve issue #575: Rename text commandsRangi
2018-11-11text_jump → text_far in docs/text_commands.mdRangi
2018-11-11Merge pull request #573 from mid-kid/masterRangi
text_jump → text_far
2018-11-10Merge pull request #574 from mid-kid/connectionsRangi
Make the `connection` macro simpler to use
2018-11-11Adapt `tmhm` for consistencymid-kid
Using an underscore before macro variables avoids cluttering up the global namespace. While this isn't much of a problem right now, it's good practice that'll keep us from problems in the future.
2018-11-11Clarify LEGACY supportmid-kid
2018-11-11Adapt macro based on suggestionsmid-kid