This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
text.asm
3217 lines (2606 loc) · 51.3 KB
/
text.asm
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
INCLUDE "charmap.asm"
INCLUDE "constants/text_constants.asm"
TEXT_1 EQU $20
TEXT_2 EQU TEXT_1 + 1
TEXT_3 EQU TEXT_2 + 1
TEXT_4 EQU TEXT_3 + 1
TEXT_5 EQU TEXT_4 + 1
TEXT_6 EQU TEXT_5 + 1
TEXT_7 EQU TEXT_6 + 1
TEXT_8 EQU TEXT_7 + 1
TEXT_9 EQU TEXT_8 + 1
TEXT_10 EQU TEXT_9 + 1
TEXT_11 EQU TEXT_10 + 1
POKEDEX_TEXT EQU TEXT_11 + 1
MOVE_NAMES EQU POKEDEX_TEXT + 1
INCLUDE "macros.asm"
INCLUDE "hram.asm"
SECTION "Text 1", ROMX, BANK[TEXT_1]
_CardKeySuccessText1::
text "Bingo!@@"
_CardKeySuccessText2::
text ""
line "The CARD KEY"
cont "opened the door!"
done
_CardKeyFailText::
text "Darn! It needs a"
line "CARD KEY!"
done
_TrainerNameText::
TX_RAM wcd6d
text ": @@"
_NoNibbleText::
text "Not even a nibble!"
prompt
_NothingHereText::
text "Looks like there's"
line "nothing here."
prompt
_ItsABiteText::
text "Oh!"
line "It's a bite!"
prompt
_ExclamationText::
text "!"
done
_GroundRoseText::
text "Ground rose up"
line "somewhere!"
done
_BoulderText::
text "This requires"
line "STRENGTH to move!"
done
_MartSignText::
text "All your item"
line "needs fulfilled!"
cont "#MON MART"
done
_PokeCenterSignText::
text "Heal Your #MON!"
line "#MON CENTER"
done
_FoundItemText::
text "<PLAYER> found"
line "@"
TX_RAM wcf4b
text "!@@"
_NoMoreRoomForItemText::
text "No more room for"
line "items!"
done
_OaksAideHiText::
text "Hi! Remember me?"
line "I'm PROF.OAK's"
cont "AIDE!"
para "If you caught @"
TX_NUM hOaksAideRequirement, 1, 3
text ""
line "kinds of #MON,"
cont "I'm supposed to"
cont "give you an"
cont "@"
TX_RAM wOaksAideRewardItemName
text "!"
para "So, <PLAYER>! Have"
line "you caught at"
cont "least @"
TX_NUM hOaksAideRequirement, 1, 3
text " kinds of"
cont "#MON?"
done
_OaksAideUhOhText::
text "Let's see..."
line "Uh-oh! You have"
cont "caught only @"
TX_NUM hOaksAideNumMonsOwned, 1, 3
text ""
cont "kinds of #MON!"
para "You need @"
TX_NUM hOaksAideRequirement, 1, 3
text " kinds"
line "if you want the"
cont "@"
TX_RAM wOaksAideRewardItemName
text "."
done
_OaksAideComeBackText::
text "Oh. I see."
para "When you get @"
TX_NUM hOaksAideRequirement, 1, 3
text ""
line "kinds, come back"
cont "for @"
TX_RAM wOaksAideRewardItemName
text "."
done
_OaksAideHereYouGoText::
text "Great! You have"
line "caught @"
TX_NUM hOaksAideNumMonsOwned, 1, 3
text " kinds "
cont "of #MON!"
cont "Congratulations!"
para "Here you go!"
prompt
_OaksAideGotItemText::
text "<PLAYER> got the"
line "@"
TX_RAM wOaksAideRewardItemName
text "!@@"
_OaksAideNoRoomText::
text "Oh! I see you"
line "don't have any"
cont "room for the"
cont "@"
TX_RAM wOaksAideRewardItemName
text "."
done
INCLUDE "text/maps/viridian_forest.asm"
INCLUDE "text/maps/mt_moon_1f.asm"
INCLUDE "text/maps/mt_moon_b1f.asm"
INCLUDE "text/maps/mt_moon_b2f.asm"
INCLUDE "text/maps/ss_anne_1.asm"
INCLUDE "text/maps/ss_anne_2.asm"
INCLUDE "text/maps/ss_anne_3.asm"
INCLUDE "text/maps/ss_anne_5.asm"
INCLUDE "text/maps/ss_anne_6.asm"
INCLUDE "text/maps/ss_anne_7.asm"
INCLUDE "text/maps/ss_anne_8.asm"
INCLUDE "text/maps/ss_anne_9.asm"
INCLUDE "text/maps/ss_anne_10.asm"
INCLUDE "text/maps/victory_road_3f.asm"
INCLUDE "text/maps/rocket_hideout_b1f.asm"
INCLUDE "text/maps/rocket_hideout_b2f.asm"
INCLUDE "text/maps/rocket_hideout_b3f.asm"
INCLUDE "text/maps/rocket_hideout_b4f.asm"
INCLUDE "text/maps/rocket_hideout_elevator.asm"
INCLUDE "text/maps/silph_co_2f.asm"
INCLUDE "text/maps/silph_co_3f.asm"
INCLUDE "text/maps/silph_co_4f.asm"
INCLUDE "text/maps/silph_co_5f_1.asm"
SECTION "Text 2", ROMX, BANK[TEXT_2]
INCLUDE "text/maps/silph_co_5f_2.asm"
INCLUDE "text/maps/silph_co_6f.asm"
INCLUDE "text/maps/silph_co_7f.asm"
INCLUDE "text/maps/silph_co_8f.asm"
INCLUDE "text/maps/silph_co_9f.asm"
INCLUDE "text/maps/silph_co_10f.asm"
INCLUDE "text/maps/silph_co_11f.asm"
INCLUDE "text/maps/mansion_2f.asm"
INCLUDE "text/maps/mansion_3f.asm"
INCLUDE "text/maps/mansion_b1f.asm"
INCLUDE "text/maps/safari_zone_east.asm"
INCLUDE "text/maps/safari_zone_north.asm"
INCLUDE "text/maps/safari_zone_west.asm"
INCLUDE "text/maps/safari_zone_center.asm"
INCLUDE "text/maps/safari_zone_rest_house_1.asm"
INCLUDE "text/maps/safari_zone_secret_house.asm"
INCLUDE "text/maps/safari_zone_rest_house_2.asm"
INCLUDE "text/maps/safari_zone_rest_house_3.asm"
INCLUDE "text/maps/safari_zone_rest_house_4.asm"
INCLUDE "text/maps/unknown_dungeon_b1f.asm"
INCLUDE "text/maps/victory_road_1f.asm"
INCLUDE "text/maps/lance.asm"
INCLUDE "text/maps/hall_of_fame.asm"
INCLUDE "text/maps/champion.asm"
INCLUDE "text/maps/lorelei.asm"
INCLUDE "text/maps/bruno.asm"
INCLUDE "text/maps/agatha.asm"
INCLUDE "text/maps/rock_tunnel_b2f_1.asm"
SECTION "Text 3", ROMX, BANK[TEXT_3]
INCLUDE "text/maps/rock_tunnel_b2f_2.asm"
INCLUDE "text/maps/seafoam_islands_b4f.asm"
_AIBattleWithdrawText::
TX_RAM wTrainerName
text " with-"
line "drew @"
TX_RAM wEnemyMonNick
text "!"
prompt
_AIBattleUseItemText::
TX_RAM wTrainerName
text ""
line "used @"
TX_RAM wcd6d
text ""
cont "on @"
TX_RAM wEnemyMonNick
text "!"
prompt
_TradeWentToText::
TX_RAM wcf4b
text " went"
line "to @"
TX_RAM wGrassRate
text "."
done
_TradeForText::
text "For <PLAYER>'s"
line "@"
TX_RAM wcf4b
text ","
done
_TradeSendsText::
TX_RAM wGrassRate
text " sends"
line "@"
TX_RAM wcd6d
text "."
done
_TradeWavesFarewellText::
TX_RAM wGrassRate
text " waves"
line "farewell as"
done
_TradeTransferredText::
TX_RAM wcd6d
text " is"
line "transferred."
done
_TradeTakeCareText::
text "Take good care of"
line "@"
TX_RAM wcd6d
text "."
done
_TradeWillTradeText::
TX_RAM wGrassRate
text " will"
line "trade @"
TX_RAM wcd6d
text ""
done
_TradeforText::
text "for <PLAYER>'s"
line "@"
TX_RAM wcf4b
text "."
done
_PlaySlotMachineText::
text "A slot machine!"
line "Want to play?"
done
_OutOfCoinsSlotMachineText::
text "Darn!"
line "Ran out of coins!"
done
_BetHowManySlotMachineText::
text "Bet how many"
line "coins?"
done
_StartSlotMachineText::
text "Start!"
done
_NotEnoughCoinsSlotMachineText::
text "Not enough"
line "coins!"
prompt
_OneMoreGoSlotMachineText::
text "One more "
line "go?"
done
_LinedUpText::
text " lined up!"
line "Scored @"
TX_RAM wcf4b
text " coins!"
done
_NotThisTimeText::
text "Not this time!"
prompt
_YeahText::
text "Yeah!@@"
_DexSeenOwnedText::
text "#DEX Seen:@"
TX_NUM wDexRatingNumMonsSeen, 1, 3
text ""
line " Owned:@"
TX_NUM wDexRatingNumMonsOwned, 1, 3
db "@"
_DexRatingText::
text "#DEX Rating", $6d
done
_GymStatueText1::
TX_RAM wGymCityName
text ""
line "#MON GYM"
cont "LEADER: @"
TX_RAM wGymLeaderName
text ""
para "WINNING TRAINERS:"
line "<RIVAL>"
done
_GymStatueText2::
TX_RAM wGymCityName
text ""
line "#MON GYM"
cont "LEADER: @"
TX_RAM wGymLeaderName
text ""
para "WINNING TRAINERS:"
line "<RIVAL>"
cont "<PLAYER>"
done
_ViridianCityPokecenterGuyText::
text "#MON CENTERs"
line "heal your tired,"
cont "hurt or fainted"
cont "#MON!"
done
_PewterCityPokecenterGuyText::
text "Yawn!"
para "When JIGGLYPUFF"
line "sings, #MON"
cont "get drowsy..."
para "...Me too..."
line "Snore..."
done
_CeruleanPokecenterGuyText::
text "BILL has lots of"
line "#MON!"
para "He collects rare"
line "ones too!"
done
_LavenderPokecenterGuyText::
text "CUBONEs wear"
line "skulls, right?"
para "People will pay a"
line "lot for one!"
done
_MtMoonPokecenterBenchGuyText::
text "If you have too"
line "many #MON, you"
cont "should store them"
cont "via PC!"
done
_RockTunnelPokecenterGuyText::
text "I heard that"
line "GHOSTs haunt"
cont "LAVENDER TOWN!"
done
_UnusedBenchGuyText1::
text "I wish I could"
line "catch #MON."
done
_UnusedBenchGuyText2::
text "I'm tired from"
line "all the fun..."
done
_UnusedBenchGuyText3::
text "SILPH's manager"
line "is hiding in the"
cont "SAFARI ZONE."
done
_VermilionPokecenterGuyText::
text "It is true that a"
line "higher level"
cont "#MON will be"
cont "more powerful..."
para "But, all #MON"
line "will have weak"
cont "points against"
cont "specific types."
para "So, there is no"
line "universally"
cont "strong #MON."
done
_CeladonCityPokecenterGuyText::
text "If I had a BIKE,"
line "I would go to"
cont "CYCLING ROAD!"
done
_FuchsiaCityPokecenterGuyText::
text "If you're studying "
line "#MON, visit"
cont "the SAFARI ZONE."
para "It has all sorts"
line "of rare #MON."
done
_CinnabarPokecenterGuyText::
text "#MON can still"
line "learn techniques"
cont "after canceling"
cont "evolution."
para "Evolution can wait"
line "until new moves"
cont "have been learned."
done
_SaffronCityPokecenterGuyText1::
text "It would be great"
line "if the ELITE FOUR"
cont "came and stomped"
cont "TEAM ROCKET!"
done
_SaffronCityPokecenterGuyText2::
text "TEAM ROCKET took"
line "off! We can go"
cont "out safely again!"
cont "That's great!"
done
_CeladonCityHotelText::
text "My sis brought me"
line "on this vacation!"
done
_BookcaseText::
text "Crammed full of"
line "#MON books!"
done
_NewBicycleText::
text "A shiny new"
line "BICYCLE!"
done
_PushStartText::
text "Push START to"
line "open the MENU!"
done
_SaveOptionText::
text "The SAVE option is"
line "on the MENU"
cont "screen."
done
_StrengthsAndWeaknessesText::
text "All #MON types"
line "have strong and"
cont "weak points"
cont "against others."
done
_TimesUpText::
text "PA: Ding-dong!"
para "Time's up!"
prompt
_GameOverText::
text "PA: Your SAFARI"
line "GAME is over!"
done
_CinnabarGymQuizIntroText::
text "#MON Quiz!"
para "Get it right and"
line "the door opens to"
cont "the next room!"
para "Get it wrong and"
line "face a trainer!"
para "If you want to"
line "conserve your"
cont "#MON for the"
cont "GYM LEADER..."
para "Then get it right!"
line "Here we go!"
prompt
_CinnabarQuizQuestionsText1::
text "CATERPIE evolves"
line "into BUTTERFREE?"
done
_CinnabarQuizQuestionsText2::
text "There are 9"
line "certified #MON"
cont "LEAGUE BADGEs?"
done
_CinnabarQuizQuestionsText3::
text "POLIWAG evolves 3"
line "times?"
done
_CinnabarQuizQuestionsText4::
text "Are thunder moves"
line "effective against"
cont "ground element-"
cont "type #MON?"
done
_CinnabarQuizQuestionsText5::
text "#MON of the"
line "same kind and"
cont "level are not"
cont "identical?"
done
_CinnabarQuizQuestionsText6::
text "TM28 contains"
line "TOMBSTONER?"
done
_CinnabarGymQuizCorrectText::
text "You're absolutely"
line "correct!"
para "Go on through!@@"
_CinnabarGymQuizIncorrectText::
text "Sorry! Bad call!"
prompt
_MagazinesText::
text "#MON magazines!"
para "#MON notebooks!"
para "#MON graphs!"
done
_BillsHouseMonitorText::
text "TELEPORTER is"
line "displayed on the"
cont "PC monitor."
done
_BillsHouseInitiatedText::
text "<PLAYER> initiated"
line "TELEPORTER's Cell"
cont "Separator!@@"
_BillsHousePokemonListText1::
text "BILL's favorite"
line "#MON list!"
prompt
_BillsHousePokemonListText2::
text "Which #MON do"
line "you want to see?"
done
_OakLabEmailText::
text "There's an e-mail"
line "message here!"
para "..."
para "Calling all"
line "#MON trainers!"
para "The elite trainers"
line "of #MON LEAGUE"
cont "are ready to take"
cont "on all comers!"
para "Bring your best"
line "#MON and see"
cont "how you rate as a"
cont "trainer!"
para "#MON LEAGUE HQ"
line "INDIGO PLATEAU"
para "PS: PROF.OAK,"
line "please visit us!"
cont "..."
done
_GameCornerCoinCaseText::
text "A COIN CASE is"
line "required!"
done
_GameCornerNoCoinsText::
text "You don't have"
line "any coins!"
done
_GameCornerOutOfOrderText::
text "OUT OF ORDER"
line "This is broken."
done
_GameCornerOutToLunchText::
text "OUT TO LUNCH"
line "This is reserved."
done
_GameCornerSomeonesKeysText::
text "Someone's keys!"
line "They'll be back."
done
_JustAMomentText::
text "Just a moment."
done
TMNotebookText::
text "It's a pamphlet"
line "on TMs."
para "..."
para "There are 50 TMs"
line "in all."
para "There are also 5"
line "HMs that can be"
cont "used repeatedly."
para "SILPH CO.@@"
_TurnPageText::
text "Turn the page?"
done
_ViridianSchoolNotebookText5::
text "GIRL: Hey! Don't"
line "look at my notes!@@"
_ViridianSchoolNotebookText1::
text "Looked at the"
line "notebook!"
para "First page..."
para "# BALLs are"
line "used to catch"
cont "#MON."
para "Up to 6 #MON"
line "can be carried."
para "People who raise"
line "and make #MON"
cont "fight are called"
cont "#MON trainers."
prompt
_ViridianSchoolNotebookText2::
text "Second page..."
para "A healthy #MON"
line "may be hard to"
cont "catch, so weaken"
cont "it first!"
para "Poison, burns and"
line "other damage are"
cont "effective!"
prompt
_ViridianSchoolNotebookText3::
text "Third page..."
para "#MON trainers"
line "seek others to"
cont "engage in #MON"
cont "fights."
para "Battles are"
line "constantly fought"
cont "at #MON GYMs."
prompt
_ViridianSchoolNotebookText4::
text "Fourth page..."
para "The goal for"
line "#MON trainers"
cont "is to beat the "
cont "top 8 #MON"
cont "GYM LEADERs."
para "Do so to earn the"
line "right to face..."
para "The ELITE FOUR of"
line "#MON LEAGUE!"
prompt
_EnemiesOnEverySideText::
text "Enemies on every"
line "side!"
done
_WhatGoesAroundComesAroundText::
text "What goes around"
line "comes around!"
done
_FightingDojoText::
text "FIGHTING DOJO"
done
_IndigoPlateauHQText::
text "INDIGO PLATEAU"
line "#MON LEAGUE HQ"
done
_RedBedroomSNESText::
text "<PLAYER> is"
line "playing the SNES!"
cont "...Okay!"
cont "It's time to go!"
done
_Route15UpstairsBinocularsText::
text "Looked into the"
line "binoculars..."
para "A large, shining"
line "bird is flying"
cont "toward the sea."
done
_AerodactylFossilText::
text "AERODACTYL Fossil"
line "A primitive and"
cont "rare #MON."
done
_KabutopsFossilText::
text "KABUTOPS Fossil"
line "A primitive and"
cont "rare #MON."
done
_LinkCableHelpText1::
text "TRAINER TIPS"
para "Using a Game Link"
line "Cable"
prompt
_LinkCableHelpText2::
text "Which heading do"
line "you want to read?"
done
_LinkCableInfoText1::
text "When you have"
line "linked your GAME"
cont "BOY with another"
cont "GAME BOY, talk to"
cont "the attendant on"
cont "the right in any"
cont "#MON CENTER."
prompt
_LinkCableInfoText2::
text "COLOSSEUM lets"
line "you play against"
cont "a friend."
prompt
_LinkCableInfoText3::
text "TRADE CENTER is"
line "used for trading"
cont "#MON."
prompt
_ViridianSchoolBlackboardText1::
text "The blackboard"
line "describes #MON"
cont "STATUS changes"
cont "during battles."
prompt
_ViridianSchoolBlackboardText2::
text "Which heading do"
line "you want to read?"
done
_ViridianBlackboardSleepText::
text "A #MON can't"
line "attack if it's"
cont "asleep!"
para "#MON will stay"
line "asleep even after"
cont "battles."
para "Use AWAKENING to"
line "wake them up!"
prompt
_ViridianBlackboardPoisonText::
text "When poisoned, a"
line "#MON's health"
cont "steadily drops."
para "Poison lingers"
line "after battles."
para "Use an ANTIDOTE"
line "to cure poison!"
prompt
_ViridianBlackboardPrlzText::
text "Paralysis could"
line "make #MON"
cont "moves misfire!"
para "Paralysis remains"
line "after battles."
para "Use PARLYZ HEAL"
line "for treatment!"
prompt
_ViridianBlackboardBurnText::
text "A burn reduces"
line "power and speed."
cont "It also causes"
cont "ongoing damage."
para "Burns remain"
line "after battles."
para "Use BURN HEAL to"
line "cure a burn!"
prompt
_ViridianBlackboardFrozenText::
text "If frozen, a"
line "#MON becomes"
cont "totally immobile!"
para "It stays frozen"
line "even after the"
cont "battle ends."
para "Use ICE HEAL to"
line "thaw out #MON!"
prompt
_VermilionGymTrashText::
text "Nope, there's"
line "only trash here."
done
_VermilionGymTrashSuccessText1::
text "Hey! There's a"
line "switch under the"
cont "trash!"
cont "Turn it on!"
para "The 1st electric"
line "lock opened!@@"
_VermilionGymTrashSuccessText2::
text "Hey! There's"
line "another switch"
cont "under the trash!"
cont "Turn it on!"
prompt
_VermilionGymTrashSuccessText3::
text "The 2nd electric"
line "lock opened!"
para "The motorized door"
line "opened!@@"
_VermilionGymTrashFailText::
text "Nope! There's"
line "only trash here."
cont "Hey! The electric"
cont "locks were reset!@@"
_FoundHiddenItemText::
text "<PLAYER> found"
line "@"
TX_RAM wcd6d
text "!@@"
_HiddenItemBagFullText::
text "But, <PLAYER> has"
line "no more room for"
cont "other items!"
done
_FoundHiddenCoinsText::
text "<PLAYER> found"
line "@"
TX_BCD hCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
text " coins!@@"
_FoundHiddenCoins2Text::
text "<PLAYER> found"
line "@"
TX_BCD hCoins, 2 | LEADING_ZEROES | LEFT_ALIGN
text " coins!@@"
_DroppedHiddenCoinsText::
text ""
para "Oops! Dropped"