summaryrefslogtreecommitdiff
path: root/engine/overworld/daycare_exp.asm
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-12-31 17:23:54 -0800
committerYamaArashi <shadow962@live.com>2016-12-31 17:23:54 -0800
commitbf67f7174d8e3f1348c786618ee5a3a076d1eff8 (patch)
tree41dfcd420ce30d4b077d2055e096ea40e4a229a5 /engine/overworld/daycare_exp.asm
parent10289bf7ddac46d0188da06f2714dbce0dece59c (diff)
split code out of main.asm
Diffstat (limited to 'engine/overworld/daycare_exp.asm')
-rw-r--r--engine/overworld/daycare_exp.asm18
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