diff options
| author | YamaArashi <shadow962@live.com> | 2016-12-31 17:23:54 -0800 |
|---|---|---|
| committer | YamaArashi <shadow962@live.com> | 2016-12-31 17:23:54 -0800 |
| commit | bf67f7174d8e3f1348c786618ee5a3a076d1eff8 (patch) | |
| tree | 41dfcd420ce30d4b077d2055e096ea40e4a229a5 /engine/overworld/daycare_exp.asm | |
| parent | use hardware constants in pic.asm (diff) | |
| download | pokeyellow-bf67f7174d8e3f1348c786618ee5a3a076d1eff8.tar.gz pokeyellow-bf67f7174d8e3f1348c786618ee5a3a076d1eff8.tar.xz pokeyellow-bf67f7174d8e3f1348c786618ee5a3a076d1eff8.zip | |
split code out of main.asm
Diffstat (limited to 'engine/overworld/daycare_exp.asm')
| -rw-r--r-- | engine/overworld/daycare_exp.asm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/engine/overworld/daycare_exp.asm b/engine/overworld/daycare_exp.asm new file mode 100644 index 00000000..dbe4023a --- /dev/null +++ b/engine/overworld/daycare_exp.asm @@ -0,0 +1,18 @@ +IncrementDayCareMonExp: + ld a, [wDayCareInUse] + and a + ret z + ld hl, wDayCareMonExp + 2 + inc [hl] + ret nz + dec hl + inc [hl] + ret nz + dec hl + inc [hl] + ld a, [hl] + cp $50 + ret c + ld a, $50 + ld [hl], a + ret |
