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

- Move Deleter and Move Relearner are added, featuring updated code from Shin Pokered, which took the code from Mateo's Red++ hack. They replace the Trader in Celadon University. The code has been updated quite a bit to fit the modern standards of pokered. - The Trader has been moved to the trade room in Cinnabar Lab, which is thematically appropriate. - Eevee's L1 learnset now appropriately features Tail Whip; this was a mistake made by Martha when porting Yellow learnsets. - Fast Text cursor slot is fixed - New ROM Bank stores the new maps as it got full when adding the move relearner/deleter - Maps 21 will still have space though. - WRAM has been fiddled with, please please read the notes if you edit the Move Relearner area, it needs quite a bit of space. - Wild data for Mt. Moon and Route 22 has been tweaked a little bit.
24 lines
921 B
NASM
24 lines
921 B
NASM
CeladonUniversityInside_Object:
|
|
db $17 ; border block
|
|
|
|
def_warp_events
|
|
warp_event 10, 19, CELADON_UNIVERSITY_OUTSIDE, 1
|
|
warp_event 11, 19, CELADON_UNIVERSITY_OUTSIDE, 1
|
|
|
|
def_bg_events
|
|
bg_event 9, 3, 11 ; Magikarp
|
|
bg_event 19, 4, 12 ; PC Screen
|
|
|
|
def_object_events
|
|
object_event 18, 5, SPRITE_MIDDLE_AGED_MAN, STAY, ANY_DIR, 1 ; person
|
|
object_event 3, 15, SPRITE_PAPER, STAY, NONE, 2 ; person
|
|
object_event 17, 5, SPRITE_POKEDEX, STAY, NONE, 3 ; person
|
|
object_event 10, 5, SPRITE_SCIENTIST, STAY, NONE, 4 ; person
|
|
object_event 3, 8, SPRITE_PAPER, STAY, NONE, 5 ; Book 1
|
|
object_event 5, 4, SPRITE_PAPER, STAY, NONE, 6 ; Book 2
|
|
object_event 1, 4, SPRITE_PAPER, STAY, NONE, 7 ; Book 3
|
|
object_event 20, 7, SPRITE_MONSTER, STAY, NONE, 8 ; Slowbro
|
|
object_event 1, 17, SPRITE_GAMEBOY_KID, STAY, DOWN, 9
|
|
object_event 3, 17, SPRITE_GAMEBOY_KID, STAY, DOWN, 10
|
|
|
|
def_warps_to CELADON_UNIVERSITY_INSIDE |