diff options
| author | dannye <33dannye@gmail.com> | 2021-09-26 22:38:47 -0500 |
|---|---|---|
| committer | dannye <33dannye@gmail.com> | 2021-09-26 22:43:09 -0500 |
| commit | 501a21fa5dc6f01c0563316c9cd209cccb1eef45 (patch) | |
| tree | c2fe5cc6caa9d8117df3008031d7a26317058acb /data/maps/objects/WardensHouse.asm | |
| parent | Switch from Travis CI to GitHub Actions (diff) | |
| parent | Fix typos (#334) (diff) | |
| download | pokeyellow-501a21fa5dc6f01c0563316c9cd209cccb1eef45.tar.gz pokeyellow-501a21fa5dc6f01c0563316c9cd209cccb1eef45.tar.xz pokeyellow-501a21fa5dc6f01c0563316c9cd209cccb1eef45.zip | |
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'data/maps/objects/WardensHouse.asm')
| -rw-r--r-- | data/maps/objects/WardensHouse.asm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/data/maps/objects/WardensHouse.asm b/data/maps/objects/WardensHouse.asm index 68210d65..9b66c464 100644 --- a/data/maps/objects/WardensHouse.asm +++ b/data/maps/objects/WardensHouse.asm @@ -1,17 +1,17 @@ WardensHouse_Object: db $17 ; border block - def_warps - warp 4, 7, 3, LAST_MAP - warp 5, 7, 3, LAST_MAP + def_warp_events + warp_event 4, 7, LAST_MAP, 3 + warp_event 5, 7, LAST_MAP, 3 - def_signs - sign 4, 3, 4 ; FuchsiaHouse2Text4 - sign 5, 3, 5 ; FuchsiaHouse2Text5 + def_bg_events + bg_event 4, 3, 4 ; FuchsiaHouse2Text4 + bg_event 5, 3, 5 ; FuchsiaHouse2Text5 - def_objects - object SPRITE_WARDEN, 2, 3, STAY, NONE, 1 ; person - object SPRITE_POKE_BALL, 8, 3, STAY, NONE, 2, RARE_CANDY - object SPRITE_BOULDER, 8, 4, STAY, BOULDER_MOVEMENT_BYTE_2, 3 ; person + def_object_events + object_event 2, 3, SPRITE_WARDEN, STAY, NONE, 1 ; person + object_event 8, 3, SPRITE_POKE_BALL, STAY, NONE, 2, RARE_CANDY + object_event 8, 4, SPRITE_BOULDER, STAY, BOULDER_MOVEMENT_BYTE_2, 3 ; person def_warps_to WARDENS_HOUSE |
