diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-02-05 10:57:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-05 10:57:14 -0600 |
commit | b8aa9ec80e43257a9e3a487b46a33f99c999a940 (patch) | |
tree | 3813e75239070dbb3d549e8c03297cc28b2551e3 /data/mapObjects/diglettscaveroute2.asm | |
parent | c84667c4df36918071bb7487c456d7adafb921ca (diff) | |
parent | 819b6789099947e83b7e3f0b0e2f6d39cf901807 (diff) |
Merge pull request #174 from Rangi42/master
Add warp, sign, and warp_to macros for data/mapObjects definitions; use base 10 numbers
Diffstat (limited to 'data/mapObjects/diglettscaveroute2.asm')
-rwxr-xr-x | data/mapObjects/diglettscaveroute2.asm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/data/mapObjects/diglettscaveroute2.asm b/data/mapObjects/diglettscaveroute2.asm index f1310cce..645cc385 100755 --- a/data/mapObjects/diglettscaveroute2.asm +++ b/data/mapObjects/diglettscaveroute2.asm @@ -1,17 +1,17 @@ DiglettsCaveRoute2Object: db $7d ; border block - db $3 ; warps - db $7, $2, $0, $ff - db $7, $3, $0, $ff - db $4, $4, $0, DIGLETTS_CAVE + db 3 ; warps + warp 2, 7, 0, -1 + warp 3, 7, 0, -1 + warp 4, 4, 0, DIGLETTS_CAVE - db $0 ; signs + db 0 ; signs - db $1 ; objects - object SPRITE_FISHER, $3, $3, STAY, NONE, $1 ; person + db 1 ; objects + object SPRITE_FISHER, 3, 3, STAY, NONE, 1 ; person ; warp-to - EVENT_DISP DIGLETTS_CAVE_EXIT_WIDTH, $7, $2 - EVENT_DISP DIGLETTS_CAVE_EXIT_WIDTH, $7, $3 - EVENT_DISP DIGLETTS_CAVE_EXIT_WIDTH, $4, $4 ; DIGLETTS_CAVE + warp_to 2, 7, DIGLETTS_CAVE_EXIT_WIDTH + warp_to 3, 7, DIGLETTS_CAVE_EXIT_WIDTH + warp_to 4, 4, DIGLETTS_CAVE_EXIT_WIDTH ; DIGLETTS_CAVE |