summaryrefslogtreecommitdiff
path: root/text/battle.asm
blob: b850c96610f21228f55f9aaa532b0146affcdbbe (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
BattleText_0x80730: ; 0x80730
	text $52, " picked up"
	line "¥@"
	deciram $c6ec, $36
	text "!"
	prompt
; 0x80746

WildPokemonAppearedText: ; 0x80746
	text "Wild @"
	text_from_ram $c616
	db $0
	line "appeared!"
	prompt
; 0x8075c

HookedPokemonAttackedText: ; 0x8075c
	text "The hooked"
	line "@"
	text_from_ram $c616
	text $55
	db "attacked!"
	prompt
; 0x80778

PokemonFellFromTreeText: ; 0x80778
	text_from_ram $c616
	text " fell"
	line "out of the tree!"
	prompt
; 0x80793

WildPokemonAppearedText2: ; 0x80793
	text "Wild @"
	text_from_ram $c616
	db $0
	line "appeared!"
	prompt
; 0x807a9

WantsToBattleText:: ; 0x807a9
	text $3f
	line "wants to battle!"
	prompt
; 0x807bd

BattleText_0x807bd: ; 0x807bd
	text "Wild @"
	text_from_ram $c616
	db $0
	line "fled!"
	prompt
; 0x807cf

BattleText_0x807cf: ; 0x807cf
	text "Enemy @"
	text_from_ram $c616
	db $0
	line "fled!"
	prompt
; 0x807e2

BattleText_0x807e2: ; 0x807e2
	text $5a
	line "is hurt by poison!"
	prompt
; 0x807f8

BattleText_0x807f8: ; 0x807f8
	text $5a, "'s"
	line "hurt by its burn!"
	prompt
; 0x8080e

BattleText_0x8080e: ; 0x8080e
	text "LEECH SEED saps"
	line $5a, "!"
	prompt
; 0x80822

BattleText_0x80822: ; 0x80822
	text $5a
	line "has a NIGHTMARE!"
	prompt
; 0x80836

BattleText_0x80836: ; 0x80836
	text $5a, "'s"
	line "hurt by the CURSE!"
	prompt
; 0x8084d

BattleText_0x8084d: ; 0x8084d
	text "The SANDSTORM hits"
	line $5a, "!"
	prompt
; 0x80864

BattleText_0x80864: ; 0x80864
	text $5a, "'s"
	line "PERISH count is @"
	deciram $d265, $11
	text "!"
	prompt
; 0x80880

BattleText_0x80880: ; 0x80880
	text $59
	line "recovered with"
	cont "@"
	text_from_ram StringBuffer1
	text "."
	prompt
; 0x80899

BattleText_0x80899: ; 0x80899
	text $5a
	line "recovered PP using"
	cont "@"
	text_from_ram StringBuffer1
	text "."
	prompt
; 0x808b6

BattleText_0x808b6: ; 0x808b6
	text $59
	line "was hit by FUTURE"
	cont "SIGHT!"
	prompt
; 0x808d2

BattleText_0x808d2: ; 0x808d2
	text $5a, "'s"
	line "SAFEGUARD faded!"
	prompt
; 0x808e7

BattleText_0x808e7: ; 0x808e7
	text_from_ram StringBuffer1
	text " #MON's"
	line "LIGHT SCREEN fell!"
	prompt
; 0x80905

BattleText_0x80905: ; 0x80905
	text_from_ram StringBuffer1
	text " #MON's"
	line "REFLECT faded!"
	prompt
; 0x8091f

BattleText_0x8091f: ; 0x8091f
	text "Rain continues to"
	line "fall."
	prompt
; 0x80938

BattleText_0x80938: ; 0x80938
	text "The sunlight is"
	line "strong."
	prompt
; 0x80951

BattleText_0x80951: ; 0x80951
	text "The SANDSTORM"
	line "rages."
	prompt
; 0x80967

BattleText_0x80967: ; 0x80967
	text "The rain stopped."
	prompt
; 0x8097a

BattleText_0x8097a: ; 0x8097a
	text "The sunlight"
	line "faded."
	prompt
; 0x8098f

BattleText_0x8098f: ; 0x8098f
	text "The SANDSTORM"
	line "subsided."
	prompt
; 0x809a8

BattleText_0x809a8: ; 0x809a8
	text "Enemy @"
	text_from_ram $c616
	db $0
	line "fainted!"
	prompt
; 0x809be

BattleText_0x809be: ; 0x809be
	text $52, " got ¥@"
	deciram $c686, $36
	db $0
	line "for winning!"
	prompt
; 0x809da

BattleText_0x809da: ; 0x809da
	text $3f
	line "was defeated!"
	prompt
; 0x809eb

TiedAgainstText: ; 0x809eb
	text "Tied against"
	line $3f, "!"
	prompt
; 0x809fc

BattleText_0x809fc: ; 0x809fc
	text $52, " got ¥@"
	deciram $c686, $36
	db $0
	line "for winning!"
	cont "Sent some to MOM!"
	prompt
; 0x80a2a

BattleText_0x80a2a: ; 0x80a2a
	text "Sent half to MOM!"
	prompt
; 0x80a3d

BattleText_0x80a3d: ; 0x80a3d
	text "Sent all to MOM!"
	prompt
; 0x80a4f

BattleText_0x80a4f: ; 0x80a4f
	text $53, ": Huh? I"
	line "should've chosen"
	cont "your #MON!"
	prompt
; 0x80a75

BattleText_0x80a75: ; 0x80a75
	text_from_ram $c621
	db $0
	line "fainted!"
	prompt
; 0x80a83

BattleText_0x80a83: ; 0x80a83
	text "Use next #MON?"
	done
; 0x80a93

BattleText_0x80a93: ; 0x80a93
	text $53, ": Yes!"
	line "I guess I chose a"
	cont "good #MON!"
	prompt
; 0x80ab9

LostAgainstText: ; 0x80ab9
	text "Lost against"
	line $3f, "!"
	prompt
; 0x80aca

BattleText_0x80aca: ; 0x80aca
	text $3f
	line "is about to use"
	cont "@"
	text_from_ram $c616
	text "."

	para "Will ", $52
	line "change #MON?"
	done
; 0x80af8

BattleText_0x80af8: ; 0x80af8
	text $3f
	line "sent out"
	cont "@"
	text_from_ram $c616
	text "!"
	done
; 0x80b0b

BattleText_0x80b0b: ; 0x80b0b
	text "There's no will to"
	line "battle!"
	prompt
; 0x80b26

BattleText_0x80b26: ; 0x80b26
	text "An EGG can't"
	line "battle!"
	prompt
; 0x80b3b

BattleText_0x80b3b: ; 0x80b3b
	text "Can't escape!"
	prompt
; 0x80b49

BattleText_0x80b49: ; 0x80b49
	text "No! There's no"
	line "running from a"
	cont "trainer battle!"
	prompt
; 0x80b77

BattleText_0x80b77: ; 0x80b77
	text "Got away safely!"
	prompt
; 0x80b89

BattleText_0x80b89: ; 0x80b89
	text $5a
	line "fled using a"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x80ba0

BattleText_0x80ba0: ; 0x80ba0
	text "Can't escape!"
	prompt
; 0x80bae

BattleText_0x80bae: ; 0x80bae
	text $5a, "'s"
	line "hurt by SPIKES!"
	prompt
; 0x80bc2

RecoveredUsingText: ; 0x80bc2
	text $59
	line "recovered using a"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x80bde

BattleText_0x80bde: ; 0x80bde
	text $5a, "'s"
	line "@"
	text_from_ram StringBuffer1
	text $55
	db "activated!"
	prompt
; 0x80bf3

BattleText_0x80bf3: ; 0x80bf3
	text "Items can't be"
	line "used here."
	prompt
; 0x80c0d

BattleText_0x80c0d: ; 0x80c0d
	text_from_ram $c621
	db $0
	line "is already out."
	prompt
; 0x80c22

BattleText_0x80c22: ; 0x80c22
	text_from_ram $c621
	db $0
	line "can't be recalled!"
	prompt
; 0x80c39

BattleText_0x80c39: ; 0x80c39
	text "There's no PP left"
	line "for this move!"
	prompt
; 0x80c5b

BattleText_0x80c5b: ; 0x80c5b
	text "The move is"
	line "DISABLED!"
	prompt
; 0x80c72

BattleText_0x80c72: ; 0x80c72
	text_from_ram $c621
	db $0
	line "has no moves left!"
	done
; 0x80c8a

BattleText_0x80c8a: ; 0x80c8a
	text $59, "'s"
	line "ENCORE ended!"
	prompt
; 0x80c9c

BattleText_0x80c9c: ; 0x80c9c
	text_from_ram StringBuffer1
	db $0, " grew to", $4f
	db "level @"
	deciram $d143, $13
	db $0, "!@"
	sound0
	db $50
; 0x80cb9

BattleText_0x80cb9: ; 0x80cb9
	db $50
; 0x80cba

BattleText_0x80cba: ; 0x80cba
	text "Wild @"
	text_from_ram $c616
	db $0
	line "is eating!"
	prompt
; 0x80cd1

BattleText_0x80cd1: ; 0x80cd1
	text "Wild @"
	text_from_ram $c616
	db $0
	line "is angry!"
	prompt
; 0x80ce7

FastAsleepText: ; 0x80ce7
	text $5a
	line "is fast asleep!"
	prompt
; 0x80cfa

WokeUpText: ; 0x80cfa
	text $5a
	line "woke up!"
	prompt
; 0x80d06

FrozenSolidText: ; 0x80d06
	text $5a
	line "is frozen solid!"
	prompt
; 0x80d1a

FlinchedText: ; 0x80d1a
	text $5a
	line "flinched!"
	prompt
; 0x80d27

MustRechargeText: ; 0x80d27
	text $5a
	line "must recharge!"
	prompt
; 0x80d39

DisabledNoMoreText: ; 0x80d39
	text $5a, "'s"
	line "disabled no more!"
	prompt
; 0x80d4f

IsConfusedText: ; 0x80d4f
	text $5a
	line "is confused!"
	prompt
; 0x80d5f

HurtItselfText: ; 0x80d5f
	text "It hurt itself in"
	line "its confusion!"
	prompt
; 0x80d81

ConfusedNoMoreText: ; 0x80d81
	text $5a, "'s"
	line "confused no more!"
	prompt
; 0x80d97

BecameConfusedText: ; 0x80d97
	text $59
	line "became confused!"
	prompt
; 0x80dab

BattleText_0x80dab: ; 0x80dab
	text "A @"
	text_from_ram StringBuffer1
	text " rid"
	line $59
	cont "of its confusion."
	prompt
; 0x80dcc

AlreadyConfusedText: ; 0x80dcc
	text $59, "'s"
	line "already confused!"
	prompt
; 0x80de2

BattleText_0x80de2: ; 0x80de2
	text $5a, "'s"
	line "hurt by"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x80df5

BattleText_0x80df5: ; 0x80df5
	text $5a
	line "was released from"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x80e11

UsedBindText: ; 0x80e11
	text $5a
	line "used BIND on"
	cont $59, "!"
	prompt
; 0x80e24

WhirlpoolTrapText: ; 0x80e24
	text $59
	line "was trapped!"
	prompt
; 0x80e34

FireSpinTrapText: ; 0x80e34
	text $59
	line "was trapped!"
	prompt
; 0x80e44

WrappedByText: ; 0x80e44
	text $59
	line "was WRAPPED by"
	cont $5a, "!"
	prompt
; 0x80e59

ClampedByText: ; 0x80e59
	text $59
	line "was CLAMPED by"
	cont $5a, "!"
	prompt
; 0x80e6e

StoringEnergyText: ; 0x80e6e
	text $5a
	line "is storing energy!"
	prompt
; 0x80e84

UnleashedEnergyText: ; 0x80e84
	text $5a
	line "unleashed energy!"
	prompt
; 0x80e99

HungOnText: ; 0x80e99
	text $59
	line "hung on with"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x80eb0

EnduredText: ; 0x80eb0
	text $59
	line "ENDURED the hit!"
	prompt
; 0x80ec4

InLoveWithText: ; 0x80ec4
	text $5a
	line "is in love with"
	cont $59, "!"
	prompt
; 0x80eda

InfatuationText: ; 0x80eda
	text $5a, "'s"
	line "infatuation kept"
	cont "it from attacking!"
	prompt
; 0x80f02

DisabledMoveText: ; 0x80f02
	text $5a, "'s"
	line "@"
	text_from_ram StringBuffer1
	text " is"
	cont "DISABLED!"
	prompt
; 0x80f19

LoafingAroundText: ; 0x80f19
	text_from_ram $c621
	text " is"
	line "loafing around."
	prompt
; 0x80f31

BeganToNapText: ; 0x80f31
	text_from_ram $c621
	text " began"
	line "to nap!"
	prompt
; 0x80f44

WontObeyText: ; 0x80f44
	text_from_ram $c621
	text " won't"
	line "obey!"
	prompt
; 0x80f54

TurnedAwayText: ; 0x80f54
	text_from_ram $c621
	text " turned"
	line "away!"
	prompt
; 0x80f66

IgnoredOrdersText: ; 0x80f66
	text_from_ram $c621
	text " ignored"
	line "orders!"
	prompt
; 0x80f7b

IgnoredSleepingText: ; 0x80f7b
	text_from_ram $c621
	text " ignored"
	line "orders…sleeping!"
	prompt
; 0x80f99

NoPPLeftText: ; 0x80f99
	text "But no PP is left"
	line "for the move!"
	prompt
; 0x80fba

HasNoPPLeftText: ; 0x80fba
	text $5a
	line "has no PP left for"
	cont "@"
	text_from_ram $d086
	text "!"
	prompt
; 0x80fd7

WentToSleepText: ; 0x80fd7
	text $5a
	line "went to sleep!"
	done
; 0x80fe9

RestedText: ; 0x80fe9
	text $5a
	line "fell asleep and"
	cont "became healthy!"
	done
; 0x8100c

RegainedHealthText: ; 0x8100c
	text $5a
	line "regained health!"
	prompt
; 0x81020

AttackMissedText: ; 0x81020
	text $5a, "'s"
	line "attack missed!"
	prompt
; 0x81033

AttackMissed2Text: ; 0x81033
	text $5a, "'s"
	line "attack missed!"
	prompt
; 0x81046

CrashedText: ; 0x81046
	text $5a
	line "kept going and"
	cont "crashed!"
	prompt
; 0x81061

UnaffectedText: ; 0x81061
	text $59, "'s"
	line "unaffected!"
	prompt
; 0x81071

DoesntAffectText: ; 0x81071
	text "It doesn't affect"
	line $59, "!"
	prompt
; 0x81086

CriticalHitText: ; 0x81086
	text "A critical hit!"
	prompt
; 0x81097

OneHitKOText: ; 0x81097
	text "It's a one-hit KO!"
	prompt
; 0x810aa

SuperEffectiveText: ; 0x810aa
	text "It's super-"
	line "effective!"
	prompt
; 0x810c1

NotVeryEffectiveText: ; 0x810c1
	text "It's not very"
	line "effective…"
	prompt
; 0x810da

TookDownWithItText: ; 0x810da
	text $59
	line "took down with it,"
	cont $5a, "!"
	prompt
; 0x810f3

RageBuildingText: ; 0x810f3
	text $5a, "'s"
	line "RAGE is building!"
	prompt
; 0x81109

GotAnEncoreText: ; 0x81109
	text $59
	line "got an ENCORE!"
	prompt
; 0x8111b

SharedPainText: ; 0x8111b
	text "The battlers"
	line "shared pain!"
	prompt
; 0x81136

TookAimText: ; 0x81136
	text $5a
	line "took aim!"
	prompt
; 0x81143

SketchedText: ; 0x81143
	text $5a
	line "SKETCHED"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x81156

DestinyBondEffectText: ; 0x81156
	text $5a, "'s"
	line "trying to take its"
	cont "opponent with it!"
	prompt
; 0x8117f

SpiteEffectText: ; 0x8117f
	text $59, "'s"
	line "@"
	text_from_ram StringBuffer1
	text " was"
	cont "reduced by @"
	deciram $d265, $11
	text "!"
	prompt
; 0x811a0

BellChimedText: ; 0x811a0
	db $0, "A bell chimed!", $4f
	db $58
; 0x811b1

FellAsleepText: ; 0x811b1
	text $59
	line "fell asleep!"
	prompt
; 0x811c1

AlreadyAsleepText: ; 0x811c1
	text $59, "'s"
	line "already asleep!"
	prompt
; 0x811d5

WasPoisonedText: ; 0x811d5
	text $59
	line "was poisoned!"
	prompt
; 0x811e6

BadlyPoisonedText: ; 0x811e6
	text $59, "'s"
	line "badly poisoned!"
	prompt
; 0x811fa

AlreadyPoisonedText: ; 0x811fa
	text $59, "'s"
	line "already poisoned!"
	prompt
; 0x81210

SuckedHealthText: ; 0x81210
	text "Sucked health from"
	line $59, "!"
	prompt
; 0x81227

DreamEatenText: ; 0x81227
	text $59, "'s"
	line "dream was eaten!"
	prompt
; 0x8123c

WasBurnedText: ; 0x8123c
	text $59
	line "was burned!"
	prompt
; 0x8124b

DefrostedOpponentText: ; 0x8124b
	text $59
	line "was defrosted!"
	prompt
; 0x8125d

WasFrozenText: ; 0x8125d
	text $59
	line "was frozen solid!"
	prompt
; 0x81272

WontRiseAnymoreText: ; 0x81272
	text $5a, "'s"
	line "@"
	text_from_ram $d086
	text " won't"
	cont "rise anymore!"
	prompt
; 0x8128f

WontDropAnymoreText: ; 0x8128f
	text $59, "'s"
	line "@"
	text_from_ram $d086
	text " won't"
	cont "drop anymore!"
	prompt
; 0x812ac

FledFromBattleText:: ; 0x812ac
	text $5a
	line "fled from battle!"
	prompt
; 0x812c1

FledInFearText: ; 0x812c1
	text $59
	line "fled in fear!"
	prompt
; 0x812d2

BlownAwayText: ; 0x812d2
	text $59
	line "was blown away!"
	prompt
; 0x812e5

PlayerHitTimesText: ; 0x812e5
	text "Hit @"
	deciram $c682, $11
	text " times!"
	prompt
; 0x812f8

EnemyHitTimesText: ; 0x812f8
	text "Hit @"
	deciram $c684, $11
	text " times!"
	prompt
; 0x8130b

MistText: ; 0x8130b
	text $5a, "'s"
	line "shrouded in MIST!"
	prompt
; 0x81321

ProtectedByMistText: ; 0x81321
	text $59, "'s"
	line "protected by MIST."
	prompt
; 0x81338

GettingPumpedText: ; 0x81338
	interpret_data
	text $5a, "'s"
	line "getting pumped!"
	prompt
; 0x8134d

RecoilText: ; 0x8134d
	text $5a, "'s"
	line "hit with recoil!"
	prompt
; 0x81362

MadeSubstituteText: ; 0x81362
	text $5a
	line "made a SUBSTITUTE!"
	prompt
; 0x81378

HasSubstituteText: ; 0x81378
	text $5a
	line "has a SUBSTITUTE!"
	prompt
; 0x8138d

TooWeakSubText: ; 0x8138d
	text "Too weak to make"
	line "a SUBSTITUTE!"
	prompt
; 0x813ad

SubTookDamageText: ; 0x813ad
	text "The SUBSTITUTE"
	line "took damage for"
	cont $59, "!"
	prompt
; 0x813d0

SubFadedText: ; 0x813d0
	text $59, "'s"
	line "SUBSTITUTE faded!"
	prompt
; 0x813e6

LearnedMoveText: ; 0x813e6
	text $5a
	line "learned"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x813f8

WasSeededText: ; 0x813f8
	text $59
	line "was seeded!"
	prompt
; 0x81407

EvadedText: ; 0x81407
	text $59
	line "evaded the attack!"
	prompt
; 0x8141d

WasDisabledText: ; 0x8141d
	text $59, "'s"
	line "@"
	text_from_ram StringBuffer1
	text " was"
	cont "DISABLED!"
	prompt
; 0x81435

CoinsScatteredText: ; 0x81435
	text "Coins scattered"
	line "everywhere!"
	prompt
; 0x81452

TransformedTypeText: ; 0x81452
	text $5a
	line "transformed into"
	cont "the @"
	text_from_ram StringBuffer1
	text "-type!"
	prompt
; 0x81476

EliminatedStatsText: ; 0x81476
	text "All stat changes"
	line "were eliminated!"
	prompt
; 0x81499

TransformedText: ; 0x81499
	text $5a
	line "TRANSFORMED into"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x814b4

LightScreenEffectText: ; 0x814b4
	text $5a, "'s"
	line "SPCL.DEF rose!"
	prompt
; 0x814c7

ReflectEffectText: ; 0x814c7
	text $5a, "'s"
	line "DEFENSE rose!"
	prompt
; 0x814d9

NothingHappenedText: ; 0x814d9
	text "But nothing"
	line "happened."
	prompt
; 0x814f0

ButItFailedText: ; 0x814f0
	text "But it failed!"
	prompt
; 0x81500

ItFailedText: ; 0x81500
	text "It failed!"
	prompt
; 0x8150c

DidntAffect1Text: ; 0x8150c
	text "It didn't affect"
	line $59, "!"
	prompt
; 0x81520

DidntAffect2Text: ; 0x81520
	text "It didn't affect"
	line $59, "!"
	prompt
; 0x81534

HPIsFullText: ; 0x81534
	text $5a, "'s"
	line "HP is full!"
	prompt
; 0x81544

DraggedOutText: ; 0x81544
	text $5a
	line "was dragged out!"
	prompt
; 0x81558

ParalyzedText: ; 0x81558
	text $59, "'s"
	line "paralyzed! Maybe"
	cont "it can't attack!"
	prompt
; 0x8157d

FullyParalyzedText: ; 0x8157d
	text $5a, "'s"
	line "fully paralyzed!"
	prompt
; 0x81592

AlreadyParalyzedText: ; 0x81592
	text $59, "'s"
	line "already paralyzed!"
	prompt
; 0x815a9

ProtectedByText: ; 0x815a9
	text $59, "'s"
	line "protected by"
	cont "@"
	text_from_ram StringBuffer1
	text "!"
	prompt
; 0x815c1

MirrorMoveFailedText: ; 0x815c1
	text "The MIRROR MOVE", $4e, "failed!"
	prompt
; 0x815da

StoleText: ; 0x815da
	text $5a
	line "stole @"
	text_from_ram StringBuffer1
	text $55
	db "from its foe!"
	prompt
; 0x815f7

CantEscapeNowText: ; 0x815f7
	text $59
	line "can't escape now!"
	prompt
; 0x8160b

StartedNightmareText: ; 0x8160b
	text $59
	line "started to have a"
	cont "NIGHTMARE!"
	prompt
; 0x8162b

WasDefrostedText: ; 0x8162b
	text $5a
	line "was defrosted!"
	prompt
; 0x8163d

PutACurseText: ; 0x8163d
	text $5a
	line "cut its own HP and"

	para "put a CURSE on"
	line $59, "!"
	prompt
; 0x81665

ProtectedItselfText: ; 0x81665
	text $5a
	line "PROTECTED itself!"
	prompt
; 0x8167a

ProtectingItselfText: ; 0x8167a
	text $59, "'s"
	line "PROTECTING itself!"
	done
; 0x81691

SpikesText: ; 0x81691
	text "SPIKES scattered"
	line "all around"
	cont $59, "!"
	prompt
; 0x816b1

IdentifiedText: ; 0x816b1
	text $5a
	line "identified"
	cont $59, "!"
	prompt
; 0x816c2

StartPerishText: ; 0x816c2
	text "Both #MON will"
	line "faint in 3 turns!"
	prompt
; 0x816e4

SandstormBrewedText: ; 0x816e4
	text "A SANDSTORM"
	line "brewed!"
	prompt
; 0x816f9

BracedItselfText: ; 0x816f9
	text $5a
	line "braced itself!"
	prompt
; 0x8170b

FellInLoveText: ; 0x8170b
	text $59
	line "fell in love!"
	prompt
; 0x8171c

CoveredByVeilText: ; 0x8171c
	text $5a, "'s"
	line "covered by a veil!"
	prompt
; 0x81733

SafeguardProtectText: ; 0x81733
	text $59
	line "is protected by"
	cont "SAFEGUARD!"
	prompt
; 0x81751

MagnitudeText: ; 0x81751
	text "Magnitude @"
	deciram $d265, $11
	text "!"
	prompt
; 0x81764

ReleasedByText: ; 0x81764
	text $5a
	line "was released by"
	cont $59, "!"
	prompt
; 0x8177a

ShedLeechSeedText: ; 0x8177a
	text $5a
	line "shed LEECH SEED!"
	prompt
; 0x8178e

BlewSpikesText: ; 0x8178e
	text $5a
	line "blew away SPIKES!"
	prompt
; 0x817a3

DownpourText: ; 0x817a3
	text "A downpour"
	line "started!"
	prompt
; 0x817b8

SunGotBrightText: ; 0x817b8
	text "The sunlight got"
	line "bright!"
	prompt
; 0x817d2

BellyDrumText: ; 0x817d2
	text $5a
	line "cut its HP and"
	cont "maximized ATTACK!"
	prompt
; 0x817f6

CopiedStatsText: ; 0x817f6
	text $5a
	line "copied the stat"

	para "changes of"
	line $59, "!"
	prompt
; 0x81817

ForesawAttackText: ; 0x81817
	text $5a
	line "foresaw an attack!"
	prompt
; 0x8182d

BeatUpAttackText: ; 0x8182d
	text_from_ram StringBuffer1
	text "'s"
	line "attack!"
	done
; 0x8183b

RefusedGiftText: ; 0x8183b
	text $59
	line "refused the gift!"
	prompt
; 0x81850

IgnoredOrders2Text: ; 0x81850
	text $5a
	line "ignored orders!"
	prompt
; 0x81863

BattleText_0x81863: ; 0x81863
	text "Link error…"

	para "The battle has"
	line "been canceled…"
	prompt
; 0x8188e

BattleText_0x8188e: ; 0x8188e
	text "There is no time"
	line "left today!"
	done
; 0x818ac