Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-18 | Constants for PC menu indexes | Rangi | |
'db ' -> 'db ' | |||
2018-05-18 | Fix comments | Rangi | |
2018-05-13 | Change sfx and cry branch labels to local labels | mid-kid | |
They're local anyway, and this makes them look more like loops. | |||
2018-05-11 | Merge pull request #512 from pret/warnings | yenatch | |
fix lb/ln and "left shift of negative value" warning | |||
2018-05-11 | Merge pull request #510 from Rangi42/master | yenatch | |
Use explicit HELD_NONE and NO_LIMITS, not 0s; also fix #511 | |||
2018-05-11 | Revert "Fix #511: eliminate "Left shift of negative value" warnings" | yenatch | |
This reverts commit aa51dbc61245d5b4949c1872b3d3e915a981ded3. | |||
2018-05-09 | Fix doc links | Rangi | |
2018-05-06 | Merge branch 'master' of https://github.com/pret/pokecrystal | Rangi | |
2018-05-06 | Merge pull request #509 from mid-kid/master | yenatch | |
A fix-various-little-things PR | |||
2018-05-06 | fix lb/ln and "left shift of negative value" warning | yenatch | |
fixes #511 | |||
2018-05-06 | Fix #511: eliminate "Left shift of negative value" warnings | Rangi | |
2018-05-06 | Keep macros near relevant data | Rangi | |
2018-05-06 | 'rept' is not indented | Rangi | |
2018-05-06 | Fix rest of the givepokeitem/checkpokeitem references | mid-kid | |
2018-05-05 | Combine bit flags with | not + | Rangi | |
2018-05-05 | Explicit NO_LIMITS instead of 0 | Rangi | |
2018-05-05 | Use explicit HELD_NONE, not 0 | Rangi | |
2018-05-05 | fix-various-little-things | mid-kid | |
A compilation of suggestions from the discord that don't deserve separate commits and are not questionable at all™. | |||
2018-04-11 | Merge pull request #507 from yenatch/master | yenatch | |
fix label from the wrong bank in the title screen | |||
2018-04-10 | fix label from the wrong bank in the title screen | yenatch | |
2018-04-09 | Merge pull request #503 from Rangi42/master | yenatch | |
Factor wMisc into meaningful parts; move most code out of home.asm | |||
2018-04-09 | Merge pull request #495 from mid-kid/master | yenatch | |
Use stadium 2 egg group names | |||
2018-04-09 | Correct map constant comments | Rangi | |
2018-04-05 | Use constants for bit/set/res more | Rangi | |
2018-04-05 | HanleDefrost -> HandleDefrost | mid-kid | |
2018-04-05 | Use Stadium 2 Egg Group names | mid-kid | |
Out of the current two most prevalent official conventions, this one was chosen, because they're used in a direct counterpart to this game, and thus feel more accurate. | |||
2018-04-05 | Fix some uses of EFFECTIVE | mid-kid | |
2018-04-05 | Use data/items/pocket_names.asm | mid-kid | |
2018-04-05 | GENDERLESS -> GENDER_UNKNOWN | mid-kid | |
This is how they're called in official sources, and it fits better with the other `GENDER_` constants. | |||
2018-04-05 | Move more code from home.asm into home/ | Rangi | |
2018-04-05 | check_nick_errors → correct_nick_errors; matches correct_party_errors | Rangi | |
2018-04-04 | Merge branch 'master' of https://github.com/pret/pokecrystal | Rangi | |
2018-04-04 | Merge pull request #505 from mid-kid/battlecommands | yenatch | |
Battle command fixes | |||
2018-04-04 | Merge pull request #501 from mid-kid/reorg | yenatch | |
Organize the engine/ directory | |||
2018-04-04 | Update docs and comments to reflect renames | mid-kid | |
2018-04-04 | Rename some battle commands | mid-kid | |
`hittarget` was misleading, as it doesn't actually "hit" the target, it only plays the animation. As such, I've renamed it to `moveanim`. `checkfaint` has nothing to do with checking if the user or target has fainted, instead, it applies wCurDamage onto the target's HP, hitting the substitute if applicable. I've renamed the command to `applydamage` and all of its subfunctions accordingly. | |||
2018-04-04 | Document more Beat Up-related bugs | mid-kid | |
Two bugs related to not raising the substitute when it should, one bug related to not running king's rock when it should, and the other related to running king's rock when it shouldn't. Fun. | |||
2018-04-04 | Label BattleCommand_BeatUpFailText | mid-kid | |
2018-04-04 | `endloop` loops back to critical itself | mid-kid | |
The comments seemed to specify that `endloop` loops back to the command before `critical` and executes that, which simply isn't true. It loops back to `critical` itself, and executes `critical`, before continuing on with the remaining commands. | |||
2018-04-04 | Label bidefailtext | mid-kid | |
This "unknown" battle command is actually used to give the proper fail message to bide. | |||
2018-04-04 | Comment SapHealth | mid-kid | |
Also fixed some Beat Up inconsistencies to make it more readable. | |||
2018-04-04 | Fix snake_case filenames | mid-kid | |
Renamed a bunch of files, most of them one-off functions, to better fit the general snake_case naming scheme. Also renamed some awfully long filenames. | |||
2018-04-04 | Use constants for screen size in metatiles | Rangi | |
2018-04-04 | Use 'elif' more | Rangi | |
2018-04-01 | Fix file permissions | mid-kid | |
I have no idea why this was a thing (do people store this repo on FAT32 flash drives or something?), but quite a bit of files had a permission of 755. This isn't really a problem, but it's inconsistent and weird. | |||
2018-04-01 | Update file paths in constants/ and docs/ | mid-kid | |
2018-03-25 | `flagpredef.asm` → `smallflag.asm` | mid-kid | |
2018-03-25 | Organize the engine/ directory, director's cut | mid-kid | |
Cleaned up `engine/routines`, in favor of moving files into more appropriate directories. predef-related routines are now in top-level `engine`. `rtc/delete_save_change_clock.asm` has been split into both `menus/delete_save.asm` and `rtc/reset_password.asm`. Made a new subdirectory: * engine/math: Contains all generic math-related routines. | |||
2018-03-25 | Merge branch 'master' of https://github.com/pret/pokecrystal | Rangi | |
2018-03-25 | Merge pull request #500 from yenatch/fix-scan-includes | yenatch | |
Fix scan_includes matching the word "include" in strings. |