diff options
| author | Yoann Fievez <yoann.fievez@gmail.com> | 2026-06-24 20:43:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-24 14:43:48 -0400 |
| commit | d150f7f4f49e9dda08c52199159b30ae9b4f00e8 (patch) | |
| tree | e0c81ae315ccdf2952c10713312427f2c55e1fea /ram | |
| parent | Use OAM constants and decimal coordinates in surfing_pikachu_oam.asm (#157) (diff) | |
| download | pokeyellow-d150f7f4f49e9dda08c52199159b30ae9b4f00e8.tar.gz pokeyellow-d150f7f4f49e9dda08c52199159b30ae9b4f00e8.tar.xz pokeyellow-d150f7f4f49e9dda08c52199159b30ae9b4f00e8.zip | |
Identify `wPikachuSpawnStateFlags` and `wPikachuMapScriptFlags` bits, and `PIKAMOVEMENT_*` constants (#158)
- Rename `wd471` to` wPikachuSpawnStateFlags`, with `BIT_PIKACHU_SPAWN_*` bits
- Rename `wd492` to `wPikachuMapScriptFlags`, with `BIT_PIKACHU_MAP_*` bits
- Introduce `PIKAMOVEMENT_*` constants for `ApplyPikachuMovementData`
- Refactor `BillsHouse` scripts and Pikachu/Bill movement data
Diffstat (limited to 'ram')
| -rw-r--r-- | ram/wram.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ram/wram.asm b/ram/wram.asm index b8dcaf42..62ef1c44 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -2068,14 +2068,14 @@ ENDU wPikachuHappiness:: db wPikachuMood:: db -wd471:: db +wPikachuSpawnStateFlags:: db wd472:: db ds 1 wd474:: db ds 4 wd479:: db ds 24 -wd492:: db +wPikachuMapScriptFlags:: db ds 1 wSurfingMinigameHiScore:: dw ; little-endian BCD ds 1 |
