From f82097b8949c490cd09355dc6d8fee5598498bd4 Mon Sep 17 00:00:00 2001 From: Rangi Date: Mon, 17 Aug 2020 14:22:27 -0400 Subject: Identify some map object related constants --- constants/map_object_constants.asm | 13 ++++++++----- constants/script_constants.asm | 5 +++++ 2 files changed, 13 insertions(+), 5 deletions(-) (limited to 'constants') diff --git a/constants/map_object_constants.asm b/constants/map_object_constants.asm index 459fae4a..9993a6a9 100644 --- a/constants/map_object_constants.asm +++ b/constants/map_object_constants.asm @@ -45,10 +45,13 @@ TRAINER EQU $40 WALK EQU $FE STAY EQU $FF -DOWN EQU $D0 -UP EQU $D1 -LEFT EQU $D2 -RIGHT EQU $D3 -NONE EQU $FF +ANY_DIR EQU $00 +UP_DOWN EQU $01 +LEFT_RIGHT EQU $02 +DOWN EQU $D0 +UP EQU $D1 +LEFT EQU $D2 +RIGHT EQU $D3 +NONE EQU $FF BOULDER_MOVEMENT_BYTE_2 EQU $10 diff --git a/constants/script_constants.asm b/constants/script_constants.asm index 2b2a9b14..b651a76d 100644 --- a/constants/script_constants.asm +++ b/constants/script_constants.asm @@ -12,6 +12,11 @@ SLOTSFISH EQU $0E0C SLOTSBIRD EQU $1210 SLOTSMOUSE EQU $1614 +; StartSlotMachine dialogs +SLOTS_OUTOFORDER EQU $fd +SLOTS_OUTTOLUNCH EQU $fe +SLOTS_SOMEONESKEYS EQU $ff + ; in game trades ; TradeMons indexes (see data/events/trades.asm) const_def -- cgit v1.3.1-sl0p