mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 20:16:26 +13:00

in the middle of a breakdown here but i'm committing this because I don't wanna have an overwhelming number of changed files like the Big One - Fixed a bug where an item couldn't be picked up in Mt. Moon Crater - Gave new cries to Leafeon, Glaceon, Perrserker, Gentlarva, Carapthor, Gorotora, Magnezone, Tangrowth, Tricules, Magmortar and Meltan. Pupal and Lickilicky also got new cries but they'll probably be changed later - Changed Citrine's map slightly for hopefully the final time, removing the tall grass to allow the Old Man Glitch to work there - Brought Pokemon Tower 5F back for some reason - Moved the Rocket Grunt on Silph 11F closer to the Omegadge door - 'Fixed' a warp issue on Faraway Island, can definitely be improved though - Gave Gapdos 10 more base special because i forgot the first time - Fixed a typo in Hitmontop's dex entry - Fixed some inconsistencies in Gao and Gorotora's movesets - Added the unused ice tiles to Seafoam Islands and Garnet Cavern (credit to Vortiene) - Added a stats page to the Pokedex that displays base stats and the type of caught Pokemon (again, credit to Vortiene) - Made Sandshrew more common in Mt. Moon - Improved the 'already caught' icon - uncapitalised all new instances of "trainer" in the text to make it more consistent - HOPEFULLY fixed the issue where the SS Anne still couldn't be reboarded
30 lines
803 B
NASM
30 lines
803 B
NASM
; FORMAT: tileset number, tile 1, tile 2
|
|
; terminated by -1
|
|
; these entries indicate that the player may not cross between tile 1 and tile 2
|
|
; it's mainly used to simulate differences in elevation
|
|
|
|
TilePairCollisionsLand::
|
|
db CAVERN, $20, $05
|
|
db CAVERN, $41, $05
|
|
db FOREST, $30, $2E
|
|
db CAVERN, $2A, $05
|
|
db CAVERN, $05, $21
|
|
db FOREST, $52, $2E
|
|
db FOREST, $55, $2E
|
|
db FOREST, $56, $2E
|
|
db FOREST, $20, $2E
|
|
db FOREST, $5E, $2E
|
|
db FOREST, $5F, $2E
|
|
db CAVERN, $20, $38
|
|
db -1 ; end
|
|
|
|
TilePairCollisionsWater::
|
|
db FOREST, $14, $2E
|
|
db FOREST, $48, $2E
|
|
db CAVERN, $14, $05
|
|
db CAVERN, $14, $32
|
|
db CAVERN, $14, $38
|
|
db GYM, $14, $32 ;prevent surfing into statue base tile ($32) from water tile ($14)
|
|
db GYM, $14, $33 ;prevent surfing into statue base tile ($33) from water tile ($14)
|
|
db -1 ; end
|