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

This adds the Mt Moon Square House, faithfully recreated from GSC. I haven't yet sorted out the important details regarding the Crater Guard and such, though. Making the map involved making a new desk tile and making house tile $36 be considered a counter tile. Hopefully there aren't any adverse consequences but I've never seen anything of that nature. I noticed there are a ton of Clefairy text bits, so I refactored it to be a single line farcalled from `text_7.asm`. This also involved an interesting thing with the Pokemon Fan Club where the Pikachu fan has a Clefairy, so I fixed that too. I figured that adding the dance was a little difficult right now, so we have Clefairys walking around instead. I haven't figured out a good place to add the ladders yet (since there should be two entrances) but we'll figure that out eventually. It's plausible that we just make the Crater the southern warp, but I like how out-of-the-way the current one is. Oh, and I fixed the Crater warps. Overall, functional, but not finished.
42 lines
1.9 KiB
NASM
42 lines
1.9 KiB
NASM
MACRO tileset
|
|
db BANK(\1_GFX)
|
|
dw \1_Block, \1_GFX, \1_Coll
|
|
db \2, \3, \4 ; counter tiles
|
|
db \5, ; grass tile
|
|
db \6 ; animations (TILEANIM_* value)
|
|
ENDM
|
|
|
|
Tilesets:
|
|
table_width 12, Tilesets
|
|
; name, 3 counter tiles, grass tile, animations
|
|
tileset Overworld, -1, -1, -1, $52, TILEANIM_WATER_FLOWER
|
|
tileset RedsHouse1, -1, -1, -1, -1, TILEANIM_NONE
|
|
tileset Mart, $18,$19,$1E, -1, TILEANIM_NONE
|
|
tileset Forest, -1, -1, -1, $20, TILEANIM_WATER
|
|
tileset RedsHouse2, -1, -1, -1, -1, TILEANIM_NONE
|
|
tileset Dojo, $3A, -1, -1, -1, TILEANIM_WATER_FLOWER
|
|
tileset Pokecenter, $18,$19,$1E, -1, TILEANIM_NONE
|
|
tileset Gym, $3A, -1, -1, -1, TILEANIM_WATER_FLOWER
|
|
tileset House, $36, -1, -1, -1, TILEANIM_NONE
|
|
tileset ForestGate, $17,$32, -1, -1, TILEANIM_NONE
|
|
tileset Museum, $17,$32, -1, -1, TILEANIM_NONE
|
|
tileset Underground, -1, -1, -1, -1, TILEANIM_NONE
|
|
tileset Gate, $17,$32, -1, -1, TILEANIM_NONE
|
|
tileset Ship, -1, -1, -1, -1, TILEANIM_WATER
|
|
tileset ShipPort, -1, -1, -1, -1, TILEANIM_WATER
|
|
tileset Cemetery, $12, -1, -1, -1, TILEANIM_NONE
|
|
tileset Interior, -1, -1, -1, -1, TILEANIM_NONE
|
|
tileset Cavern, -1, -1, -1, -1, TILEANIM_WATER
|
|
tileset Lobby, $15,$36, -1, -1, TILEANIM_NONE
|
|
tileset Mansion, -1, -1, -1, -1, TILEANIM_NONE
|
|
tileset Lab, -1, -1, -1, -1, TILEANIM_NONE
|
|
tileset Club, $07,$17, -1, -1, TILEANIM_NONE
|
|
tileset Facility, $12, -1, -1, -1, TILEANIM_WATER
|
|
tileset Plateau, -1, -1, -1, $45, TILEANIM_WATER
|
|
tileset PreGym, $3A, $3B, -1, -1, TILEANIM_NONE
|
|
tileset Citrine, -1, -1, -1, $3F, TILEANIM_WATER_FLOWER
|
|
tileset Celeste, -1, -1, -1, $18, TILEANIM_WATER_FLOWER
|
|
tileset RocketHouse, $0A, -1, -1, -1, TILEANIM_NONE
|
|
tileset BetaMart, $18, -1, -1, -1, TILEANIM_NONE
|
|
assert_table_length NUM_TILESETS
|