mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-06 23:55:24 +13:00
Groundwork for Viridian Pre-Gym
This map is fully functional but has a lot of bits to iron out, as well as a need for Gym Trainers. I'm also not wholly satisfied with Yujirou's team; maybe remove Eevee? Yes, I designed an entire tileset for this. Fear me. Bow before me. Actually, don't, this was beyond rational thought. Current issues; - Yujirou's sprite doesn't work properly. - Needs Gym Trainers (hell) - Yujirou needs an event for being beaten, the refight, and more.
This commit is contained in:
parent
57d79f43ed
commit
71de0f07a5
31 changed files with 165 additions and 25 deletions
2
data/maps/headers/ViridianPreGym.asm
Normal file
2
data/maps/headers/ViridianPreGym.asm
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
map_header ViridianPreGym, VIRIDIAN_PRE_GYM, PREGYM, 0
|
||||
end_map_header
|
||||
|
|
@ -71,7 +71,7 @@ MapHeaderBanks::
|
|||
db BANK(BikeShop_h)
|
||||
db BANK(CeruleanMart_h)
|
||||
db BANK(MtMoonPokecenter_h)
|
||||
db BANK(CeruleanTrashedHouse_h)
|
||||
db BANK(ViridianPreGym_h) ; was db BANK(CeruleanTrashedHouse_h)
|
||||
db BANK(Route5Gate_h)
|
||||
db BANK(UndergroundPathRoute5_h)
|
||||
db BANK(Daycare_h)
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ MapHeaderPointers::
|
|||
dw BikeShop_h
|
||||
dw CeruleanMart_h
|
||||
dw MtMoonPokecenter_h
|
||||
dw CeruleanTrashedHouse_h ; CERULEAN_TRASHED_HOUSE_COPY
|
||||
dw ViridianPreGym_h ; CERULEAN_TRASHED_HOUSE_COPY, CeruleanTrashedHouse_h
|
||||
dw Route5Gate_h
|
||||
dw UndergroundPathRoute5_h
|
||||
dw Daycare_h
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ ViridianCity_Object:
|
|||
warp_event 21, 9, VIRIDIAN_NICKNAME_HOUSE, 1
|
||||
warp_event 32, 7, VIRIDIAN_GYM, 1
|
||||
warp_event 32, 3, ROCKET_HIDEOUT_B1F, 2
|
||||
warp_event 12, 15, VIRIDIAN_PRE_GYM, 1
|
||||
|
||||
def_bg_events
|
||||
bg_event 17, 17, 8 ; ViridianCityText8
|
||||
|
|
|
|||
13
data/maps/objects/ViridianPreGym.asm
Normal file
13
data/maps/objects/ViridianPreGym.asm
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
ViridianPreGym_Object:
|
||||
db $0 ; border block
|
||||
|
||||
def_warp_events
|
||||
warp_event 5, 13, 7, VIRIDIAN_CITY
|
||||
warp_event 4, 13, 7, VIRIDIAN_CITY
|
||||
|
||||
def_bg_events
|
||||
|
||||
def_object_events
|
||||
object_event 5, 2, SPRITE_YOUNGSTER, STAY, NONE, 1 ; person, Yujirou
|
||||
|
||||
def_warps_to VIRIDIAN_PRE_GYM
|
||||
|
|
@ -70,7 +70,7 @@ MapSongBanks::
|
|||
db MUSIC_CITIES2, BANK(Music_Cities2) ; BIKE_SHOP
|
||||
db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; CERULEAN_MART
|
||||
db MUSIC_POKECENTER, BANK(Music_Pokecenter) ; MT_MOON_POKECENTER
|
||||
db MUSIC_DUNGEON3, BANK(Music_Dungeon3) ; CERULEAN_TRASHED_HOUSE_COPY
|
||||
db MUSIC_GYM, BANK(Music_Gym) ; VIRIDIAN_PRE_GYM, was CERULEAN_TRASHED_HOUSE_COPY
|
||||
db MUSIC_CITIES1, BANK(Music_Cities1) ; ROUTE_5_GATE
|
||||
db MUSIC_CITIES1, BANK(Music_Cities1) ; UNDERGROUND_PATH_ROUTE_5
|
||||
db MUSIC_CITIES1, BANK(Music_Cities1) ; DAYCARE
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ InternalMapEntries:
|
|||
internal_map MT_MOON_B2F, 6, 2, MountMoonName
|
||||
internal_map CERULEAN_MART, 10, 2, CeruleanCityName
|
||||
internal_map MT_MOON_POKECENTER, 5, 2, Route4Name
|
||||
internal_map CERULEAN_TRASHED_HOUSE_COPY, 10, 2, CeruleanCityName
|
||||
internal_map VIRIDIAN_PRE_GYM, 10, 2, ViridianCityName
|
||||
internal_map DAYCARE, 10, 4, Route5Name
|
||||
internal_map UNDERGROUND_PATH_ROUTE_6_COPY, 10, 6, Route6Name
|
||||
internal_map UNDERGROUND_PATH_ROUTE_7_COPY, 9, 5, Route7Name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue