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/VermilionCity.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/VermilionCity.asm')
| -rw-r--r-- | data/maps/objects/VermilionCity.asm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/data/maps/objects/VermilionCity.asm b/data/maps/objects/VermilionCity.asm index 3ea219c3..e86720fe 100644 --- a/data/maps/objects/VermilionCity.asm +++ b/data/maps/objects/VermilionCity.asm @@ -1,33 +1,33 @@ VermilionCity_Object: db $43 ; border block - def_warps - warp 11, 3, 0, VERMILION_POKECENTER - warp 9, 13, 0, POKEMON_FAN_CLUB - warp 23, 13, 0, VERMILION_MART - warp 12, 19, 0, VERMILION_GYM - warp 23, 19, 0, VERMILION_PIDGEY_HOUSE - warp 18, 31, 0, VERMILION_DOCK - warp 19, 31, 0, VERMILION_DOCK - warp 15, 13, 0, VERMILION_TRADE_HOUSE - warp 7, 3, 0, VERMILION_OLD_ROD_HOUSE + def_warp_events + warp_event 11, 3, VERMILION_POKECENTER, 0 + warp_event 9, 13, POKEMON_FAN_CLUB, 0 + warp_event 23, 13, VERMILION_MART, 0 + warp_event 12, 19, VERMILION_GYM, 0 + warp_event 23, 19, VERMILION_PIDGEY_HOUSE, 0 + warp_event 18, 31, VERMILION_DOCK, 0 + warp_event 19, 31, VERMILION_DOCK, 0 + warp_event 15, 13, VERMILION_TRADE_HOUSE, 0 + warp_event 7, 3, VERMILION_OLD_ROD_HOUSE, 0 - def_signs - sign 27, 3, 8 ; VermilionCityText7 - sign 37, 13, 9 ; VermilionCityText8 - sign 24, 13, 10 ; MartSignText - sign 12, 3, 11 ; PokeCenterSignText - sign 7, 13, 12 ; VermilionCityText11 - sign 7, 19, 13 ; VermilionCityText12 - sign 29, 15, 14 ; VermilionCityText13 + def_bg_events + bg_event 27, 3, 8 ; VermilionCityText7 + bg_event 37, 13, 9 ; VermilionCityText8 + bg_event 24, 13, 10 ; MartSignText + bg_event 12, 3, 11 ; PokeCenterSignText + bg_event 7, 13, 12 ; VermilionCityText11 + bg_event 7, 19, 13 ; VermilionCityText12 + bg_event 29, 15, 14 ; VermilionCityText13 - def_objects - object SPRITE_COOLTRAINER_F, 19, 7, WALK, LEFT_RIGHT, 1 ; person - object SPRITE_GAMBLER, 14, 6, STAY, NONE, 2 ; person - object SPRITE_SAILOR, 19, 30, STAY, UP, 3 ; person - object SPRITE_GAMBLER, 30, 7, STAY, NONE, 4 ; person - object SPRITE_MONSTER, 29, 9, WALK, UP_DOWN, 5 ; person - object SPRITE_SAILOR, 25, 27, WALK, LEFT_RIGHT, 6 ; person - object SPRITE_OFFICER_JENNY, 19, 15, STAY, NONE, 7 ; person + def_object_events + object_event 19, 7, SPRITE_COOLTRAINER_F, WALK, LEFT_RIGHT, 1 ; person + object_event 14, 6, SPRITE_GAMBLER, STAY, NONE, 2 ; person + object_event 19, 30, SPRITE_SAILOR, STAY, UP, 3 ; person + object_event 30, 7, SPRITE_GAMBLER, STAY, NONE, 4 ; person + object_event 29, 9, SPRITE_MONSTER, WALK, UP_DOWN, 5 ; person + object_event 25, 27, SPRITE_SAILOR, WALK, LEFT_RIGHT, 6 ; person + object_event 19, 15, SPRITE_OFFICER_JENNY, STAY, NONE, 7 ; person def_warps_to VERMILION_CITY |
