Skip to content

Commit

Permalink
Update evos_attacks.asm
Browse files Browse the repository at this point in the history
Edited the following lines to the movesets in Polished Crystal to fix various errors, typos, and redundancies. No other changes have been made.

Psyduck: Amnesia was originally at Level 47 and was out of order with the rest of its moves, this is now at Level 37 and is in order. (Line 1208)

Primeape: A minor change, but Rage is now listed as an evolution move in the comments, which it is. (Line 1261)

Poliwhirl: Low Kick was at Level 28, which is the same place as Poliwag despite the moves before and after both being at a higher level after evolving. This was moved to Level 32 to be consistent with the base games in Gen 6 and the pattern of level ups created. (Line 1385)

Dodrio: Rage was listed at Level 9 instead of 8, which makes no sense as that's after it evolves. For consistency's sake, I moved it back anyways. (Line 2020)

Jolteon: Learns Double Kick twice. At level 9 from Let's Go, and at level 17 from its normal moves. Since this isn't quite fair compared to the other Eeveelutions, Spark was added for Level 17 at the recommendation of "censoredharp" on the Discord. Its more powerful than Bite, but paralyzes rather than flinches (which Jolteon can already do), and with the lower Attack stat for Jolteon. This seemed like a balanced choice to keep a consistent movepool without adding extra capabilities Jolteon didn't have before. (Line 3222)

Tangrowth: Moved Swords Dance from Level 49 to 48 to be consistent with the mainline games. (Line 6063)

There were other ones I had considered, like Kabuto learning Leech Life like Kabutops instead of Giga Drain (Line 4818), and Wyrdeer's last 3 moves being moved down to match Stantler's (Lines 6360-6363), but I decided not to as these seemed more intentional, and not exactly necessary compared to Jolteon's case.
  • Loading branch information
Penndragyn37 authored Jul 1, 2024
1 parent ffea915 commit a9c0544
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions data/pokemon/evos_attacks.asm
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@ PsyduckEvosAttacks:
db 28, AQUA_TAIL
db 31, RAIN_DANCE ; Soak → TM move
db 34, PSYBEAM ; Psych Up → egg move
db 47, AMNESIA
db 37, AMNESIA
db 40, HYDRO_PUMP
db 43, NASTY_PLOT ; Wonder Room → SV TM move
db 46, PSYCHIC_M ; TM move
Expand Down Expand Up @@ -1258,7 +1258,7 @@ PrimeapeEvosAttacks:
evo_data EVOLVE_MOVE, OUTRAGE, ANNIHILAPE
db -1 ; no more evolutions
db 1, OUTRAGE
db 1, RAGE
db 1, RAGE ; evolution move
db 1, SCRATCH
db 1, LOW_KICK
db 1, LEER
Expand Down Expand Up @@ -1382,7 +1382,7 @@ PoliwhirlEvosAttacks:
db 18, RAIN_DANCE
db 21, BODY_SLAM
db 27, BUBBLE_BEAM
db 28, LOW_KICK ; Mud Shot → LGPE move
db 32, LOW_KICK ; Mud Shot → LGPE move
db 37, BELLY_DRUM
db 43, GROWTH ; Wake-Up Slap → event move
db 48, HYDRO_PUMP
Expand Down Expand Up @@ -2017,7 +2017,7 @@ DodrioEvosAttacks:
db 1, PECK
db 1, GROWL
db 5, QUICK_ATTACK
db 9, RAGE
db 8, RAGE
db 12, FURY_STRIKES ; Fury Attack → similar move
db 15, PURSUIT
db 19, BATON_PASS ; Pluck → XD move
Expand Down Expand Up @@ -3219,7 +3219,7 @@ JolteonEvosAttacks:
db 5, MUD_SLAP ; Sand Attack → similar move
db 9, DOUBLE_KICK ; Baby-Doll Eyes → LGPE move
db 13, QUICK_ATTACK
db 17, DOUBLE_KICK
db 17, SPARK ; Double Kick → new move
db 20, LIGHT_SCREEN ; Thunder Fang → TM move
db 25, PIN_MISSILE
db 29, AGILITY
Expand Down Expand Up @@ -6060,7 +6060,7 @@ TangrowthEvosAttacks:
db 40, ANCIENTPOWER
db 43, BODY_SLAM ; Slam → similar move
db 46, PAIN_SPLIT ; Tickle → HGSS tutor move
db 49, SWORDS_DANCE ; Wring Out → TM move
db 48, SWORDS_DANCE ; Wring Out → TM move
db 50, BATON_PASS ; Grassy Terrain → new move
db 53, POWER_WHIP
db -1 ; no more level-up moves
Expand Down

0 comments on commit a9c0544

Please sign in to comment.