From 4fa6c6daa46935c7580a60a22bd9216414246dc0 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Fri, 16 Oct 2015 13:35:43 -0400 Subject: Split up bank 2; other relabelings --- constants/misc_constants.asm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'constants/misc_constants.asm') diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 9678faf8a..173a9ea64 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -46,8 +46,6 @@ CHECK_FLAG EQU 2 ; joypad -BUTTONS EQU %00010000 -D_PAD EQU %00100000 NO_INPUT EQU %00000000 A_BUTTON EQU %00000001 @@ -59,6 +57,11 @@ D_LEFT EQU %00100000 D_UP EQU %01000000 D_DOWN EQU %10000000 +BUTTONS EQU A_BUTTON | B_BUTTON | SELECT | START +D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN + +R_DPAD EQU %00100000 +R_BUTTONS EQU %00010000 ; screen HP_BAR_LENGTH EQU 6 -- cgit v1.2.3 From f53d65c536096213b6826765f81a0f436c88fe72 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Sat, 17 Oct 2015 17:18:52 -0400 Subject: Battle intro animation function --- constants/misc_constants.asm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'constants/misc_constants.asm') diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 173a9ea64..8509907be 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -149,3 +149,10 @@ const_value = 1 const HAPPINESS_MASSAGE ; 12 const HAPPINESS_GAINLEVELATHOME ; 13 + + const_def + const LINK_NULL + const LINK_TIMECAPSULE + const LINK_TRADECENTER + const LINK_COLOSSEUM + const LINK_MOBILE -- cgit v1.2.3 From 119d6b411922eb7b375691b81fc97c9b334f4167 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Sat, 24 Oct 2015 10:34:19 -0400 Subject: About time I got to these functions --- constants/misc_constants.asm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'constants/misc_constants.asm') diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 8509907be..833c84377 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -156,3 +156,6 @@ const_value = 1 const LINK_TRADECENTER const LINK_COLOSSEUM const LINK_MOBILE + +HMENURETURN_SCRIPT EQU %10000000 +HMENURETURN_ASM EQU %11111111 -- cgit v1.2.3