aboutsummaryrefslogtreecommitdiffstats
path: root/data/mapObjects/agatha.asm
diff options
context:
space:
mode:
authorDaniel Harding <33dannye@gmail.com>2020-03-27 14:11:59 -0500
committerGitHub <noreply@github.com>2020-03-27 14:11:59 -0500
commite2e8bf6a8477af254ea7057028f72ac918b62005 (patch)
treeffed0137cf81880afa4b0ec2fa30300565996f4b /data/mapObjects/agatha.asm
parentMerge branch 'master' of https://github.com/CelestialAmber/pokeyellow (diff)
parentRemoved EVENT_DISP (diff)
downloadpokeyellow-e2e8bf6a8477af254ea7057028f72ac918b62005.tar.gz
pokeyellow-e2e8bf6a8477af254ea7057028f72ac918b62005.tar.xz
pokeyellow-e2e8bf6a8477af254ea7057028f72ac918b62005.zip
Merge pull request #47 from ValientOrc98/master
Added warp, warp_to and sign compatibility
Diffstat (limited to 'data/mapObjects/agatha.asm')
-rwxr-xr-xdata/mapObjects/agatha.asm24
1 files changed, 12 insertions, 12 deletions
diff --git a/data/mapObjects/agatha.asm b/data/mapObjects/agatha.asm
index 22000dde..cd8bbfe7 100755
--- a/data/mapObjects/agatha.asm
+++ b/data/mapObjects/agatha.asm
@@ -1,19 +1,19 @@
AgathaObject:
db $0 ; border block
- db $4 ; warps
- db $b, $4, $2, BRUNOS_ROOM
- db $b, $5, $3, BRUNOS_ROOM
- db $0, $4, $0, LANCES_ROOM
- db $0, $5, $0, LANCES_ROOM
+ db 4 ; warps
+ warp 4, 11, 2, BRUNOS_ROOM
+ warp 5, 11, 3, BRUNOS_ROOM
+ warp 4, 0, 0, LANCES_ROOM
+ warp 5, 0, 0, LANCES_ROOM
- db $0 ; signs
+ db 0 ; signs
- db $1 ; objects
- object SPRITE_AGATHA, $5, $2, STAY, DOWN, $1, OPP_AGATHA, $1
+ db 1 ; objects
+ object SPRITE_AGATHA, 5, 2, STAY, DOWN, 1, OPP_AGATHA, 1
; warp-to
- EVENT_DISP AGATHAS_ROOM_WIDTH, $b, $4 ; BRUNOS_ROOM
- EVENT_DISP AGATHAS_ROOM_WIDTH, $b, $5 ; BRUNOS_ROOM
- EVENT_DISP AGATHAS_ROOM_WIDTH, $0, $4 ; LANCES_ROOM
- EVENT_DISP AGATHAS_ROOM_WIDTH, $0, $5 ; LANCES_ROOM
+ warp_to 4, 11, AGATHAS_ROOM_WIDTH ; BRUNOS_ROOM
+ warp_to 5, 11, AGATHAS_ROOM_WIDTH ; BRUNOS_ROOM
+ warp_to 4, 0, AGATHAS_ROOM_WIDTH ; LANCES_ROOM
+ warp_to 5, 0, AGATHAS_ROOM_WIDTH ; LANCES_ROOM