summaryrefslogtreecommitdiff
path: root/src/data/effect_commands.asm
blob: 6dc74eed06a8690a35849f8be81f341a3fc3f8b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
EffectCommands: ; 186f7 (6:46f7)
; Each move has a two-byte effect pointer (move's 7th param) that points to one of these structures.
; Similarly, trainer cards have a two-byte pointer (7th param) to one of these structures, which determines the card's function.
; Energy cards also point to one of these, but their data is just $00.
;	db CommandType ($01 - $0a)
;	dw Function
;	...
;	db $00

; Commands are associated to a time or a scope (CommandType) that determines when their function is executed during the turn.
; For example type $03 is executed right before dealing damage while type $09 is AI related and executed during enemy turn only.
; Similar move effects of different Pokemon cards all point to a different command list,
; even though in some cases their commands and function pointers match.

; Function name examples
;	PoisonEffect                     ; generic effect shared by multiple moves.
;	Paralysis50PercentEffect         ;
;	KakunaStiffenEffect              ; unique effect from a move known by multiple cards.
;	MetapodStiffenEffect             ;
;	AcidEffect                       ; unique effect from a move known by a single card
;	FoulOdorEffect                   ;
;	SpitPoison_Poison50PercentEffect ; unique effect made of more than one command.
;	SpitPoison_AIEffect              ;

EkansSpitPoisonEffectCommands:
	dbw $03, SpitPoison_Poison50PercentEffect
	dbw $09, SpitPoison_AIEffect
	db  $00

EkansWrapEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

ArbokTerrorStrikeEffectCommands:
	dbw $04, $4726
	dbw $05, $470a
	dbw $0a, $470a
	db  $00

ArbokPoisonFangEffectCommands:
	dbw $03, PoisonEffect
	dbw $09, PoisonFang_AIEffect
	db  $00

WeepinbellPoisonPowderEffectCommands:
	dbw $03, Poison50PercentEffect
	dbw $09, WeepinbellPoisonPowder_AIEffect
	db  $00

VictreebelLureEffectCommands:
	dbw $01, $4740
	dbw $04, $476a
	dbw $05, $474b
	dbw $08, $4764
	db  $00

VictreebelAcidEffectCommands:
	dbw $03, AcidEffect
	db  $00

PinsirIronGripEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

CaterpieStringShotEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

GloomPoisonPowderEffectCommands:
	dbw $03, PoisonEffect
	dbw $09, GloomPoisonPowder_AIEffect
	db  $00

GloomFoulOdorEffectCommands:
	dbw $03, FoulOdorEffect
	db  $00

KakunaStiffenEffectCommands:
	dbw $03, KakunaStiffenEffect
	db  $00

KakunaPoisonPowderEffectCommands:
	dbw $03, Poison50PercentEffect
	dbw $09, KakunaPoisonPowder_AIEffect
	db  $00

GolbatLeechLifeEffectCommands:
	dbw $04, $47bc
	db  $00

VenonatStunSporeEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

VenonatLeechLifeEffectCommands:
	dbw $04, $47c6
	db  $00

ScytherSwordsDanceEffectCommands:
	dbw $03, SwordsDanceEffect
	db  $00

ZubatSupersonicEffectCommands:
	dbw $03, ZubatSupersonicEffect
	db  $00

ZubatLeechLifeEffectCommands:
	dbw $04, $47e3
	db  $00

BeedrillTwineedleEffectCommands:
	dbw $03, $47f5
	dbw $09, $47ed
	db  $00

BeedrillPoisonStingEffectCommands:
	dbw $03, Poison50PercentEffect
	dbw $09, $480d
	db  $00

ExeggcuteHypnosisEffectCommands:
	dbw $03, SleepEffect
	db  $00

ExeggcuteLeechSeedEffectCommands:
	dbw $04, $4815
	db  $00

KoffingFoulGasEffectCommands:
	dbw $03, $482a
	dbw $09, $4822
	db  $00

MetapodStiffenEffectCommands:
	dbw $03, MetapodStiffenEffect
	db  $00

MetapodStunSporeEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

OddishStunSporeEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

OddishSproutEffectCommands:
	dbw $01, $484a
	dbw $04, $48cc
	dbw $05, $485a
	dbw $08, $48b7
	db  $00

ExeggutorTeleportEffectCommands:
	dbw $01, $48ec
	dbw $04, $491a
	dbw $05, $48f7
	dbw $08, $490f
	db  $00

ExeggutorBigEggsplosionEffectCommands:
	dbw $03, $4944
	dbw $09, $4925
	db  $00

NidokingThrashEffectCommands:
	dbw $03, $4973
	dbw $04, $4982
	dbw $09, $496b
	db  $00

NidokingToxicEffectCommands:
	dbw $03, $4994
	dbw $09, $498c
	db  $00

NidoqueenBoyfriendsEffectCommands:
	dbw $03, $4998
	db  $00

NidoranFFurySweepesEffectCommands:
	dbw $03, $49c6
	dbw $09, $49be
	db  $00

NidoranFCallForFamilyEffectCommands:
	dbw $01, $49db
	dbw $04, $4a6e
	dbw $05, $49eb
	dbw $08, $4a55
	db  $00

NidoranMHornHazardEffectCommands:
	dbw $03, $4a96
	dbw $09, $4a8e
	db  $00

NidorinaSupersonicEffectCommands:
	dbw $03, $4aac
	db  $00

NidorinaDoubleKickEffectCommands:
	dbw $03, $4abb
	dbw $09, $4ab3
	db  $00

NidorinoDoubleKickEffectCommands:
	dbw $03, $4adb
	dbw $09, $4ad3
	db  $00

ButterfreeWhirlwindEffectCommands:
	dbw $04, $4b09
	dbw $05, $4af3
	dbw $0a, $4af3
	db  $00

ButterfreeMegaDrainEffectCommands:
	dbw $04, $4b0f
	db  $00

ParasSporeEffectCommands:
	dbw $03, SleepEffect
	db  $00

ParasectSporeEffectCommands:
	dbw $03, SleepEffect
	db  $00

WeedlePoisonStingEffectCommands:
	dbw $03, Poison50PercentEffect
	dbw $09, $4b27
	db  $00

IvysaurPoisonPowderEffectCommands:
	dbw $03, PoisonEffect
	dbw $09, $4b2f
	db  $00

BulbasaurLeechSeedEffectCommands:
	dbw $04, $4b37
	db  $00

VenusaurEnergyTransEffectCommands:
	dbw $02, $4b44
	dbw $03, $4b77
	dbw $04, $4bfb
	dbw $05, $4b6f
	db  $00

GrimerNastyGooEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

GrimerMinimizeEffectCommands:
	dbw $03, $4c30
	db  $00

MukToxicGasEffectCommands:
	dbw $01, $4c36
	db  $00

MukSludgeEffectCommands:
	dbw $03, Poison50PercentEffect
	dbw $09, $4c38
	db  $00

BellsproutCallForFamilyEffectCommands:
	dbw $01, $4c40
	dbw $04, $4cc2
	dbw $05, $4c50
	dbw $08, $4cad
	db  $00

WeezingSmogEffectCommands:
	dbw $03, Poison50PercentEffect
	dbw $09, $4ce2
	db  $00

WeezingSelfdestructEffectCommands:
	dbw $04, $4cea
	db  $00

VenomothShiftEffectCommands:
	dbw $02, $4d09
	dbw $03, $4d5d
	dbw $05, $4d21
	db  $00

VenomothVenomPowderEffectCommands:
	dbw $03, $4d8c
	dbw $09, $4d84
	db  $00

TangelaBindEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

TangelaPoisonPowderEffectCommands:
	dbw $03, PoisonEffect
	dbw $09, $4da0
	db  $00

VileplumeHealEffectCommands:
	dbw $02, $4da8
	dbw $03, $4dc7
	db  $00

VileplumePetalDanceEffectCommands:
	dbw $03, $4e2b
	dbw $09, $4e23
	db  $00

TangelaStunSporeEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

TangelaPoisonWhipEffectCommands:
	dbw $03, PoisonEffect
	dbw $09, $4e4b
	db  $00

VenusaurSolarPowerEffectCommands:
	dbw $02, $4e53
	dbw $03, $4e82
	db  $00

VenusaurMegaDrainEffectCommands:
	dbw $04, $4eb0
	db  $00

OmastarWaterGunEffectCommands:
	dbw $03, $4f05
	dbw $09, $4f05
	db  $00

OmastarSpikeCannonEffectCommands:
	dbw $03, $4f12
	dbw $09, $4f0a
	db  $00

OmanyteClairvoyanceEffectCommands:
	dbw $01, $4f2a
	db  $00

OmanyteWaterGunEffectCommands:
	dbw $03, $4f2c
	dbw $09, $4f2c
	db  $00

WartortleWithdrawEffectCommands:
	dbw $03, $4f32
	db  $00

BlastoiseRainDanceEffectCommands:
	dbw $01, $4f46
	db  $00

BlastoiseHydroPumpEffectCommands:
	dbw $03, $4f48
	dbw $09, $4f48
	db  $00

GyaradosBubblebeamEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

KinglerFlailEffectCommands:
	dbw $03, $4f54
	dbw $09, $4f4e
	db  $00

KrabbyCallForFamilyEffectCommands:
	dbw $01, $4f5d
	dbw $04, $4fdf
	dbw $05, $4f6d
	dbw $08, $4fca
	db  $00

MagikarpFlailEffectCommands:
	dbw $03, $5005
	dbw $09, $4fff
	db  $00

PsyduckHeadacheEffectCommands:
	dbw $03, $500e
	db  $00

PsyduckFurySweepesEffectCommands:
	dbw $03, $501e
	dbw $09, $5016
	db  $00

GolduckPsyshockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

GolduckHyperBeamEffectCommands:
	dbw $04, $506b
	dbw $05, $5033
	dbw $08, $5065
	db  $00

SeadraWaterGunEffectCommands:
	dbw $03, $5085
	dbw $09, $5085
	db  $00

SeadraAgilityEffectCommands:
	dbw $03, $508b
	db  $00

ShellderSupersonicEffectCommands:
	dbw $03, $509d
	db  $00

ShellderHideInShellEffectCommands:
	dbw $03, $50a4
	db  $00

VaporeonQuickAttackEffectCommands:
	dbw $03, $50c0
	dbw $09, $50b8
	db  $00

VaporeonWaterGunEffectCommands:
	dbw $03, $50d3
	dbw $09, $50d3
	db  $00

DewgongIceBeamEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

StarmieRecoverEffectCommands:
	dbw $01, $50d9
	dbw $02, $50f0
	dbw $04, $5114
	dbw $06, $510e
	dbw $08, $5103
	db  $00

StarmieStarFreezeEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

SquirtleBubbleEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

SquirtleWithdrawEffectCommands:
	dbw $03, $5120
	db  $00

HorseaSmokescreenEffectCommands:
	dbw $03, $5134
	db  $00

TentacruelSupersonicEffectCommands:
	dbw $03, $513a
	db  $00

TentacruelJellyfishStingEffectCommands:
	dbw $03, PoisonEffect
	dbw $09, $5141
	db  $00

PoliwhirlAmnesiaEffectCommands:
	dbw $01, $5149
	dbw $02, $516f
	dbw $03, $5179
	dbw $08, $5173
	db  $00

PoliwhirlDoubleslapEffectCommands:
	dbw $03, $51c8
	dbw $09, $51c0
	db  $00

PoliwrathWaterGunEffectCommands:
	dbw $03, $51e0
	dbw $09, $51e0
	db  $00

PoliwrathWhirlpoolEffectCommands:
	dbw $04, $5214
	dbw $05, $51e6
	dbw $08, $520e
	db  $00

PoliwagWaterGunEffectCommands:
	dbw $03, $5227
	dbw $09, $5227
	db  $00

CloysterClampEffectCommands:
	dbw $03, $522d
	db  $00

CloysterSpikeCannonEffectCommands:
	dbw $03, $524e
	dbw $09, $5246
	db  $00

ArticunoFreezeDryEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

ArticunoBlizzardEffectCommands:
	dbw $03, $5266
	dbw $04, $526f
	db  $00

TentacoolCowardiceEffectCommands:
	dbw $02, $528b
	dbw $03, $52c3
	dbw $05, $52ae
	db  $00

LaprasWaterGunEffectCommands:
	dbw $03, $52eb
	dbw $09, $52eb
	db  $00

LaprasConfuseRayEffectCommands:
	dbw $03, Confusion50PercentEffect
	db  $00

ArticunoQuickfreezeEffectCommands:
	dbw $01, $52f1
	dbw $07, $52f3
	db  $00

ArticunoIceBreathEffectCommands:
	dbw $03, $5329
	dbw $04, $532e
	db  $00

VaporeonFocusEnergyEffectCommands:
	dbw $03, $533f
	db  $00

ArcanineFlamethrowerEffectCommands:
	dbw $01, $5363
	dbw $02, $5371
	dbw $06, $5379
	dbw $08, $5375
	db  $00

ArcanineTakeDownEffectCommands:
	dbw $04, $537f
	db  $00

ArcanineQuickAttackEffectCommands:
	dbw $03, $538d
	dbw $09, $5385
	db  $00

ArcanineFlamesOfRageEffectCommands:
	dbw $01, $53a0
	dbw $02, $53ae
	dbw $03, $53ef
	dbw $06, $53de
	dbw $08, $53d5
	dbw $09, $53e9
	db  $00

RapidashStompEffectCommands:
	dbw $03, $5400
	dbw $09, $53f8
	db  $00

RapidashAgilityEffectCommands:
	dbw $03, $5413
	db  $00

NinetailsLureEffectCommands:
	dbw $01, $5425
	dbw $04, $544f
	dbw $05, $5430
	dbw $08, $5449
	db  $00

NinetailsFireBlastEffectCommands:
	dbw $01, $5463
	dbw $02, $5471
	dbw $06, $5479
	dbw $08, $5475
	db  $00

CharmanderEmberEffectCommands:
	dbw $01, $547f
	dbw $02, $548d
	dbw $06, $5495
	dbw $08, $5491
	db  $00

MoltresWildfireEffectCommands:
	dbw $01, $549b
	dbw $02, $54a9
	dbw $04, $54f4
	dbw $06, $54e1
	dbw $08, $54dd
	db  $00

Moltres1DiveBombEffectCommands:
	dbw $03, $552b
	dbw $09, $5523
	db  $00

FlareonQuickAttackEffectCommands:
	dbw $03, $5549
	dbw $09, $5541
	db  $00

FlareonFlamethrowerEffectCommands:
	dbw $01, $555c
	dbw $02, $556a
	dbw $06, $5572
	dbw $08, $556e
	db  $00

MagmarFlamethrowerEffectCommands:
	dbw $01, $5578
	dbw $02, $5586
	dbw $06, $558e
	dbw $08, $558a
	db  $00

MagmarSmokescreenEffectCommands:
	dbw $03, $5594
	db  $00

MagmarSmogEffectCommands:
	dbw $03, Poison50PercentEffect
	dbw $09, $559a
	db  $00

CharmeleonFlamethrowerEffectCommands:
	dbw $01, $55a2
	dbw $02, $55b0
	dbw $06, $55b8
	dbw $08, $55b4
	db  $00

CharizardEnergyBurnEffectCommands:
	dbw $01, $55be
	db  $00

CharizardFireSpinEffectCommands:
	dbw $01, $55c0
	dbw $02, $55cd
	dbw $06, $5614
	dbw $08, $5606
	db  $00

VulpixConfuseRayEffectCommands:
	dbw $03, Confusion50PercentEffect
	db  $00

FlareonRageEffectCommands:
	dbw $03, $563e
	dbw $09, $5638
	db  $00

NinetailsMixUpEffectCommands:
	dbw $04, $5647
	db  $00

NinetailsDancingEmbersEffectCommands:
	dbw $03, $56ab
	dbw $09, $56a3
	db  $00

MoltresFiregiverEffectCommands:
	dbw $01, $56c0
	dbw $07, $56c2
	db  $00

Moltres2DiveBombEffectCommands:
	dbw $03, $5776
	dbw $09, $576e
	db  $00

AbraPsyshockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

GengarCurseEffectCommands:
	dbw $02, $57fc
	dbw $03, $58bb
	dbw $05, $5834
	db  $00

GengarDarkMindEffectCommands:
	dbw $04, $593c
	dbw $05, $5903
	dbw $08, $592a
	db  $00

GastlySleepingGasEffectCommands:
	dbw $03, $594f
	db  $00

GastlyDestinyBondEffectCommands:
	dbw $01, $5956
	dbw $02, $5964
	dbw $03, $5987
	dbw $06, $5981
	dbw $08, $5976
	db  $00

GastlyLickEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

GastlyEnergyConversionEffectCommands:
	dbw $01, $598d
	dbw $04, $59b4
	dbw $05, $5994
	dbw $08, $599b
	db  $00

HaunterHypnosisEffectCommands:
	dbw $03, SleepEffect
	db  $00

HaunterDreamEaterEffectCommands:
	dbw $01, $59d6
	db  $00

HaunterTransparencyEffectCommands:
	dbw $01, $59e5
	db  $00

HaunterNightmareEffectCommands:
	dbw $03, SleepEffect
	db  $00

HypnoProphecyEffectCommands:
	dbw $01, $59e7
	dbw $04, $5a41
	dbw $05, $5a00
	dbw $08, $5a3c
	db  $00

HypnoDarkMindEffectCommands:
	dbw $04, $5b64
	dbw $05, $5b2b
	dbw $08, $5b52
	db  $00

DrowzeeConfuseRayEffectCommands:
	dbw $03, Confusion50PercentEffect
	db  $00

MrMimeInvisibleWallEffectCommands:
	dbw $01, $5b77
	db  $00

MrMimeMeditateEffectCommands:
	dbw $03, $5b7f
	dbw $09, $5b79
	db  $00

AlakazamDamageSwapEffectCommands:
	dbw $02, $5b8e
	dbw $03, $5ba2
	dbw $04, $5c27
	db  $00

AlakazamConfuseRayEffectCommands:
	dbw $03, Confusion50PercentEffect
	db  $00

MewPsywaveEffectCommands:
	dbw $03, $5c49
	db  $00

MewDevolutionBeamEffectCommands:
	dbw $01, $5c53
	dbw $02, $5c64
	dbw $03, $5cb6
	dbw $04, $5cbb
	dbw $08, $5c9e
	db  $00

MewNeutralizingShieldEffectCommands:
	dbw $01, $5d79
	db  $00

MewPsyshockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

MewtwoPsychicEffectCommands:
	dbw $03, $5d81
	dbw $09, $5d7b
	db  $00

MewtwoBarrierEffectCommands:
	dbw $01, $5d8e
	dbw $02, $5d9c
	dbw $03, $5dbf
	dbw $06, $5db9
	dbw $08, $5dae
	db  $00

Mewtwo3EnergyAbsorptionEffectCommands:
	dbw $01, $5dc5
	dbw $04, $5dec
	dbw $05, $5dcc
	dbw $08, $5dd3
	db  $00

Mewtwo2EnergyAbsorptionEffectCommands:
	dbw $01, $5dff
	dbw $04, $5e26
	dbw $05, $5e06
	dbw $08, $5e0d
	db  $00

SlowbroStrangeBehaviorEffectCommands:
	dbw $02, $5e39
	dbw $03, $5e5b
	dbw $04, $5eb3
	db  $00

SlowbroPsyshockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

SlowpokeSpacingOutEffectCommands:
	dbw $01, $5ed5
	dbw $03, $5ee0
	dbw $04, $5ef1
	db  $00

SlowpokeScavengeEffectCommands:
	dbw $01, $5f05
	dbw $02, $5f1a
	dbw $04, $5f5f
	dbw $05, $5f46
	dbw $06, $5f40
	dbw $08, $5f2d
	db  $00

SlowpokeAmnesiaEffectCommands:
	dbw $01, $5f74
	dbw $02, $5f7b
	dbw $03, $5f85
	dbw $08, $5f7f
	db  $00

KadabraRecoverEffectCommands:
	dbw $01, $5f89
	dbw $02, $5fa0
	dbw $04, $5fc3
	dbw $06, $5fbd
	dbw $08, $5fb2
	db  $00

JynxDoubleslapEffectCommands:
	dbw $03, $5fd7
	dbw $09, $5fcf
	db  $00

JynxMeditateEffectCommands:
	dbw $03, $5ff2
	dbw $09, $5fec
	db  $00

MewMysteryAttackEffectCommands:
	dbw $03, $6009
	dbw $04, $603e
	dbw $09, $6001
	db  $00

GeodudeStoneBarrageEffectCommands:
	dbw $03, $6052
	dbw $09, $604a
	db  $00

OnixHardenEffectCommands:
	dbw $03, $6075
	db  $00

PrimeapeFurySweepesEffectCommands:
	dbw $03, $6083
	dbw $09, $607b
	db  $00

PrimeapeTantrumEffectCommands:
	dbw $03, $6099
	db  $00

MachampStrikesBackEffectCommands:
	dbw $01, $60af
	db  $00

KabutoKabutoArmorEffectCommands:
	dbw $01, $60b1
	db  $00

KabutopsAbsorbEffectCommands:
	dbw $04, $60b3
	db  $00

CuboneSnivelEffectCommands:
	dbw $03, $60cb
	db  $00

CuboneRageEffectCommands:
	dbw $03, $60d7
	dbw $09, $60d1
	db  $00

MarowakBonemerangEffectCommands:
	dbw $03, $60e8
	dbw $09, $60e0
	db  $00

MarowakCallforFriendEffectCommands:
	dbw $01, $6100
	dbw $04, $6194
	dbw $05, $6110
	dbw $08, $6177
	db  $00

MachokeKarateChopEffectCommands:
	dbw $03, $61ba
	dbw $09, $61b4
	db  $00

MachokeSubmissionEffectCommands:
	dbw $04, $61d1
	db  $00

GolemSelfdestructEffectCommands:
	dbw $04, $61d7
	db  $00

GravelerHardenEffectCommands:
	dbw $03, $61f6
	db  $00

RhydonRamEffectCommands:
	dbw $04, $6212
	dbw $05, $61fc
	dbw $0a, $61fc
	db  $00

RhyhornLeerEffectCommands:
	dbw $03, $621d
	db  $00

HitmonleeStretchKickEffectCommands:
	dbw $01, $6231
	dbw $04, $625b
	dbw $05, $623c
	dbw $08, $6255
	db  $00

SandshrewSandAttackEffectCommands:
	dbw $03, $626b
	db  $00

SandslashFurySweepesEffectCommands:
	dbw $03, $6279
	dbw $09, $6271
	db  $00

DugtrioEarthquakeEffectCommands:
	dbw $04, $628f
	db  $00

AerodactylPrehistoricPowerEffectCommands:
	dbw $01, $629a
	db  $00

MankeyPeekEffectCommands:
	dbw $02, $629c
	dbw $03, $62b4
	db  $00

MarowakBoneAttackEffectCommands:
	dbw $03, $630f
	db  $00

MarowakWailEffectCommands:
	dbw $01, $631c
	dbw $04, $6335
	db  $00

ElectabuzzThundershockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

ElectabuzzThunderpunchEffectCommands:
	dbw $03, $63a1
	dbw $04, $63b0
	dbw $09, $6399
	db  $00

ElectabuzzLightScreenEffectCommands:
	dbw $03, $63ba
	db  $00

ElectabuzzQuickAttackEffectCommands:
	dbw $03, $63c8
	dbw $09, $63c0
	db  $00

MagnemiteThunderWaveEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

MagnemiteSelfdestructEffectCommands:
	dbw $04, $63db
	db  $00

ZapdosThunderEffectCommands:
	dbw $03, $63fa
	dbw $04, $6409
	db  $00

ZapdosThunderboltEffectCommands:
	dbw $03, $6419
	db  $00

ZapdosThunderstormEffectCommands:
	dbw $04, $6429
	db  $00

JolteonQuickAttackEffectCommands:
	dbw $03, $64c3
	dbw $09, $64bb
	db  $00

JolteonPinMissileEffectCommands:
	dbw $03, $64de
	dbw $09, $64d6
	db  $00

FlyingPikachuThundershockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

FlyingPikachuFlyEffectCommands:
	dbw $03, $64fc
	dbw $09, $64f4
	db  $00

PikachuThunderJoltEffectCommands:
	dbw $03, $651a
	dbw $04, $6529
	db  $00

PikachuSparkEffectCommands:
	dbw $04, $6574
	dbw $05, $6539
	dbw $08, $6562
	db  $00

Pikachu3GrowlEffectCommands:
	dbw $03, $6589
	db  $00

Pikachu3ThundershockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

Pikachu4GrowlEffectCommands:
	dbw $03, $658f
	db  $00

Pikachu4ThundershockEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

ElectrodeChainLightningEffectCommands:
	dbw $04, $6595
	db  $00

RaichuAgilityEffectCommands:
	dbw $03, $65dc
	db  $00

RaichuThunderEffectCommands:
	dbw $03, $65ee
	dbw $04, $65fd
	db  $00

RaichuGigashockEffectCommands:
	dbw $04, $671f
	dbw $05, $660d
	dbw $08, $66c3
	db  $00

MagnetonThunderWaveEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

Magneton1SelfdestructEffectCommands:
	dbw $04, $6739
	db  $00

MagnetonSonicboomEffectCommands:
	dbw $03, $6758
	dbw $04, $675e
	dbw $09, $6758
	db  $00

Magneton2SelfdestructEffectCommands:
	dbw $04, $675f
	db  $00

ZapdosPealOfThunderEffectCommands:
	dbw $01, $677e
	dbw $07, $6780
	db  $00

ZapdosBigThunderEffectCommands:
	dbw $04, $67cb
	db  $00

MagnemiteMagneticStormEffectCommands:
	dbw $04, $67d5
	db  $00

ElectrodeSonicboomEffectCommands:
	dbw $03, $6870
	dbw $04, $6876
	dbw $09, $6870
	db  $00

ElectrodeEnergySpikeEffectCommands:
	dbw $01, $6877
	dbw $04, $68f6
	dbw $05, $687b
	dbw $08, $68f1
	db  $00

JolteonDoubleKickEffectCommands:
	dbw $03, $6938
	dbw $09, $6930
	db  $00

JolteonStunNeedleEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

EeveeTailWagEffectCommands:
	dbw $03, $694e
	db  $00

EeveeQuickAttackEffectCommands:
	dbw $03, $696a
	dbw $09, $6962
	db  $00

SpearowMirrorMoveEffectCommands:
	dbw $01, $697f
	dbw $02, $6981
	dbw $03, $6987
	dbw $04, $6989
	dbw $05, $6983
	dbw $08, $6985
	dbw $09, $697d
	db  $00

FearowAgilityEffectCommands:
	dbw $03, $6ab8
	db  $00

DragoniteStepInEffectCommands:
	dbw $02, $6aca
	dbw $03, $6ae8
	db  $00

Dragonite2SlamEffectCommands:
	dbw $03, $6afe
	dbw $09, $6af6
	db  $00

SnorlaxThickSkinnedEffectCommands:
	dbw $01, $6b15
	db  $00

SnorlaxBodySlamEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

FarfetchdLeekSlapEffectCommands:
	dbw $01, $6b1f
	dbw $03, $6b34
	dbw $06, $6b2c
	dbw $09, $6b17
	db  $00

KangaskhanFetchEffectCommands:
	dbw $04, $6b40
	db  $00

KangaskhanCometPunchEffectCommands:
	dbw $03, $6b65
	dbw $09, $6b5d
	db  $00

TaurosStompEffectCommands:
	dbw $03, $6b83
	dbw $09, $6b7b
	db  $00

TaurosRampageEffectCommands:
	dbw $03, $6ba1
	dbw $09, $6b96
	db  $00

DoduoFuryAttackEffectCommands:
	dbw $03, $6bc2
	dbw $09, $6bba
	db  $00

DodrioRetreatAidEffectCommands:
	dbw $01, $6bd7
	db  $00

DodrioRageEffectCommands:
	dbw $03, $6bdf
	dbw $09, $6bd9
	db  $00

MeowthPayDayEffectCommands:
	dbw $04, $6be8
	db  $00

DragonairSlamEffectCommands:
	dbw $03, $6c14
	dbw $09, $6c0c
	db  $00

DragonairHyperBeamEffectCommands:
	dbw $04, $6c35
	dbw $05, $6c2c
	dbw $08, $6c2f
	db  $00

ClefableMetronomeEffectCommands:
	dbw $01, $6c77
	dbw $02, $6c82
	dbw $08, $6c7e
	db  $00

ClefableMinimizeEffectCommands:
	dbw $03, $6c88
	db  $00

PidgeotHurricaneEffectCommands:
	dbw $04, $6c8e
	db  $00

PidgeottoWhirlwindEffectCommands:
	dbw $04, $6ce9
	dbw $05, $6cd3
	dbw $0a, $6cd3
	db  $00

PidgeottoMirrorMoveEffectCommands:
	dbw $01, $6cf2
	dbw $02, $6cf5
	dbw $03, $6cfe
	dbw $04, $6d01
	dbw $05, $6cf8
	dbw $08, $6cfb
	dbw $09, $6cef
	db  $00

ClefairySingEffectCommands:
	dbw $03, $6d04
	db  $00

ClefairyMetronomeEffectCommands:
	dbw $01, $6d0b
	dbw $02, $6d16
	dbw $08, $6d12
	db  $00

WigglytuffLullabyEffectCommands:
	dbw $03, SleepEffect
	db  $00

WigglytuffDoTheWaveEffectCommands:
	dbw $03, $6d87
	dbw $09, $6d87
	db  $00

JigglypuffLullabyEffectCommands:
	dbw $03, SleepEffect
	db  $00

JigglypuffFirstAidEffectCommands:
	dbw $01, $6d94
	dbw $04, $6d9f
	db  $00

JigglypuffDoubleEdgeEffectCommands:
	dbw $04, $6da6
	db  $00

PersianPounceEffectCommands:
	dbw $03, $6dac
	db  $00

LickitungTongueWrapEffectCommands:
	dbw $03, Paralysis50PercentEffect
	db  $00

LickitungSupersonicEffectCommands:
	dbw $03, $6db2
	db  $00

PidgeyWhirlwindEffectCommands:
	dbw $04, $6dcf
	dbw $05, $6db9
	dbw $0a, $6db9
	db  $00

PorygonConversion1EffectCommands:
	dbw $01, $6dd5
	dbw $02, $6ded
	dbw $04, $6dfb
	dbw $08, $6df7
	db  $00

PorygonConversion2EffectCommands:
	dbw $01, $6e1f
	dbw $02, $6e31
	dbw $04, $6e5e
	dbw $08, $6e3c
	db  $00

ChanseyScrunchEffectCommands:
	dbw $03, $6ee7
	db  $00

ChanseyDoubleEdgeEffectCommands:
	dbw $04, $6efb
	db  $00

RaticateSuperFangEffectCommands:
	dbw $03, $6f07
	dbw $09, $6f01
	db  $00

TrainerCardAsPokemonEffectCommands:
	dbw $02, $6f18
	dbw $03, $6f3c
	dbw $05, $6f27
	db  $00

DragoniteHealingWindEffectCommands:
	dbw $01, $6f51
	dbw $07, $6f53
	db  $00

Dragonite1SlamEffectCommands:
	dbw $03, $6fa4
	dbw $09, $6f9c
	db  $00

MeowthCatPunchEffectCommands:
	dbw $04, $6fe0
	db  $00

DittoMorphEffectCommands:
	dbw $04, $6ff6
	db  $00

PidgeotSlicingWindEffectCommands:
	dbw $04, $70bf
	db  $00

PidgeotGaleEffectCommands:
	dbw $03, $70d0
	dbw $04, $70d6
	db  $00

JigglypuffFriendshipSongEffectCommands:
	dbw $01, $710d
	dbw $04, $7119
	db  $00

JigglypuffExpandEffectCommands:
	dbw $04, $7153
	db  $00

DoubleColorlessEnergyEffectCommands:
	db  $00

PsychicEnergyEffectCommands:
	db  $00

FightingEnergyEffectCommands:
	db  $00

LightningEnergyEffectCommands:
	db  $00

WaterEnergyEffectCommands:
	db  $00

FireEnergyEffectCommands:
	db  $00

GrassEnergyEffectCommands:
	db  $00

SuperPotionEffectCommands:
	dbw $01, $7159
	dbw $02, $7167
	dbw $03, $71b5
	db  $00

ImakuniEffectCommands:
	dbw $03, $7216
	db  $00

EnergyRemovalEffectCommands:
	dbw $01, $7252
	dbw $02, $725f
	dbw $03, $7273
	dbw $08, $726f
	db  $00

EnergyRetrievalEffectCommands:
	dbw $01, $728e
	dbw $02, $72a0
	dbw $03, $72f8
	dbw $05, $72b9
	db  $00

EnergySearchEffectCommands:
	dbw $01, $731c
	dbw $03, $7372
	dbw $05, $7328
	db  $00

ProfessorOakEffectCommands:
	dbw $03, $73a1
	db  $00

PotionEffectCommands:
	dbw $01, $73ca
	dbw $02, $73d1
	dbw $03, $73ef
	db  $00

GamblerEffectCommands:
	dbw $03, $73f9
	db  $00

ItemFinderEffectCommands:
	dbw $01, $743b
	dbw $02, $744a
	dbw $03, $7463
	db  $00

DefenderEffectCommands:
	dbw $02, $7488
	dbw $03, $7499
	db  $00

MysteriousFossilEffectCommands:
	dbw $01, $74b3
	dbw $03, $74bf
	db  $00

FullHealEffectCommands:
	dbw $01, $74c5
	dbw $03, $74d1
	db  $00

ImposterProfessorOakEffectCommands:
	dbw $03, $74e1
	db  $00

ComputerSearchEffectCommands:
	dbw $01, $7513
	dbw $02, $752a
	dbw $03, $7545
	dbw $05, $752e
	db  $00

ClefairyDollEffectCommands:
	dbw $01, $7561
	dbw $03, $756d
	db  $00

MrFujiEffectCommands:
	dbw $01, $7573
	dbw $02, $757e
	dbw $03, $758f
	db  $00

PlusPowerEffectCommands:
	dbw $03, $75e0
	db  $00

SwitchEffectCommands:
	dbw $01, $75ee
	dbw $02, $75f9
	dbw $03, $760a
	db  $00

PokemonCenterEffectCommands:
	dbw $01, $7611
	dbw $03, $7618
	db  $00

PokemonFluteEffectCommands:
	dbw $01, $7659
	dbw $02, $7672
	dbw $03, $768f
	db  $00

PokemonBreederEffectCommands:
	dbw $01, $76b3
	dbw $02, $76c1
	dbw $03, $76f4
	db  $00

ScoopUpEffectCommands:
	dbw $01, $7795
	dbw $02, $77a0
	dbw $03, $77c3
	db  $00

PokemonTraderEffectCommands:
	dbw $01, $7826
	dbw $02, $7838
	dbw $03, $788d
	dbw $05, $7853
	db  $00

PokedexEffectCommands:
	dbw $01, $78e1
	dbw $03, $79aa
	dbw $05, $78ed
	db  $00

BillEffectCommands:
	dbw $03, $79c4
	db  $00

LassEffectCommands:
	dbw $03, $79e3
	db  $00

MaintenanceEffectCommands:
	dbw $01, $7a70
	dbw $02, $7a7b
	dbw $03, $7a85
	db  $00

PokeBallEffectCommands:
	dbw $01, $7aad
	dbw $03, $7b15
	dbw $05, $7ab9
	db  $00

RecycleEffectCommands:
	dbw $01, $7b36
	dbw $03, $7b68
	dbw $05, $7b41
	db  $00

ReviveEffectCommands:
	dbw $01, $7b80
	dbw $02, $7b93
	dbw $03, $7bb0
	db  $00

DevolutionSprayEffectCommands:
	dbw $01, $7c0b
	dbw $02, $7c24
	dbw $03, $7c99
	db  $00

SuperEnergyRemovalEffectCommands:
	dbw $01, $7cd0
	dbw $02, $7ce4
	dbw $03, $7d73
	db  $00

SuperEnergyRetrievalEffectCommands:
	dbw $01, $7da4
	dbw $02, $7db6
	dbw $03, $7dfa
	dbw $05, $7dba
	db  $00

GustOfWindEffectCommands:
	dbw $01, $7e6e
	dbw $02, $7e79
	dbw $03, $7e90
	db  $00