mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

This map is pretty much finished, save for the map sprites for Jessie, James, and the unused Cat (aka Meowth) being imported, as well as an & symbol. This adds everything else - the marts, the Rocket Trio fight, the meeting music, the tileset, the trainer class for Jessie/James, I could go on. A ton of work well-done.
30 lines
1.2 KiB
NASM
30 lines
1.2 KiB
NASM
MACRO bookshelf_tile
|
|
db \1, \2
|
|
db_tx_pre \3
|
|
ENDM
|
|
|
|
BookshelfTileIDs:
|
|
; tileset id, bookshelf tile id, text id
|
|
bookshelf_tile PLATEAU, $30, IndigoPlateauStatues
|
|
bookshelf_tile HOUSE, $3D, TownMapText
|
|
bookshelf_tile HOUSE, $1E, BookOrSculptureText
|
|
bookshelf_tile MANSION, $32, BookOrSculptureText
|
|
bookshelf_tile REDS_HOUSE_1, $32, BookOrSculptureText
|
|
bookshelf_tile LAB, $28, BookOrSculptureText
|
|
bookshelf_tile LOBBY, $16, ElevatorText
|
|
bookshelf_tile GYM, $1D, BookOrSculptureText
|
|
bookshelf_tile DOJO, $1D, BookOrSculptureText
|
|
bookshelf_tile GATE, $22, BookOrSculptureText
|
|
bookshelf_tile MART, $54, PokemonStuffText
|
|
bookshelf_tile MART, $55, PokemonStuffText
|
|
bookshelf_tile POKECENTER, $54, PokemonStuffText
|
|
bookshelf_tile POKECENTER, $55, PokemonStuffText
|
|
bookshelf_tile LOBBY, $50, PokemonStuffText
|
|
bookshelf_tile LOBBY, $52, PokemonStuffText
|
|
bookshelf_tile SHIP, $36, BookOrSculptureText
|
|
bookshelf_tile PREGYM, $56, BookOrSculptureText
|
|
bookshelf_tile PREGYM, $57, BookOrSculptureText
|
|
bookshelf_tile ROCKETHOUSE, $38, BookOrSculptureText
|
|
bookshelf_tile ROCKETHOUSE, $39, BookOrSculptureText
|
|
db -1 ; end
|