mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
Restore unreferenced Porygon PC
This was deleted when I was sprucing up the final Silph Co. floor, but I decided to restore it instead. Because of the weird way PCs work, I made it so the text is a literal bg event on a monitor, true to the text. I think it works fine. The text was changed to use `prompt` instead of `done` to fix text scrolling issues.
This commit is contained in:
parent
d41d0e8e9a
commit
8d28a3ae0e
|
@ -143,6 +143,7 @@ Improved Areas
|
|||
- Fuchsia City has been made to resemble the more walkable LGPE version, removing the Cut trees among other things.
|
||||
- The Fighting Dojo has been revamped, featuring a design reminiscent of the prototype versions; rough floors, the elder in the back, and more. Additionally, you can now get a Hitmontop as a third option. The Karate Master is also now treated somewhat more like a Gym Leader, having Gym Scaling and a Rematch system.
|
||||
- Silph Co's pathing was completely overhauled to make navigating it less tedious.
|
||||
- Silph Co. 11F's unreferenced Porygon PC was restored. It's on the monitor!
|
||||
- Cinnabar Island is a lot bigger, with the volcano being added to it. The mansion seems different too...
|
||||
- Cinnabar Lab's Trade Room now features the Trader, who will evolve trade-evolving Pokemon for you!
|
||||
- Viridian Gym now has a minor new area once you make Giovanni leave.
|
||||
|
|
|
@ -4,14 +4,14 @@ RedsHouse2F_Object:
|
|||
def_warp_events
|
||||
warp_event 7, 1, REDS_HOUSE_1F, 3
|
||||
;warp_event 5, 1, SILPH_GAUNTLET_7F, 1 ; - Test Chief
|
||||
;warp_event 5, 1, SILPH_CO_11F, 2 ; - Test J&J, Omega, & Giovanni. To test the Omega refight, change to SHOW in hide/show data, and set warp ID to 1.
|
||||
warp_event 5, 1, SILPH_CO_11F, 2 ; - Test J&J, Omega, & Giovanni. To test the Omega refight, change to SHOW in hide/show data, and set warp ID to 1.
|
||||
;warp_event 5, 1, ROCKET_HIDEOUT_B4F, 2 ; - Test Giovanni 1
|
||||
;warp_event 5, 1, MT_MOON_SQUARE, 1 ; - Test Shop, NPCs, and Crater
|
||||
;warp_event 5, 1, CELESTE_HILL, 1 ; - Test GMolt
|
||||
;warp_event 5, 1, HALL_OF_FAME, 1 ; Test post-game setup
|
||||
;warp_event 5, 1, GARNET_CAVERN_B1F, 1 ; Test GCuno
|
||||
;warp_event 5, 1, FARAWAY_ISLAND_INSIDE, 1 ; Test Mew
|
||||
warp_event 5, 1, GIOVANNIS_ROOM, 1 ; Test spinner tiles
|
||||
;warp_event 5, 1, GIOVANNIS_ROOM, 1 ; Test spinner tiles
|
||||
|
||||
def_bg_events
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ SilphCo11F_Object:
|
|||
warp_event 3, 2, SILPH_CO_7F, 3
|
||||
|
||||
def_bg_events
|
||||
bg_event 11, 12, 14 ; Porygon PC
|
||||
|
||||
def_object_events
|
||||
object_event 7, 5, SPRITE_SILPH_PRESIDENT, STAY, DOWN, 1 ; person
|
||||
|
|
|
@ -653,6 +653,7 @@ SilphCo11F_TextPointers:
|
|||
dw OmegaText
|
||||
dw Omega2Text
|
||||
dw StupidGiovanniFix
|
||||
dw SilphCo11FPorygonText
|
||||
|
||||
SilphCo11TrainerHeaders:
|
||||
def_trainers 5
|
||||
|
@ -796,3 +797,15 @@ Omega2BattleText:
|
|||
StupidGiovanniFix:
|
||||
text_far _SilphCo10Text_62335
|
||||
text_end
|
||||
|
||||
SilphCo11FPorygonText:
|
||||
text_asm
|
||||
ld hl, .Text
|
||||
call PrintText
|
||||
ld a, PORYGON
|
||||
call DisplayPokedex
|
||||
jp TextScriptEnd
|
||||
|
||||
.Text:
|
||||
text_far _SilphCo11FPorygonText
|
||||
text_end
|
||||
|
|
|
@ -176,3 +176,9 @@ _SilphCoJessieJamesText4::
|
|||
|
||||
para "Again...@"
|
||||
text_end
|
||||
|
||||
_SilphCo11FPorygonText::
|
||||
text "The monitor has"
|
||||
line "#MON on it!"
|
||||
prompt ; this fixes its strange scrolling issue
|
||||
|
||||
|
|
Loading…
Reference in a new issue