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

This adds Citrine Mart, which is battle-centric. It sells all the "strongest" items and makes Max Revives renewable. I made a specialised tileset for Citrine Mart, combining the old and new styles to make something that feels right.
37 lines
1.6 KiB
NASM
37 lines
1.6 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
|
|
bookshelf_tile BETAMART, $38, PokemonStuffText
|
|
bookshelf_tile BETAMART, $39, PokemonStuffText
|
|
bookshelf_tile BETAMART, $3B, PokemonStuffText
|
|
bookshelf_tile BETAMART, $31, BookOrSculptureText
|
|
bookshelf_tile BETAMART, $30, BookOrSculptureText
|
|
bookshelf_tile BETAMART, $4E, PokemonStuffText
|
|
bookshelf_tile BETAMART, $4F, PokemonStuffText
|
|
db -1 ; end
|