mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-20 14:18:34 +13:00
1.3 prep: Part A
Uploading some of the 1.3 stuff to begin with, mainly the changes that are fully finished so far.
- After earning all 8 badges, the trainers in Celadon University get a decent level increase, allowing for a much better grinding spot between Victory Road and the Pokemon League.
- A handful of changes to move animations, credit to wrulfy for implementing some of these in their Carmine Red hack:
- Struggle has the user bouncing up and down similarly to Splash, rather than shaking back and forth.
- Slam has the user move forward while attacking.
- Mega Kick has the user move back, then lunging forward while attacking.
- Jump Kick has the user move forward while attacking, as well as a sound effect change.
- Horn Drill uses a unique animation of a rotating star effect, as well as darkening the screen.
- Both confusion-inflicting status moves show birds circling the enemy.
- Hyper Beam is slightly slower, and shakes the screen after the hit.
- Drill Peck uses the same circling star animation as Horn Drill.
- Solar Beam has a 'gathering energy' effect while lighting up the screen.
- SmokeScreen is a lot faster.
- Skull Bash shakes the screen and moves the user horizontally while attacking.
- Hi Jump Kick made slightly faster.
- Dazzling Gleam lights up the screen and has been made slightly longer.
- Acid Armor has been given a proper animatio, and no longer makes the user invisible.
- It's now possible to Escape Rope out of the SS Anne and Silph Gauntlet 3F.
- Changes made to a handful of Victory Road and Silph Gauntlet trainer parties.
- Slight level buffs to the Elite 4 initial matches, and significant buffs to their rematches.
- Silph Gauntlet Gym rematches have been increased by a few levels, and Chief has been similarly buffed.
- Slight encounter tweaks to Route 23
- Level buffs to Victory Road's wild encounters
- Minor text fixes
-
This commit is contained in:
parent
dd5f64ad06
commit
cf504c7f8f
16 changed files with 229 additions and 155 deletions
|
|
@ -37,10 +37,19 @@ CeladonUniversityOutsideText1: ; Starter girl
|
|||
set 6, [hl]
|
||||
set 7, [hl]
|
||||
call Delay3
|
||||
CheckEvent EVENT_BEAT_VIRIDIAN_GYM_GIOVANNI
|
||||
jr nz, .hardmode1
|
||||
ld a, OPP_STUDENT
|
||||
ld [wCurOpponent], a
|
||||
ld a, 4
|
||||
ld [wTrainerNo], a
|
||||
jr .skip1
|
||||
.hardmode1
|
||||
ld a, OPP_STUDENT
|
||||
ld [wCurOpponent], a
|
||||
ld a, 5
|
||||
ld [wTrainerNo], a
|
||||
.skip1
|
||||
ld [wIsTrainerBattle], a
|
||||
ld a, $2
|
||||
ld [wCeladonUniversityOutsideCurScript], a
|
||||
|
|
@ -77,10 +86,19 @@ CeladonUniversityOutsideText2: ; Porygon guy
|
|||
set 6, [hl]
|
||||
set 7, [hl]
|
||||
call Delay3
|
||||
CheckEvent EVENT_BEAT_VIRIDIAN_GYM_GIOVANNI
|
||||
jr nz, .hardmode2
|
||||
ld a, OPP_SUPER_NERD
|
||||
ld [wCurOpponent], a
|
||||
ld a, 6
|
||||
ld [wTrainerNo], a
|
||||
jr .skip2
|
||||
.hardmode2
|
||||
ld a, OPP_SUPER_NERD
|
||||
ld [wCurOpponent], a
|
||||
ld a, 13
|
||||
ld [wTrainerNo], a
|
||||
.skip2
|
||||
ld [wIsTrainerBattle], a
|
||||
ld a, $2
|
||||
ld [wCeladonUniversityOutsideCurScript], a
|
||||
|
|
@ -117,10 +135,19 @@ CeladonUniversityOutsideText3: ; Golem guy
|
|||
set 6, [hl]
|
||||
set 7, [hl]
|
||||
call Delay3
|
||||
CheckEvent EVENT_BEAT_VIRIDIAN_GYM_GIOVANNI
|
||||
jr nz, .hardmode3
|
||||
ld a, OPP_ENGINEER
|
||||
ld [wCurOpponent], a
|
||||
ld a, 1
|
||||
ld [wTrainerNo], a
|
||||
jr .skip3
|
||||
.hardmode3
|
||||
ld a, OPP_ENGINEER
|
||||
ld [wCurOpponent], a
|
||||
ld a, 5
|
||||
ld [wTrainerNo], a
|
||||
.skip3
|
||||
ld [wIsTrainerBattle], a
|
||||
ld a, $2
|
||||
ld [wCeladonUniversityOutsideCurScript], a
|
||||
|
|
@ -157,10 +184,19 @@ CeladonUniversityOutsideText4: ; Mt Moon guy
|
|||
set 6, [hl]
|
||||
set 7, [hl]
|
||||
call Delay3
|
||||
CheckEvent EVENT_BEAT_VIRIDIAN_GYM_GIOVANNI
|
||||
jr nz, .hardmode4
|
||||
ld a, OPP_SUPER_NERD
|
||||
ld [wCurOpponent], a
|
||||
ld a, 7
|
||||
ld [wTrainerNo], a
|
||||
jr .skip4
|
||||
.hardmode4
|
||||
ld a, OPP_SUPER_NERD
|
||||
ld [wCurOpponent], a
|
||||
ld a, 14
|
||||
ld [wTrainerNo], a
|
||||
.skip4
|
||||
ld [wIsTrainerBattle], a
|
||||
ld a, $2
|
||||
ld [wCeladonUniversityOutsideCurScript], a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue