Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/data/trainers/special_moves.asm
1271 views
1
; unique moves for gym leaders
2
; this is not automatic! you have to write the index you want to [wLoneAttackNo]
3
; first. e.g., erika's script writes 4 to [wLoneAttackNo] to get mega drain,
4
; the fourth entry in the list.
5
LoneMoves:
6
; pokemon index, move to give nth pokemon
7
db 1, BIDE
8
db 1, BUBBLEBEAM
9
db 2, THUNDERBOLT
10
db 2, MEGA_DRAIN
11
db 3, TOXIC
12
db 3, PSYWAVE
13
db 3, FIRE_BLAST
14
db 4, FISSURE
15
16
; unique moves for elite 4
17
; all trainers in this class are given this move automatically
18
; (unrelated to LoneMoves)
19
TeamMoves:
20
; trainer, move
21
db LORELEI, BLIZZARD
22
db BRUNO, FISSURE
23
db AGATHA, TOXIC
24
db LANCE, BARRIER
25
db -1 ; end
26
27