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

This commit fixes the following bugs: - A guy in Celadon University was stuck in a tree due to being placed on the wrong tile. - It was possible to walk out of bounds in Mt. Moon Crater due to buggy collision near the bottom of the map - Hi Jump Kick had a slightly glitched animation - It was possible to walk into a specific rock in both Cerulean Cave and Garnet Cavern. This was a vanilla bug too, but I'm fixing it proper now. - There was no signpost outside Bill's Lighthouse where there should've been. - Fixed two errors in the README - The Fissure TM was not purchasable at the Citrine Rocket house - Even if you had picked one of the original starters, you could still get the Charmander and Squirtle gifts as the NPCs would show up regardless. - Trying to get the Squirtle gift with a full party and box would lock you out from getting it - Fixed a text issue in Celadon Uni where the professor states the wrong TM - Fixed two text issues in Silph Co
19 lines
948 B
NASM
19 lines
948 B
NASM
CeladonUniversityOutside_Object:
|
|
db $f ; border block
|
|
|
|
def_warp_events
|
|
warp_event 20, 13, CELADON_UNIVERSITY_INSIDE, 1
|
|
warp_event 15, 25, CELADON_UNIVERSITY_POKECENTER, 1
|
|
|
|
def_bg_events
|
|
|
|
def_object_events
|
|
object_event 16, 30, SPRITE_COOLTRAINER_F, WALK, RIGHT, 1 ; trainer
|
|
object_event 25, 27, SPRITE_SUPER_NERD, WALK, LEFT, 2 ; trainer
|
|
object_event 9, 6, SPRITE_GAMBLER, WALK, DOWN, 3 ; trainer
|
|
object_event 25, 20, SPRITE_SUPER_NERD, WALK, DOWN, 4 ; trainer
|
|
object_event 10, 28, SPRITE_FISHER, WALK, LEFT, 5 ; Original SPRITE_ROCKER replaced. Reason: maximum of 10 sprites per set
|
|
object_event 33, 16, SPRITE_GIRL, WALK, DOWN, 6 ; Original SPRITE_BEAUTY replaced. Reason: same as above
|
|
object_event 7, 22, SPRITE_MAGIKARP, WALK, RIGHT, 7 ; Static sprite. Reason: same as above and used the slot 11
|
|
object_event 34, 25, SPRITE_MAGIKARP, WALK, LEFT, 7 ; Static sprite. Reason: same as above
|
|
def_warps_to CELADON_UNIVERSITY_OUTSIDE |