summaryrefslogtreecommitdiff
path: root/text/battle_tower.asm
blob: 9ef4f02992a77472e7c2272f4421e17711b7691b (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

UnknownText_0x1ec000: ; 0x1ec000
	text "Hello, glad to"
	line "meet you!"

	para "I do hope we have"
	line "a good battle."
	done
; 0x1ec03b

UnknownText_0x1ec03b: ; 0x1ec03b
	text "Thank you! A most"
	line "enjoyable battle!"
	done
; 0x1ec060

UnknownText_0x1ec060: ; 0x1ec060
	text "Thank you. You are"
	line "formidable."
	done
; 0x1ec080

UnknownText_0x1ec080: ; 0x1ec080
	text "Work, work, work…"
	line "I'm always busy!"
	done
; 0x1ec0a3

UnknownText_0x1ec0a3: ; 0x1ec0a3
	text "But, I work hard"
	line "in battle too!"
	done
; 0x1ec0c4

UnknownText_0x1ec0c4: ; 0x1ec0c4
	text "I'm too busy to be"
	line "battling!"
	done
; 0x1ec0e1

UnknownText_0x1ec0e1: ; 0x1ec0e1
	text "Brace yourself for"
	line "my all-out attack!"
	done
; 0x1ec108

UnknownText_0x1ec108: ; 0x1ec108
	text "What a cakewalk!"
	line "You're too easy!"
	done
; 0x1ec12a

UnknownText_0x1ec12a: ; 0x1ec12a
	text "I won't lose next"
	line "time, all right?"
	done
; 0x1ec14d

UnknownText_0x1ec14d: ; 0x1ec14d
	text "Heh, your #MON"
	line "look pretty cool."
	done
; 0x1ec16f

UnknownText_0x1ec16f: ; 0x1ec16f
	text "Hey, hey, no way!"
	line "You won't win!"
	done
; 0x1ec190

UnknownText_0x1ec190: ; 0x1ec190
	text "You serious?"
	line "This is brutal!"
	done
; 0x1ec1ae

UnknownText_0x1ec1ae: ; 0x1ec1ae
	text "#MON every day!"
	line "I love battling!"
	done
; 0x1ec1d0

UnknownText_0x1ec1d0: ; 0x1ec1d0
	text "I'm on top of my"
	line "game, but not you!"
	done
; 0x1ec1f4

UnknownText_0x1ec1f4: ; 0x1ec1f4
	text "I don't care that"
	line "I lost, really!"
	done
; 0x1ec216

UnknownText_0x1ec216: ; 0x1ec216
	text "Hi, there! Let's"
	line "keep this clean!"
	done
; 0x1ec238

UnknownText_0x1ec238: ; 0x1ec238
	text "Whoops, sorry for"
	line "that wipeout!"
	done
; 0x1ec259

UnknownText_0x1ec259: ; 0x1ec259
	text "Whoops! Come on,"
	line "let me win one!"
	done
; 0x1ec27b

UnknownText_0x1ec27b: ; 0x1ec27b
	text "Do you want to see"
	line "my battle level?"
	done
; 0x1ec2a0

UnknownText_0x1ec2a0: ; 0x1ec2a0
	text "Hehehe, I know"
	line "your level now!"
	done
; 0x1ec2c0

UnknownText_0x1ec2c0: ; 0x1ec2c0
	text "Ouch… I'm just too"
	line "weak…"
	done
; 0x1ec2d9

UnknownText_0x1ec2d9: ; 0x1ec2d9
	text "Hey, let's battle."
	line "I'm your opponent."
	done
; 0x1ec2fe

UnknownText_0x1ec2fe: ; 0x1ec2fe
	text "Wow, you're not"
	line "serious about it!"
	done
; 0x1ec320

UnknownText_0x1ec320: ; 0x1ec320
	text "…Urgh… Nothing"
	line "positive here…"
	done
; 0x1ec33f

UnknownText_0x1ec33f: ; 0x1ec33f
	text "I'm your"
	line "opponent."

	para "Get ready to be"
	line "hammered."
	done
; 0x1ec36c

UnknownText_0x1ec36c: ; 0x1ec36c
	text "Hahah! That was a"
	line "pushover!"
	done
; 0x1ec389

UnknownText_0x1ec389: ; 0x1ec389
	text "No way! There has"
	line "to be a mistake!"
	done
; 0x1ec3ad

UnknownText_0x1ec3ad: ; 0x1ec3ad
	text "Hah!"
	line "Let's get rolling!"
	done
; 0x1ec3c5

UnknownText_0x1ec3c5: ; 0x1ec3c5
	text "Wahahaha! Didn't"
	line "break a sweat!"
	done
; 0x1ec3e5

UnknownText_0x1ec3e5: ; 0x1ec3e5
	text "Tough! I'm no"
	line "match for you!"
	done
; 0x1ec402

UnknownText_0x1ec402: ; 0x1ec402
	text $56, $56, $56
	line $56, $56, "Battle?"
	done
; 0x1ec411

UnknownText_0x1ec411: ; 0x1ec411
	text $56, $56, $56
	line $56, $56, "I won?"
	done
; 0x1ec41f

UnknownText_0x1ec41f: ; 0x1ec41f
	text $56, $56, $56
	line $56, $56, "I lost?"
	done
; 0x1ec42e

UnknownText_0x1ec42e: ; 0x1ec42e
	text "You want to be a"
	line "leader?"

	para "Let me battle you,"
	line "then!"
	done
; 0x1ec461

UnknownText_0x1ec461: ; 0x1ec461
	text "You need another"
	line "ten years of"

	para "training to get"
	line "better, I'd say."
	done
; 0x1ec4a0

UnknownText_0x1ec4a0: ; 0x1ec4a0
	text "You're incredibly"
	line "talented."

	para "No one can touch"
	line "you now!"
	done
; 0x1ec4d6

UnknownText_0x1ec4d6: ; 0x1ec4d6
	text "Today, I'm going"
	line "to whomp you."
	done
; 0x1ec4f5

UnknownText_0x1ec4f5: ; 0x1ec4f5
	text "I knew I'd win."
	line "I'm so great!"
	done
; 0x1ec512

UnknownText_0x1ec512: ; 0x1ec512
	text "Uh? My plans are"
	line "out of whack…"
	done
; 0x1ec532

UnknownText_0x1ec532: ; 0x1ec532
	text "I bet you can't"
	line "beat me!"
	done
; 0x1ec54b

UnknownText_0x1ec54b: ; 0x1ec54b
	text "Those #MON"
	line "aren't enough!"
	done
; 0x1ec565

UnknownText_0x1ec565: ; 0x1ec565
	text "I want your"
	line "#MON. Please?"
	done
; 0x1ec580

UnknownText_0x1ec580: ; 0x1ec580
	text "I'll show you a"
	line "real battle!"
	done
; 0x1ec59d

UnknownText_0x1ec59d: ; 0x1ec59d
	text "This battle…"
	line "I'm bored!"
	done
; 0x1ec5b5

UnknownText_0x1ec5b5: ; 0x1ec5b5
	text "…I won't turn tail"
	line "in battle!"
	done
; 0x1ec5d3

UnknownText_0x1ec5d3: ; 0x1ec5d3
	text "Let's go!"
	line "No holds barred!"
	done
; 0x1ec5ee

UnknownText_0x1ec5ee: ; 0x1ec5ee
	text "Sorry! I wanted"
	line "the win more!"
	done
; 0x1ec60d

UnknownText_0x1ec60d: ; 0x1ec60d
	text "Wahah! Congrats!"
	line "I can't do better!"
	done
; 0x1ec631

UnknownText_0x1ec631: ; 0x1ec631
	text "My #MON skills"
	line "are phenomenal!"
	done
; 0x1ec651

UnknownText_0x1ec651: ; 0x1ec651
	text "You've got a long"
	line "way to go."

	para "Well, keep trying!"
	line "Best of luck!"
	done
; 0x1ec68f

UnknownText_0x1ec68f: ; 0x1ec68f
	text "Aww… Don't lose"
	line "after beating me."
	done
; 0x1ec6b1

UnknownText_0x1ec6b1: ; 0x1ec6b1
	text "Who are you?"
	line "I don't know you…"
	done
; 0x1ec6d0

UnknownText_0x1ec6d0: ; 0x1ec6d0
	text "I must've imagined"
	line "that."

	para "There seems to be"
	line "no one here…"
	done
; 0x1ec708

UnknownText_0x1ec708: ; 0x1ec708
	text "Who am I?"
	line "I don't know…"
	done
; 0x1ec720

UnknownText_0x1ec720: ; 0x1ec720
	text "Um… Are you that…"
	line "um…person?"
	done
; 0x1ec73e

UnknownText_0x1ec73e: ; 0x1ec73e
	text "It doesn't appear"
	line "to be you…"
	done
; 0x1ec75b

UnknownText_0x1ec75b: ; 0x1ec75b
	text "Then you really"
	line "are the legendary…"
	done
; 0x1ec77f

UnknownText_0x1ec77f: ; 0x1ec77f
	text "I heard that"
	line "you're hot!"
	done
; 0x1ec798

UnknownText_0x1ec798: ; 0x1ec798
	text "Not bad. I was"
	line "just a bit better."
	done
; 0x1ec7bb

UnknownText_0x1ec7bb: ; 0x1ec7bb
	text "Eh, you're not"
	line "that special."
	done
; 0x1ec7d8

UnknownText_0x1ec7d8: ; 0x1ec7d8
	text "I'm scared about"
	line "what might happen."

	para "My #MON are way"
	line "too strong."
	done
; 0x1ec818

UnknownText_0x1ec818: ; 0x1ec818
	text "See? My #MON"
	line "were too strong."
	done
; 0x1ec837

UnknownText_0x1ec837: ; 0x1ec837
	text "Graa! My #MON"
	line "were total wimps!"
	done
; 0x1ec858

UnknownText_0x1ec858: ; 0x1ec858
	text "Hey, there!"
	line "I'll take you on!"
	done
; 0x1ec876

UnknownText_0x1ec876: ; 0x1ec876
	text "Don't you have a"
	line "better strategy?"
	done
; 0x1ec898

UnknownText_0x1ec898: ; 0x1ec898
	text "You've got decent"
	line "style!"
	done
; 0x1ec8b1

UnknownText_0x1ec8b1: ; 0x1ec8b1
	text "I wonder if I can"
	line "battle properly…"
	done
; 0x1ec8d5

UnknownText_0x1ec8d5: ; 0x1ec8d5
	text "Um… Sorry…"
	line "I think I won."
	done
; 0x1ec8f0

UnknownText_0x1ec8f0: ; 0x1ec8f0
	text "I guess I'm not"
	line "good enough yet…"
	done
; 0x1ec911

UnknownText_0x1ec911: ; 0x1ec911
	text "Wrrooar!"
	line "I won't lose!"
	done
; 0x1ec928

UnknownText_0x1ec928: ; 0x1ec928
	text "Wrrooar! I knew"
	line "I was a genius!"
	done
; 0x1ec949

UnknownText_0x1ec949: ; 0x1ec949
	text "Arrooh! I hate it"
	line "when I lose!"
	done
; 0x1ec969

UnknownText_0x1ec969: ; 0x1ec969
	text "Sorry, but I'm"
	line "going to win."
	done
; 0x1ec986

UnknownText_0x1ec986: ; 0x1ec986
	text "Yeah! My #MON"
	line "rule!"
	done
; 0x1ec99b

UnknownText_0x1ec99b: ; 0x1ec99b
	text "Oh, close! I lost"
	line "by just a bit!"
	done
; 0x1ec9bd

UnknownText_0x1ec9bd: ; 0x1ec9bd
	text "OK, I'm not"
	line "fooling around!"
	done
; 0x1ec9d9

UnknownText_0x1ec9d9: ; 0x1ec9d9
	text "Yay! Too easy!"
	line "Like, no way!"
	done
; 0x1ec9f7

UnknownText_0x1ec9f7: ; 0x1ec9f7
	text "No!"
	line "Like, no way!"
	done
; 0x1eca0a

UnknownText_0x1eca0a: ; 0x1eca0a
	text "Look! My #MON"
	line "are really cute!"
	done
; 0x1eca2a

UnknownText_0x1eca2a: ; 0x1eca2a
	text "Aren't they really"
	line "adorable?"
	done
; 0x1eca47

UnknownText_0x1eca47: ; 0x1eca47
	text "I'm sorry, it's"
	line "all my fault!"
	done
; 0x1eca64

UnknownText_0x1eca64: ; 0x1eca64
	text "Let's get our"
	line "battle started!"
	done
; 0x1eca82

UnknownText_0x1eca82: ; 0x1eca82
	text "Was I too strong"
	line "for you?"
	done
; 0x1eca9d

UnknownText_0x1eca9d: ; 0x1eca9d
	text "Ooh, you're in a"
	line "different class."
	done
; 0x1ecabf

UnknownText_0x1ecabf: ; 0x1ecabf
	text "Are we going to"
	line "battle? Let's!"
	done
; 0x1ecade

UnknownText_0x1ecade: ; 0x1ecade
	text "Oh, you're too"
	line "weak. Shame."
	done
; 0x1ecafa

UnknownText_0x1ecafa: ; 0x1ecafa
	text "Wow! Are you quite"
	line "satisfied?"
	done
; 0x1ecb19

UnknownText_0x1ecb19: ; 0x1ecb19
	text "Oh, you have some"
	line "rare #MON."
	done
; 0x1ecb37

UnknownText_0x1ecb37: ; 0x1ecb37
	text "May I have one of"
	line "your #MON?"
	done
; 0x1ecb55

UnknownText_0x1ecb55: ; 0x1ecb55
	text "…I want one of"
	line "your #MON."
	done
; 0x1ecb70

UnknownText_0x1ecb70: ; 0x1ecb70
	text "Want to hear about"
	line "my cute #MON?"
	done
; 0x1ecb92

UnknownText_0x1ecb92: ; 0x1ecb92
	text "What do you think"
	line "about my cuties?"
	done
; 0x1ecbb6

UnknownText_0x1ecbb6: ; 0x1ecbb6
	text "Oh! My! You're a"
	line "dreadful trainer!"
	done
; 0x1ecbd9

UnknownText_0x1ecbd9: ; 0x1ecbd9
	text "Battle? Sure!"
	line "Right now!"
	done
; 0x1ecbf3

UnknownText_0x1ecbf3: ; 0x1ecbf3
	text "Oh, I love it!"
	line "Battling is wild!"
	done
; 0x1ecc15

UnknownText_0x1ecc15: ; 0x1ecc15
	text "Oh, how rude! Wait"
	line "till next time!"
	done
; 0x1ecc39

UnknownText_0x1ecc39: ; 0x1ecc39
	text "Please let me win!"
	line "Please?"
	done
; 0x1ecc55

UnknownText_0x1ecc55: ; 0x1ecc55
	text "Wow, thank you!"
	line "You're so nice!"
	done
; 0x1ecc75

UnknownText_0x1ecc75: ; 0x1ecc75
	text "You're mean!"
	line "I hate meanies!"
	done
; 0x1ecc92

UnknownText_0x1ecc92: ; 0x1ecc92
	text "Well, can we"
	line "begin?"
	done
; 0x1ecca7

UnknownText_0x1ecca7: ; 0x1ecca7
	text "Well, I beg your"
	line "pardon…"
	done
; 0x1eccc1

UnknownText_0x1eccc1: ; 0x1eccc1
	text "Sob… That's not"
	line "fair!"
	done
; 0x1eccd7

UnknownText_0x1eccd7: ; 0x1eccd7
	text "I'm good!"
	line "You can't win."
	done
; 0x1eccef

UnknownText_0x1eccef: ; 0x1eccef
	text "Giving up? You're"
	line "pretty weak!"
	done
; 0x1ecd0e

UnknownText_0x1ecd0e: ; 0x1ecd0e
	text "I won't accept"
	line "this… No way!"
	done
; 0x1ecd2b

UnknownText_0x1ecd2b: ; 0x1ecd2b
	text "Are you treating"
	line "this seriously?"
	done
; 0x1ecd4d

UnknownText_0x1ecd4d: ; 0x1ecd4d
	text "Oh, sorry! Looks"
	line "like I won!"
	done
; 0x1ecd6b

UnknownText_0x1ecd6b: ; 0x1ecd6b
	text "Oh, how nasty!"
	line "You were serious!"
	done
; 0x1ecd8d

UnknownText_0x1ecd8d: ; 0x1ecd8d
	text "Ahahah! I'll take"
	line "it easy on you!"
	done
; 0x1ecdaf

UnknownText_0x1ecdaf: ; 0x1ecdaf
	text "Oops, sorry! But"
	line "I'm happy too!"
	done
; 0x1ecdcf

UnknownText_0x1ecdcf: ; 0x1ecdcf
	text "Oh, oh, I lost!"
	line "Thanks. Bye!"
	done
; 0x1ecded

UnknownText_0x1ecded: ; 0x1ecded
	text "BATTLE TOWER is a"
	line "tough place!"
	done
; 0x1ece0d

UnknownText_0x1ece0d: ; 0x1ece0d
	text "You might have a"
	line "hard time."
	done
; 0x1ece2a

UnknownText_0x1ece2a: ; 0x1ece2a
	text "Ooh, you might"
	line "make a run here!"
	done
; 0x1ece4b

UnknownText_0x1ece4b: ; 0x1ece4b
	text "I want to see your"
	line "style in action!"
	done
; 0x1ece70

UnknownText_0x1ece70: ; 0x1ece70
	text "Every battle is a"
	line "drama!"
	done
; 0x1ece8a

UnknownText_0x1ece8a: ; 0x1ece8a
	text "Oh… Want to trade"
	line "something?"
	done
; 0x1ecea8

UnknownText_0x1ecea8: ; 0x1ecea8
	text "OK, here goes!"
	line "I have momentum!"
	done
; 0x1ecec9

UnknownText_0x1ecec9: ; 0x1ecec9
	text "See, I rolled"
	line "right over you!"
	done
; 0x1ecee8

UnknownText_0x1ecee8: ; 0x1ecee8
	text "No! This did not"
	line "happen!"
	done
; 0x1ecf02