Add Uppercut

Misty's worst nightmare.

FIGHTING type
55 Power
15 PP
80 Accuracy
Effect: Flinch (30% chance)

Learned by Hitmonchan, Machop, and Mankey at L1. Primeape, Machoke, and Machamp have it in their L1 learnsets as well.

Learned by Carapthor at L10 as an evolution move. Also part of its L1 learnset.
This commit is contained in:
Llinos Evans 2023-11-25 16:57:55 +00:00
parent e6119651d8
commit f4b5e1d2f5
16 changed files with 35 additions and 16 deletions

View file

@ -108,9 +108,9 @@ TestBattle:
ld [hl], a
; Player's Pokemon.
ld a, MEW
ld a, MANKEY
ld [wcf91], a
ld a, 100
ld a, 10
ld [wCurEnemyLVL], a
xor a
ld [wMonDataLocation], a
@ -120,19 +120,19 @@ TestBattle:
; This function gives you a way to waste a turn, never know when you'll need it.
; Alternatively, add a move to test.
ld hl, wPartyMon1Moves
ld a, POISON_STING ; Something super weak
ld a, UPPERCUT ; Something super weak
ld [hli], a
ld a, LEECH_SEED ; Test new failure text
ld a, KARATE_CHOP ; Test new failure text
ld [hli], a
ld a, FISSURE ; Something that'll miss easily
ld a, LOW_KICK ; Something that'll miss easily
ld [hli], a
ld a, SPLASH ; Skip turn
ld a, LEER ; Skip turn
ld [hli], a
; Opponent's Pokemon.
ld a, ARTICUNO ; Test new theme
ld a, MANKEY ; Test new theme
ld [wCurOpponent], a
ld a, 100 ; Set the level you want here.
ld a, 10 ; Set the level you want here.
ld [wCurEnemyLVL], a
predef InitOpponent