forked from ShaffySwitcher/RhythmHeavenSilver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script_fix_backup.txt
18879 lines (18873 loc) · 449 KB
/
script_fix_backup.txt
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
// Rhythm Tengoku script for Atlas
// Compiled by pelrun in 2008
// Edited by Spikeman 12/29/2010
// More edits by W hat and SirNiko 08/2012
// More (and more) edits by Shaffy and Tickflow in 2019
// [; is end of text and [l is a line break. sjis_2.tbl lists all supported characters and, at the end, formatting codes.
// Line breaks don't always work. End-of-game comments, for example, don't support them.
// [[ is a quick and great way to announce that something needs to be fixed, or looked at later. Ctrl-f for [[ to see existing examples.
// Translators:
// Dirtie, S3v3nx3, BRPXQZME, Iq 132, 4ppleseed, Samutz, DarthNemesis, pelrun, Shaffy, Tickflow
//
#VAR(tbl, TABLE)
#ADDTBL("sjis_2.tbl", tbl)
#ACTIVETBL(tbl)
//
// Pointers for GBA are linear 32bit starting at $8000000
// (this used to have another zero, which might have broke it)
#VAR(RtPtr, CUSTOMPOINTER)
#CREATEPTR(RtPtr, "LINEAR", $-8000000, 32)
//
// Put all the text in the blank space at the end of the rom
#JMP($D20600)
#WRITE(RtPtr, $10678)
// 0x804f384
// リズム資料室からお知らせ[;
// --- Literal
//[l
//Notification from the Rhythm Reference Room[;
// --- Edited
Notification from the Rhythm Reference Room[;
#WRITE(RtPtr, $1067C)
// 0x804f3a0
// を入荷しました。[;
// --- Literal
// You have received _______ [;
// --- Edited
You have received _______[;
#WRITE(RtPtr, $10680)
// 0x804f3dc
//「 [;
// --- Literal
//[l
//“[;
// --- Edited
“[;
#WRITE(RtPtr, $10684)
// 0x804f3e4
// 」[;
// --- Literal
//[l
//”[;
// --- Edited
”[;
//Lines 55 - 1385 were Cafe. Engrish and unformatted text gets confusing.
//start cafe
#WRITE(RtPtr, $9CD2F8)
// 0x804f3ec
//[l
//[l
//では また。[l
//[l
//[;
// --- Literal
//[l
//See you again.[;
// --- Edited
[l
[l
See you later.[l
[l
[;
#WRITE(RtPtr, $9CD2F4)
// 0x804f400
//[l
//いま ちょっと しこみ中なので[l
//また あとで きてくださいね。[l
//[l
//[;
// --- Literal
//[l
//I'm still preparing, so please come again later.[;
// --- Edited
[l
I'm still unpacking boxes, so[l
please come back in a bit.[l
[l
[;
#WRITE(RtPtr, $9CD2F0)
// 0x804f444
//[l
//わたしに できることが あれば、[l
//<style=gold><linestyle=5>ちからに なりますよ<style=4(normal)><linestyle=8>。[l
//[l
//[;
// --- Literal
//[l
//If there's anything I can do, I'll lend you my power.[;
// --- Edited
[l
I'm pretty good at Rhythm Games.[l
If you need help, <color=pink>come to the Cafe.[l
[l
[;
#WRITE(RtPtr, $9CD2EC)
// 0x804f488
//[l
//ここは いわゆる キッサ店です。[l
//ゲームが <style=gold><linestyle=5>うまくできないとき<style=4(normal)><linestyle=8>や[l
//つかれたときにでも おいで下さい。[;
// --- Literal
//[l
//This is the so-called coffee shop.[l
//When you can't do well at games,[l
//or when you're worn out, please drop by.[;
// --- Edited
This is the Cafe.[l
<color=pink>When you can't finish a game, [l
or when you just want a break,[l
please come here and relax.[;
//[[ comment out these lines and use the pointers elsewhere to test other lines in the “welcome” slot
#WRITE(RtPtr, $131EA8)
#WRITE(RtPtr, $9CD2E8)
// 0x804f4f4
//[l
//いらっしゃいませ。[l
//こちらに 来たのは はじめてですね?[l
//[l
//[;
// --- Literal
//[l
//Welcome. [l
//This is your first time here, isn't it?[;
// --- Edited
[l
Welcome. This is your[l
first time here, isn't it?[l
[l
[;
#WRITE(RtPtr, $9CD300)
// 0x804f530
//[l
//[l
//しばらく してから きてね■。[l
//[l
//[;
// --- Literal
//[l
//Come back a in while![;
// --- Edited
[l
[l
Come back in a while![l
[l
[;
#WRITE(RtPtr, $9CD310)
// 0x804f554
//[l
//あまり ムキに ならずに[l
//楽しんで下さいね…[l
//[l
//[;
// --- Literal
//[l
//Without getting too serious about it,[l
//please enjoy yourself....[;
// --- Edited
[l
Don't let it frustrate you.[l
You're supposed to enjoy yourself.[l
[l
[;
#WRITE(RtPtr, $9CD30C)
// 0x804f584
//[l
//それと同時に 音楽に ノるのが[l
//楽しくなるとも思うんです。[l
//[l
//[;
// --- Literal
//[l
//At the same time as that, taking/joining in the music[l
//will be fun, I think.[;
// --- Edited
[l
Just keep moving to the music, [l
and you'll have fun doing it, too.[l
[l
[;
#WRITE(RtPtr, $9CD308)
// 0x804f5c4
//[l
//なんどか やるうちに コツが[l
//つかめると 思いますよ。[l
//[l
//[;
// --- Literal
//[l
//I think you'll get the hang of it after a few tries, you know.[;
// --- Edited
[l
You know, after a few tries[l
I think you'll manage that superb.[l
[l
[;
#WRITE(RtPtr, $9CD31C)
// 0x804f600
//[l
//パーフェクト がんばってくださいね。[l
//ではまた。[l
//[l
//[;
// --- Literal
//[l
//Please do your best for those Perfects. [l
//See you again.[;
// --- Edited
[l
Please try your best[l
for those Perfects.[l
See you soon![l
[;
#WRITE(RtPtr, $9CD318)
// 0x804f634
//[l
//大きい声をだして すみません。[l
//なんだか うれしかったものですから…[l
//[l
//[;
// --- Literal
//[l
//Sorry for yelling.[l
//It was because I was somewhat happy....[;
// --- Edited
[l
Sorry for yelling. I just got[l
a little too excited there.[l
[l
[;
#WRITE(RtPtr, $9CD328)
// 0x804f67c
//[l
//ゲーム 楽しんでくださいね。[l
//ではまた。[l
//[l
//[;
// --- Literal
//[l
//Please enjoy the game.[l
//See you again.[;
// --- Edited
[l
Please enjoy the[l
game. See you![l
[l
[;
#WRITE(RtPtr, $9CD324)
// 0x804f6a8
//[l
//そうですか。[l
//ウワサ話なんて してしまい[l
//しつれいしました。[;
// --- Literal
//[l
//Is that right?[l
//For the gossip that has been done[l
//please excuse me.[;
// --- Edited
//Was he the one telling gossip? Or did he just hear it? [[
[l
Is that right? Loose lips can sink[l
friendships... please forgive me.[l
[l
[;
//all perfects complete
#WRITE(RtPtr, $9CD338)
// 0x804f764
//[l
//そうそう、[l
//お祝いに ささやかでは ありますが[l
//スタジオの曲をふやしておきました。[l
//[;
// --- Literal
//[l
//Yes, yes,[l
//in celebration, although it's not much,[l
//I've increased the number of studio songs.[;
// --- Edited
[l
Well, in celebration I've added[l
more songs to the studio.[l
[l
[;
#WRITE(RtPtr, $9CD33C)
// 0x804f720
//[l
//いやいや、しかし なんと まぁ[l
//コンプリートですか。[l
//やりますな■。[;
// --- Literal
//[l
//Well well, wow,[l
//complete, is it?[l
//Not bad.[;
// --- Edited
//Complete all perfects? Or just one? [[
[l
Wow. It looks like you've[l
mastered the game. Not bad.[l
[l
[;
#WRITE(RtPtr, $9CD340)
// 0x804f6e4
//[l
//おつかれでしょう?[l
//少し 休んでくださいネ。[l
//では また。[;
// --- Literal
//[l
//Had enough, I suppose?[l
//Please get some rest.[l
//See you again.[;
// --- Edited
[l
Had enough, I suppose? Go[l
get some rest. I'll be waiting.[l
[l
[;
// [[a small number of the existing localized translations (from 2010 or 2008) fit with my style, so I made minor edits to them and kept them in the script. But most of this is new material. (Note to self: remember to mention this in the credits.) - W hat, 01/2013 // also please be aware that SirNiko did most of these localizations.
#WRITE(RtPtr, $9CD334)
// 0x804f7b8
//[l
//なんだか 私も、すっごく[l
//うれしくって ウルウルです…[l
//[l
//[;
// --- Literal
//Somehow, I, too, am terribly[l
//happy and ''uru-uru''....[;
// --- Edited
[l
Oh, I'm so happy I think[l
I might just start to cry.[l
[l
[;
#WRITE(RtPtr, $9CD330)
// 0x804f7f4
//[l
//もう、そこまで やりこんだら[l
//リズム感 かなり 良くなって[l
//いるでしょうネ![;
// --- Literal
//Already, if it's gone in to that extent,[l
//the rhythm sense has considerably gotten good, hasn't it![;
// --- Edited
[l
You must have excellent rhythm[l
sense to have gotten this far.[l
[l
[;
#WRITE(RtPtr, $9CD358)
// 0x804f840
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//アンビリーバボー!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Unbelievable!![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Unbelievable!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD354)
// 0x804f868
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//グッド ジョブ!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Good Job!![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Good Job!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD350)
// 0x804f88c
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//おめでとー!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Congratulations!![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Congratulations!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD34C)
// 0x804f8ac
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//やるじゃなーい!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//[l
//You're pretty good!![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
You're good!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD348)
// 0x804f8d0
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//すごいじゃなーい!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Not too bad!![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Not too bad!!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $F305C)
#WRITE(RtPtr, $193674)
#WRITE(RtPtr, $397CF0)
#WRITE(RtPtr, $9CD36C)
// 0x804f8f8
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//感動したー!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//[l
//I was moved![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
I was moved!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD368)
// 0x804f918
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//グッド ラック!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Good Luck![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Good Luck!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD364)
// 0x804f93c
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//イケイケー!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Go! Go![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Go! Go!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD360)
// 0x804f95c
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//ファイトー!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Fight![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Fight!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD35C)
// 0x804f97c
//<size=large><linesize=large><style=gold><linestyle=5>[l
//[l
//がんばれー!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
// --- Literal
//Go for it![;
// --- Edited
<size=large><linesize=large><style=gold><linestyle=5>[l
[l
Go for it!<size=small><linesize=small><style=4(normal)><linestyle=8>[;
#WRITE(RtPtr, $9CD3AC)
// 0x804fc0c
//[l
//ま、ぼちぼち やっていきましょうネ。[l
//では また。[l
//[l
//[;
// --- Literal
//Well, let's do it bit by bit, yes?[l
//See you again.[;
// --- Edited
[l
Well, nothing we can do but practice.[l
Take care for now.[l
[l
[;
#WRITE(RtPtr, $9CD3A8)
// 0x804fc44
//[l
//空白を カウントするってのは[l
//ムズいもんですね■。[l
//[l
//[;
// --- Literal
//Counting empty beats[l
//is hard, isn't it?[;
// --- Edited
[l
Counting to yourself is hard, isn't it?[l
I always go too fast or lose my place.[l
[l
[;
#WRITE(RtPtr, $9CD3A4)
// 0x804fc7c
//[l
//なかなか どうして 2つめのテストが うまく できないんですヨ。[l
//[l
//[;
// --- Literal
//Quite how the second test isn't going so well, you know.[;
// --- Edited
[l
I always have trouble with[l
the rests in the second test.[l
[l
[;
#WRITE(RtPtr, $9CD3A0)
// 0x804fcc0
//[l
//私も ときどき やるんですけど[l
//65点くらいが 限界なんですよねぇ…[l
//[l
//[;
// --- Literal
//I do it too sometimes, but[l
//it seems that about 65 points is the limit for me....[;
// --- Edited
[l
I just tried it again yesterday, but[l
65 points seems to be my limit...[l
[l
[;
#WRITE(RtPtr, $9CD39C)
// 0x804fd08
//[l
//それはそうと、[l
//最近 「リズム感測定」してます?[l
//[l
//[;
// --- Literal
//By the way,[l
//have you been doing “Rhythm Sense Measurement” lately?[;
// --- Edited
[l
Say, when was the last time you[l
checked your “Rhythm Test” score?[l
[l
[;
#WRITE(RtPtr, $9CD400)
// 0x80500c0
//[l
//お客さんは 人間ですよね?[l
//まぁ、私は 犬ですが これからも[l
//なかよくしてくださいネ■。[;
// --- Literal
//[l
//Guest, you're a human, right?[l
//Well, I'm a dog, but from now on,[l
//let's please get along.[;
// --- Edited
[l
Hey, you're a human, right?[l
Well, despite our species I still[l
hope that we can get along.[l
[;
#WRITE(RtPtr, $9CD3FC)
// 0x8050118
//[l
//いやはや、このトシになると[l
//時がたつのが はやいですねぇ。[l
//[l
//[;
// --- Literal
//Dear me, if you're this age[l
//time's pace is fast.[;
// --- Edited
[l
When you get to be my age,[l
time really does seem to fly.[l
[l
[;
#WRITE(RtPtr, $9CD3F8)
// 0x8050158
//[l
//かれこれ 9才で もう けっこう[l
//いいトシなんです。[l
//[l
//[;
// --- Literal
//In any case, I'm 9 years old, and at a pretty good age.[;
// --- Edited
[l
I'm not one of those young pups,[l
either. I'm nine years old.[l
[l
[;
#WRITE(RtPtr, $9CD3F4)
// 0x8050190
//[l
//それはそうと、[l
//実は 私 犬なんですヨ。[l
//[l
//[;
// --- Literal
//By the way,[l
//I'm actually a dog, you know.[;
// --- Edited
[l
By the way, if you hadn't[l
noticed, I'm actually a dog.[l
[l
[;
#WRITE(RtPtr, $9CD414)
// 0x80501bc
//[l
//まぁ、私には 詳しい理屈なんて[l
//わからないですけどネ。ははは。[l
//[l
//[;
// --- Literal
//Well, to me, what an accurate theory[l
//I don't understand, though. Ha ha ha![;
// --- Edited
[l
Just don't think that good[l
rhythm makes you qualified[l
to be a doctor, ha ha ha.[l
[;
#WRITE(RtPtr, $771C8)
#WRITE(RtPtr, $BD6D8)
#WRITE(RtPtr, $D187C)
#WRITE(RtPtr, $D49EC)
#WRITE(RtPtr, $E66D0)
#WRITE(RtPtr, $148C34)
#WRITE(RtPtr, $1AE1C8)
#WRITE(RtPtr, $1B7C04)
#WRITE(RtPtr, $1DA088)
#WRITE(RtPtr, $20190C)
#WRITE(RtPtr, $20272C)
#WRITE(RtPtr, $2163E0)
#WRITE(RtPtr, $29B210)
#WRITE(RtPtr, $29C0F0)
#WRITE(RtPtr, $2D4B58)
#WRITE(RtPtr, $2DB53C)
#WRITE(RtPtr, $38DAD8)
#WRITE(RtPtr, $38EBB8)
#WRITE(RtPtr, $391BD0)
#WRITE(RtPtr, $3BAAC4)
#WRITE(RtPtr, $455B78)
#WRITE(RtPtr, $4ADFB4)
#WRITE(RtPtr, $4DFCDC)
#WRITE(RtPtr, $4F4800)
#WRITE(RtPtr, $5E872C)
#WRITE(RtPtr, $61D2CC)
#WRITE(RtPtr, $634D7C)
#WRITE(RtPtr, $641144)
#WRITE(RtPtr, $6703A0)
#WRITE(RtPtr, $67CBFC)
#WRITE(RtPtr, $6DC254)
#WRITE(RtPtr, $6E24D4)
#WRITE(RtPtr, $6F7690)
#WRITE(RtPtr, $70A9A0)
#WRITE(RtPtr, $7AE03C)
#WRITE(RtPtr, $7DA178)
#WRITE(RtPtr, $809E44)
#WRITE(RtPtr, $8161F8)
#WRITE(RtPtr, $83781C)
#WRITE(RtPtr, $848F4C)
#WRITE(RtPtr, $873714)
#WRITE(RtPtr, $9CD410)
// 0x8050200
//[l
//音楽って フシギですよね■。[l
//どうして あんなにも 心を[l
//ゆさぶるんでしょうね。[;
// --- Literal
//Music is strange, isn't it?[l
//How, in that way,[l
//do you suppose it swings the heart?[;
// --- Edited
[l
Music is strange, isn't it?[l
It has this mysterious[l
power to heal the heart.[l
[;
#WRITE(RtPtr, $9CD40C)
// 0x8050250
//[l
//けっこう古いレコードなんかを 出してきて 当時を 思い出したりすると、ホッとするんです。[;
// --- Literal
//Taking out something like a good old record and thinking about those days makes me feel relieved.[;
// --- Edited
[l
Taking out a good old record and[l
reminiscing about the past[l
always makes me feel better.[l
[;
#WRITE(RtPtr, $9CD408)
// 0x80502ac
//[l
//それはそうと、悲しいときって[l
//どうしてますか?[l
//私は もっぱら 音楽を ききますねぇ。[;
// --- Literal
//By the way, when you're sad,[l
//what do you do?[l
//I always listen to music.[;
// --- Edited
[l
By the way, what do[l
you do when you're sad?[l
I always listen to music.[l
[;
#WRITE(RtPtr, $128C90)
#WRITE(RtPtr, $13BCD0)
#WRITE(RtPtr, $1C8804)
#WRITE(RtPtr, $1CBCB0)
#WRITE(RtPtr, $2E9C5C)
#WRITE(RtPtr, $632D44)
#WRITE(RtPtr, $8979C0)
#WRITE(RtPtr, $9CD42C)
// [[ the following line is probably unrelated to this string and was accidentally included in a search of the pointer 04 03 05 08.
//#WRITE(RtPtr, $CEA094)
// The preceding line breaks Tap Trial and is probably unneeded for anything.
// 0x8050304
//[l
//でも もし、ドラムで 選挙演説とか[l
//ボンゴで 夫婦ゲンカとかあったら[l
//やかましそうですネ。ははは。[;
// --- Literal
//But then, if we made election speeches with drums[l
//or had couple-fights with bongos and such[l
//it would be noisy, don't you think? Ha ha ha![;
// --- Edited
Then again, if we gave speeches[l
with bongos or the neighbors[l
argued with trumpets, it'd get[l
noisy, don't you think? Ha ha ha.[l
[;
#WRITE(RtPtr, $9CD428)
// 0x8050368
//[l
//このまえ いらっしゃった お客さんが[l
//教えてくれたんですけど、ちょっと[l
//面白そうじゃないですか?[;
// --- Literal
//I learned it from the previous customer, but[l
//doesn't it sound a little fun?[;
// --- Edited
[l
I learned it from another[l
customer, and now I want[l
to try it for myself.[l
[;
#WRITE(RtPtr, $9CD424)
// 0x80503c8
//[l
//タイコの大きな音で リズムをきざんで[l
//はなれた人と コミュニケーションを[l
//とるらしいんですヨ。[;
// --- Literal
//Carving a rhythm with a big sound from a taiko,[l
//it seems communication with far-away people can be done, you know.[;
// --- Edited
For example... you could play[l
a drum beat to ask “How are[l
you?” or say “Please come[l
visit!” even from far away.[l
[;
#WRITE(RtPtr, $9CD420)
// 0x8050428
//[l
//リズムパターンに 言葉や 意味を 対応させて、会話をするんだそうです。[l
//[l
//[;
// --- Literal
//By attaching things like words and meanings to rhythm patterns, I hear you can have a conversation.[;
// --- Edited
[l
By attaching words and meanings[l
to certain beats, you can have a[l
conversation without speaking.[l
[;
#WRITE(RtPtr, $9CD41C)
// 0x8050474
//[l
//それはそうと、リズムで[l
//会話ができるって 知ってました?[l
//[l
//[;
// --- Literal
//[l
//By the way, did you know that you can have conversation through rhythm?[;
// --- Edited
[l
Say... did you know that you can[l
have a conversation with rhythm?[l
[l
[;
#WRITE(RtPtr, $9CD444)
// 0x80504b0
//[l
//ご存知でしたら つまらない話でしたネ。[l
//すみません。ではまた。[l
//[l
//[;
// --- Literal
//[l
//It's boring if you already knew that, isn't it.[l
//Sorry. See you again.[;
// --- Edited
[l
Oh... but if you already knew that,[l
I'm sorry if I bored you.[l
See you later.[l
[;
#WRITE(RtPtr, $9CD440)
// 0x80504f4
//[l
//メダルを 集めると いろいろな[l
//おまけが 遊べるようになるので[l
//がんばって 集めてくださいネ。[;
// --- Literal
//If you collect medals, you will be able to play with various prizes, so[l
//please do your best and collect them, yes?[;
// --- Edited
Collecting lots of medals will[l
unlock all sorts of prizes that[l
you can play with. Please do your[l
best to collect them all![;
#WRITE(RtPtr, $9CD43C)
// 0x8050554
//[l
//で、「ハイレベル」をとると[l
//メダルが もらえるんです。[l
//[l
//[;
// --- Literal
//And, if you get a “High Level”,[l
//you can get a medal.[;
// --- Edited
[l
If you get a “Superb”,[l
you'll even get a medal.[l
[l
[;
#WRITE(RtPtr, $9CD438)
// 0x8050590
//[l
//ゲームの成績は「やりなおし」「平凡」「ハイレベル」の3つが、あるんですヨ。[l
//[l
//[;
// --- Literal
//There are three game grades, you know: “Redo,” “Ordinary,” and “High Level.”[;
// --- Edited
[l
There are three grades, you know:[l
“Try again, ” “Okay” and “Superb”.[l
[l
[;
#WRITE(RtPtr, $9CD434)
// 0x80505e0
//[l
//それはそうと、ゲームで[l
//「ハイレベル」っていう成績を[l
//とったことありますか?[;
// --- Literal
//By the way, on a game,[l
//have you ever gotten a grade called “High Level”?[;
// --- Edited
[l
By the way, have you ever[l
gotten a “Superb” rating on a game?[l
[l
[;
#WRITE(RtPtr, $10D04)
// 0x805062c
//[l
//お、きたきた![l
//待ってたヨ■!![l
//[l
//[;
// --- Literal
//Oh! You're here, you're here![l
//I've been waiting, you know!![;
// --- Edited
[l
Oh! You're here, you're here![l
I've been waiting, you know!![l
[l
[;
#WRITE(RtPtr, $10D3C)
// 0x8050650
//[l
//ゲーム すすんでますか?[l
//がんばって くださいね■。[l
//[l
//[;
// --- Literal
//Are the games progressing?[l
//Please do your best![;
// --- Edited [[This is Engrishy
[l
Are you making progress?[l
Please do your best![l
[l
[;
#WRITE(RtPtr, $10D44)
// 0x8050688
//[l
//だいぶ つかれたのでは ないですか?[l
//ときどき 休んだほうが よいですよ。[l
//[l
//[;
// --- Literal
//Aren't you fairly tired?[l
//You'd better rest once in a while.[;
// --- Edited
[l
Aren't you getting tired?[l
Don't forget to rest now and then.[l
[l
[;
#WRITE(RtPtr, $10D40)
// 0x80506d8
//[l
//かなり はまってますねぇ。[l
//すこしは 休んでくださいね。[l
//[l
//[;
// --- Literal
//You're really into it, aren't you?[l
//Please rest a little.[;
// --- Edited
[l
You've been at this a while, haven't[l
you? Please rest a little.[l
[l
[;
// 0x8050716
//[;
// --- Literal
//[;
// --- Edited
[;
#WRITE(RtPtr, $10EE4)
#WRITE(RtPtr, $10F50)
#WRITE(RtPtr, $10FB8)
#WRITE(RtPtr, $11020)
// 0x8050718
//[l
//[;
// --- Literal
//[;
// --- Edited
[l
[;
#WRITE(RtPtr, $10EE8)
// 0x805071c
//そうそう、[;
// --- Literal
//[l
//Right, right.[;
// --- Edited
Was that you on [;
#WRITE(RtPtr, $10EEC)
#WRITE(RtPtr, $10F58)
#WRITE(RtPtr, $10FC0)
#WRITE(RtPtr, $11028)
#WRITE(RtPtr, $11098)
// 0x8050728
//<style=gold><linestyle=5>[;
// --- Literal
//[;
// --- Edited
<style=gold><linestyle=5>[;
#WRITE(RtPtr, $10EF0)
#WRITE(RtPtr, $10F5C)
// 0x8050730
//<style=4(normal)><linestyle=8>で[l
//[;
// --- Literal
//and/at[;
// --- Edited
<style=4(normal)><linestyle=8> ?[l
[;
#WRITE(RtPtr, $10EF4)
// 0x8050738
//パーフェクト だしたんだって!?[;
// --- Literal
//I heard you got a Perfect!?[;