Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-09 | Rename GetFarHalfword to GetFarWord | Rangi | |
Fixes #796 | |||
2020-12-23 | Rename some labels | Rangi | |
- Remove "Buffer" suffix from some byte and word quantities - Change "Ptr" to "Pointer" Fixes #789 | |||
2020-11-24 | Use STRING_BUFFER_LENGTH for the wStringBuffers | Rangi | |
2020-11-09 | Terser damage calculation constants | Rangi | |
2020-11-03 | Identify remaining uses of wBuffer1-6 as general-purpose HP buffers or mobile | Rangi | |
2020-11-03 | More syncing with pokegold | Rangi | |
2020-10-28 | Replace many '; unused' with '; unreferenced' | Rangi | |
2020-10-26 | Comment, remove, or revise many unreferenced labels | Rangi | |
2020-10-21 | Identify SwitchItemsInBag labels | Rangi | |
Thanks to FIQ for having done so in Polished Crystal | |||
2020-08-29 | Remove wKickCounter and wPresentPower aliases for wBattleAnimParam | Rangi | |
2020-07-21 | Use LOAD/ENDL for OAM DMA code in HRAM (requires rgbds 0.4.1) | Rangi | |
2020-07-13 | Disassemble the final English debug ROM | Rangi | |
2020-07-05 | Use MAX_NEUTRAL_DAMAGE in BattleCommand_DamageCalc | Rangi | |
Also make .gitignore consistent with pokered | |||
2020-06-16 | Harmonize engine/{battle, battle_anims, events, games} with pokegold | Rangi | |
2020-06-15 | Undo incorrect comment | Rangi | |
2020-06-15 | Adding 0 is pointless in CheckMimicUsed | Rangi | |
2020-06-13 | Label some mobile addresses, and revise some comments | Rangi | |
2019-10-20 | #641 fixes and additions. (#646) | mid-kid | |
Name a lot of text labels according to our conventions | |||
2019-04-09 | TextBox -> Textbox | mid-kid | |
Homogenizing names. | |||
2019-03-03 | More consistent formatting | Rangi | |
2019-01-05 | Document a bugfix: 1/256 failure rate for 100% effect chance | Rangi | |
2018-12-09 | Merge pull request #578 from mid-kid/master | Rangi | |
Fixes in the animation subsystem. | |||
2018-11-23 | CalcStats -> CalcBattleStats | mid-kid | |
Confusingly ambiguous name | |||
2018-11-21 | Move BattleSideCopy to transform.asm | mid-kid | |
2018-11-18 | Resolve issue #575: Rename text commands | Rangi | |
2018-11-05 | text_jump → text_far | mid-kid | |
The previous name for this was rather misleading. It isn't an actual jump like you'd expect the `jp` instruction to behave as. Instead, it behaves more like a `farcall`. This also makes it consistent with its current command ID name of `TX_FAR`. | |||
2018-10-21 | Identify BATTLEACTION_D and _E (thanks, ax6) | Rangi | |
2018-08-26 | hQuotient is a four-byte buffer (fixes #558) | Rangi | |
2018-08-25 | Use labels instead of constants for HRAM | Rangi | |
Use explicit ldh instruction to access HRAM locations, don't rely on optimizing ld | |||
2018-08-17 | CheckDestinyBond -> CheckFaint | mid-kid | |
Its main function is fainting the opponent and ending the move effect. Updated the comment accordingly. | |||
2018-08-17 | Fix some StatUp-related labels | mid-kid | |
2018-08-16 | GetDamageStatsCritical -> CheckDamageStatsCritical | mid-kid | |
Clarified its usage, as the comments surrounding it were factually wrong. | |||
2018-07-29 | No wCurMove alias for wCurSpecies | Rangi | |
2018-07-29 | Add meaningful aliases for wd265 | Rangi | |
Introduce MONICON_* constants Introduce BATTLEPLAYERACTION_* constants | |||
2018-07-27 | Crystal fixed TruncateHL_BC in single player | Rangi | |
2018-07-27 | Merge branch 'master' of https://github.com/pret/pokecrystal | mid-kid | |
2018-07-26 | Consistently use the diff format in bugs_and_glitches | mid-kid | |
2018-07-23 | StringCmp → CompareBytes; CompareLong → CompareBytesLong | Rangi | |
hStringCmpString[1/2] → h[EnemyMon/PartyMon1]Speed | |||
2018-07-04 | Miscellaneous reorganization fixes | Rangi | |
2018-06-25 | No space between labels and bodies | Rangi | |
2018-06-25 | Remove more triple newlines | Rangi | |
2018-06-24 | Fix triple newlines left over from removing address comments | Rangi | |
2018-06-24 | Remove all address comments | mid-kid | |
2018-06-12 | Note which labels are only needed for locating banks (relevant to issue #485) | Rangi | |
2018-06-04 | Merge branch 'master' of https://github.com/pret/pokecrystal | mid-kid | |
2018-06-01 | Miscellaneous fixes in the use of _command constants. | mid-kid | |
2018-05-23 | Start improving sprite movement engine (to do: identify bit flags) | Rangi | |
Introduce maskbits N[, S]: optionally shift the bitmask | |||
2018-05-06 | 'rept' is not indented | Rangi | |
2018-04-05 | Use constants for bit/set/res more | Rangi | |
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. |