-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgr.json
3428 lines (3428 loc) · 108 KB
/
gr.json
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
{
"manifest": {
"langName": "Greek",
"langLogo": "none"
},
"dialogs": [
{
"ID": 0,
"linesPerBox": 6,
"leftOffset": 30,
"width": 200,
"lines": [
"Ουάου! Είσαι ακριβώς στη",
"μέση του πεδίου μάχης.",
"Θα βρεις τα Αστέρια",
"Δύναμης που έκλεψε ο",
"Μπάουζερ μέσα στους",
"κόσμους των πινάκων.",
"Αρχικά, μίλα με τον",
"Φίλο Μπομπ-Όμπα. (Πίεσε [B]",
"για να μιλήσεις.) Θα σε",
"βοηθήσει σίγουρα, και το",
"ίδιο και οι σύντροφοί του",
"σε άλλα μέρη.",
"Για να διαβάσεις πινακίδες,",
"πήγαινε μπροστά τους και",
"πίεσε [B]. Πίεσε [A]ή [B] για",
"να προχωρήσεις το κείμενο.",
"Μπορείς να μιλήσεις με άλλους",
"χαρακτήρες κοιτώντας τους και",
"πιέζοντας [B]."
]
},
{
"ID": 1,
"linesPerBox": 4,
"leftOffset": 95,
"width": 200,
"lines": [
"Πρόσεχε! Αν δεν κοιτάς",
"μπροστά σου, θα σε",
"χτυπήσει σίγουρα μια",
"βόμβα νερού!",
"Αυτές οι εχθρικές",
"Μπομπ-Όμπες λατρεύουν να",
"πολεμούν, και συνέχεια",
"ψάχνουν τρόπο να επιτεθούν.",
"Αυτή η πεδιάδα έχει γίνει",
"πεδίο μάχης από τότε που",
"ο Βασιλιάς Μπομπ-Όμπα πήρε",
"το Αστέρι Δύναμης",
"Μπορείς να πάρεις το",
"Αστέρι πίσω για εμάς; Πέρνα",
"τη γέφυρα και στρίψε αριστερά",
"στο μονοπάτι για να βρείς τον",
"Βασιλιά Μπομπ-Όμπα.",
"Σε παρακαλώ, ένα να με δεις",
"μόλις πάρεις πίσω το Αστέρι",
"Δύναμης!"
]
},
{
"ID": 2,
"linesPerBox": 4,
"leftOffset": 95,
"width": 200,
"lines": [
"Εσύ εδώ πέρα! Είναι επικίνδυνα",
"παραπέρα, γι' αυτό άκουσε",
"προσεκτικά τη συμβουλή μου,",
"αν θες το καλό σου.",
"Διάσχισε τις δύο",
"γέφυρες μπροστά, και πρόσεχε",
"τις βόμβες νερού που",
"πέφτουν συνέχεια.",
"Ο Βασιλιάς Μπόμπ-Όμπα στην",
"κορυφή του βουνού είναι",
"πολύ ισχυρός--μην τον",
"αφήσεις να σε πιάσει!",
"Είμαστε Φίλοι Μπομπ-Όμπες,",
"και είμαστε στο πλευρό σου.",
"Μπορείς να μας μιλήσεις",
"όποτε το επιθυμείς!"
]
},
{
"ID": 3,
"linesPerBox": 5,
"leftOffset": 95,
"width": 200,
"lines": [
"Σε ευχαριστώ, Μάριο! The Big",
"Bob-omb is nothing but a",
"big dud now! But the",
"battle for the castle has",
"just begun.",
"Other enemies are holding",
"the other Power Stars. If",
"you recover more Stars,",
"you can open new doors",
"that lead to new worlds!",
"My Bob-omb Buddies are",
"waiting for you. Be sure",
"to talk to them--they'll",
"set up cannons for you."
]
},
{
"ID": 4,
"linesPerBox": 3,
"leftOffset": 95,
"width": 200,
"lines": [
"We're peace-loving",
"Bob-ombs, so we don't use",
"cannons.",
"But if you'd like",
"to blast off, we don't",
"mind. Help yourself.",
"We'll prepare all of the",
"cannons in this course for",
"you to use. Bon Voyage!"
]
},
{
"ID": 5,
"linesPerBox": 3,
"leftOffset": 30,
"width": 200,
"lines": [
"Μάριο! Είναι αλήθεια πως",
"that you beat the Big",
"Bob-omb? Cool!",
"Πρέπει να είσαι δυνατός. Και",
"αρκετά γρήγορος. Οπότε, πόσο γρήγορος",
"είσαι, τέλος πάντων?",
"Αρκέτα γρήγορος να με νικήσε...",
"Koopa the Quick? Δεν το",
"νομίζω. Απλά δοκίμασε.",
"How about a race to the",
"mountaintop, where the",
"Big Bob-omb was?",
"Whaddya say? When I say",
"『Go,』 let the race begin!",
"",
"Ready....",
"",
"//Go!////Don't Go"
]
},
{
"ID": 6,
"linesPerBox": 3,
"leftOffset": 30,
"width": 200,
"lines": [
"Hey!!! Don't try to scam",
"ME.You've gotta run",
"the whole course.",
"Later. Look me up when",
"you want to race for",
"real."
]
},
{
"ID": 7,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"Hufff...fff...pufff...",
"Whoa! You...really...are...",
"fast! A human blur!",
"Here you go--you've won",
"it, fair and square!"
]
},
{
"ID": 8,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"BEWARE OF CHAIN CHOMP",
"Extreme Danger!",
"Get close and press [C]^",
"for a better look.",
"Scary, huh?",
"See the Red Coin on top",
"of the stake?",
"",
"When you collect eight of",
"them, a Power Star will",
"appear in the meadow",
"across the bridge."
]
},
{
"ID": 9,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"Long time, no see! Wow,",
"have you gotten fast!",
"Have you been training",
"on the sly, or is it the",
"power of the Stars?",
"I've been feeling down",
"about losing the last",
"race. This is my home",
"course--how about a",
"rematch?",
"The goal is in",
"Windswept Valley.",
"Ready?",
"",
"//Go//// Don't Go"
]
},
{
"ID": 10,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"You've stepped on the",
"Wing Cap Switch. Wearing",
"the Wing Cap, you can",
"soar through the sky.",
"Now Wing Caps will pop",
"out of all the red blocks",
"you find.",
"",
"Would you like to Save?",
"",
"//Yes////No"
]
},
{
"ID": 11,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"You've just stepped on",
"the Metal Cap Switch!",
"The Metal Cap makes",
"Mario invincible.",
"Now Metal Caps will",
"pop out of all of the",
"green blocks you find.",
"",
"Would you like to Save?",
"",
"//Yes////No"
]
},
{
"ID": 12,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"You've just stepped on",
"the Vanish Cap Switch.",
"The Vanish Cap makes",
"Mario disappear.",
"Now Vanish Caps will pop",
"from all of the blue",
"blocks you find.",
"",
"Would you like to Save?",
"",
"//Yes////No"
]
},
{
"ID": 13,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"You've collected 100",
"coins! Mario gains more",
"power from the castle.",
"Do you want to Save?",
"//Yes////No"
]
},
{
"ID": 14,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"Wow! Another Power Star!",
"Mario gains more courage",
"from the power of the",
"castle.",
"Do you want to Save?",
"",
"//You Bet//Not Now"
]
},
{
"ID": 15,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"You can punch enemies to",
"knock them down. Press [A]",
"to jump, [B] to punch.",
"Press [A] then [B] to Kick.",
"To pick something up,",
"press [B], too. To throw",
"something you're holding,",
"press [B] again."
]
},
{
"ID": 16,
"linesPerBox": 3,
"leftOffset": 30,
"width": 200,
"lines": [
"Hop on the shiny shell and",
"ride wherever you want to",
"go! Shred those enemies!"
]
},
{
"ID": 17,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"I'm the Big Bob-omb, lord",
"of all blasting matter,",
"king of ka-booms the",
"world over!",
"How dare you scale my",
"mountain? By what right",
"do you set foot on my",
"imperial mountaintop?",
"You may have eluded my",
"guards, but you'll never",
"escape my grasp...",
"",
"...and you'll never take",
"away my Power Star. I",
"hereby challenge you,",
"Mario!",
"If you want the Star I",
"hold, you must prove",
"yourself in battle.",
"",
"Can you pick me up from",
"the back and hurl me to",
"this royal turf? I think",
"that you cannot!"
]
},
{
"ID": 18,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"I'm sleeping because...",
"...I'm sleepy. I don't",
"like being disturbed.",
"Please walk quietly."
]
},
{
"ID": 19,
"linesPerBox": 2,
"leftOffset": 30,
"width": 200,
"lines": [
"Shhh! Please walk",
"quietly in the hallway!"
]
},
{
"ID": 20,
"linesPerBox": 6,
"leftOffset": 95,
"width": 150,
"lines": [
"Αγαπητέ Μάριο:",
"Please come to the",
"castle. I've baked",
"a cake for you.",
"Yours truly--",
"Princess Toadstool"
]
},
{
"ID": 21,
"linesPerBox": 5,
"leftOffset": 95,
"width": 200,
"lines": [
"Welcome.",
"No one's home!",
"Now scram--",
"and don't come back!",
"Gwa ha ha!"
]
},
{
"ID": 22,
"linesPerBox": 2,
"leftOffset": 95,
"width": 200,
"lines": [
"You need a key to open",
"this door."
]
},
{
"ID": 23,
"linesPerBox": 3,
"leftOffset": 95,
"width": 200,
"lines": [
"This key doesn't fit!",
"Maybe it's for the",
"basement..."
]
},
{
"ID": 24,
"linesPerBox": 5,
"leftOffset": 95,
"width": 200,
"lines": [
"You need Star power to",
"open this door. Recover a",
"Power Star from an enemy",
"inside one of the castle's",
"paintings."
]
},
{
"ID": 25,
"linesPerBox": 4,
"leftOffset": 95,
"width": 200,
"lines": [
"It takes the power of",
"3 Stars to open this",
"door. You need [%] more",
"Stars."
]
},
{
"ID": 26,
"linesPerBox": 4,
"leftOffset": 95,
"width": 200,
"lines": [
"It takes the power of",
"8 Stars to open this",
"door. You need [%] more",
"Stars."
]
},
{
"ID": 27,
"linesPerBox": 4,
"leftOffset": 95,
"width": 200,
"lines": [
"It takes the power of",
"30 Stars to open this",
"door. You need [%] more",
"Stars."
]
},
{
"ID": 28,
"linesPerBox": 4,
"leftOffset": 95,
"width": 200,
"lines": [
"It takes the power of",
"50 Stars to open this",
"door. You need [%] more",
"Stars."
]
},
{
"ID": 29,
"linesPerBox": 5,
"leftOffset": 95,
"width": 200,
"lines": [
"To open the door that",
"leads to the 『endless』",
"stairs, you need 70",
"Stars.",
"Bwa ha ha!"
]
},
{
"ID": 30,
"linesPerBox": 6,
"leftOffset": 30,
"width": 200,
"lines": [
"Hello! The Lakitu Bros.,",
"cutting in with a live",
"update on Mario's",
"progress. He's about to",
"learn a technique for",
"sneaking up on enemies.",
"The trick is this: He has",
"to walk very slowly in",
"order to walk quietly.",
"",
"",
"",
"And wrapping up filming",
"techniques reported on",
"earlier, you can take a",
"look around using [C]> and",
"[C]<. Press [C]| to view the",
"action from a distance.",
"When you can't move the",
"camera any farther, the",
"buzzer will sound. This is",
"the Lakitu Bros.,",
"signing off."
]
},
{
"ID": 31,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"No way! You beat me...",
"again!! And I just spent",
"my entire savings on",
"these new Koopa",
"Mach 1 Sprint shoes!",
"Here, I guess I have to",
"hand over this Star to",
"the winner of the race.",
"Congrats, Mario!"
]
},
{
"ID": 32,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"If you get the Wing Cap,",
"you can fly! Put the cap",
"on, then do a Triple",
"Jump--jump three times",
"in a row--to take off.",
"You can fly even higher",
"if you blast out of a",
"cannon wearing the",
"Wing Cap!",
"",
"Use the [C] Buttons to look",
"around while flying, and",
"press [Z] to land."
]
},
{
"ID": 33,
"linesPerBox": 6,
"leftOffset": 30,
"width": 200,
"lines": [
"Ciao! You've reached",
"Princess Toadstool's",
"castle via a warp pipe.",
"Using the controller is a",
"piece of cake. Press [A] to",
"jump and [B] to attack.",
"Press [B] to read signs,",
"too. Use the Control Stick",
"in the center of the",
"controller to move Mario",
"around. Now, head for",
"the castle."
]
},
{
"ID": 34,
"linesPerBox": 6,
"leftOffset": 30,
"width": 200,
"lines": [
"Good afternoon. The",
"Lakitu Bros., here,",
"reporting live from just",
"outside the Princess's",
"castle.",
"",
"Mario has just arrived",
"on the scene, and we'll",
"be filming the action live",
"as he enters the castle",
"and pursues the missing",
"Power Stars.",
"As seasoned cameramen,",
"we'll be shooting from the",
"recommended angle, but",
"you can change the",
"camera angle by pressing",
"the [C] Buttons.",
"If we can't adjust the",
"view any further, we'll",
"buzz. To take a look at",
"the surroundings, stop",
"and press [C]^.",
"",
"Press [A] to resume play.",
"Switch camera modes with",
"the [R] Button. Signs along",
"the way will review these",
"instructions.",
"",
"For now, reporting live,",
"this has been the",
"Lakitu Bros."
]
},
{
"ID": 35,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"There are four camera, or",
"『[C],』 Buttons. Press [C]^",
"to look around using the",
"Control Stick.",
"",
"You'll usually see Mario",
"through Lakitu's camera.",
"It is the camera",
"recommended for normal",
"play.",
"You can change angles by",
"pressing [C]>. If you press",
"[R], the view switches to",
"Mario's camera, which",
"is directly behind him.",
"Press [R] again to return",
"to Lakitu's camera. Press",
"[C]| to see Mario from",
"afar, using either",
"Lakitu's or Mario's view."
]
},
{
"ID": 36,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"OBSERVATION PLATFORM",
"Press [C]^ to take a look",
"around. Don't miss",
"anything!",
"",
"Press [R] to switch to",
"Mario's camera. It",
"always follows Mario.",
"Press [R] again to switch",
"to Lakitu's camera.",
"Pause the game and",
"switch the mode to 『fix』",
"the camera in place while",
"holding [R]. Give it a try!"
]
},
{
"ID": 37,
"linesPerBox": 2,
"leftOffset": 30,
"width": 200,
"lines": [
"I win! You lose!",
"Ha ha ha ha!",
"You're no slouch, but I'm",
"a better sledder!",
"Better luck next time!"
]
},
{
"ID": 38,
"linesPerBox": 3,
"leftOffset": 95,
"width": 200,
"lines": [
"Reacting to the Star",
"power, the door slowly",
"opens."
]
},
{
"ID": 39,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"No visitors allowed,",
"by decree of",
"the Big Bob-omb",
"",
"I shall never surrender my",
"Stars, for they hold the",
"power of the castle in",
"their glow.",
"They were a gift from",
"Bowser, the Koopa King",
"himself, and they lie well",
"hidden within my realm.",
"Not a whisper of their",
"whereabouts shall leave",
"my lips. Oh, all right,",
"perhaps one hint:",
"Heed the Star names at",
"the beginning of the",
"course.",
"//--The Big Bob-omb"
]
},
{
"ID": 40,
"linesPerBox": 3,
"leftOffset": 30,
"width": 200,
"lines": [
"Warning!",
"Cold, Cold Crevasse",
"Below!"
]
},
{
"ID": 41,
"linesPerBox": 3,
"leftOffset": 30,
"width": 200,
"lines": [
"I win! You lose!",
"Ha ha ha!",
"",
"That's what you get for",
"messin' with Koopa the",
"Quick.",
"Better luck next time!"
]
},
{
"ID": 42,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"Caution! Narrow Bridge!",
"Cross slowly!",
"",
"",
"You can jump to the edge",
"of the cliff and hang on,",
"and you can climb off the",
"edge if you move slowly.",
"When you want to let go,",
"either press [Z] or press",
"the Control Stick in the",
"direction of Mario's back.",
"To climb up, press Up on",
"the Control Stick. To",
"scurry up quickly, press",
"the [A] Button."
]
},
{
"ID": 43,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"If you jump and hold the",
"[A] Button, you can hang on",
"to some objects overhead.",
"It's the same as grabbing",
"a flying bird!"
]
},
{
"ID": 44,
"linesPerBox": 5,
"leftOffset": 95,
"width": 200,
"lines": [
"Whooo's there? Whooo",
"woke me up? It's still",
"daylight--I should be",
"sleeping!",
"",
"Hey, as long as I'm",
"awake, why not take a",
"short flight with me?",
"Press and hold [A] to grab",
"on. Release [A] to let go.",
"I'll take you wherever",
"you want to go, as long",
"as my wings hold out.",
"Watch my shadow, and",
"grab on."
]
},
{
"ID": 45,
"linesPerBox": 6,
"leftOffset": 95,
"width": 200,
"lines": [
"Whew! I'm just about",
"flapped out. You should",
"lay off the pasta, Mario!",
"That's it for now. Press",
"[A] to let go. Okay,",
"bye byyyyyyeeee!"
]
},
{
"ID": 46,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"You have to master three",
"important jumping",
"techniques.",
"First try the Triple Jump.",
"",
"Run fast, then jump three",
"times, one, two, three.",
"If you time the jumps",
"right, you'll hop, skip,",
"then jump really high.",
"Next, go for distance",
"with the Long Jump. Run,",
"press [Z] to crouch then [A]",
"to jump really far.",
"",
"To do the Wall Kick, press",
"[A] to jump at a wall, then",
"jump again when you hit",
"the wall.",
"",
"Got that? Triple Jump,",
"Long Jump, Wall Kick.",
"Practice, practice,",
"practice. You don't stand",
"a chance without them."
]
},
{
"ID": 47,
"linesPerBox": 2,
"leftOffset": 95,
"width": 200,
"lines": [
"Hi! I'll prepare the",
"cannon for you!"
]
},
{
"ID": 48,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"Snow Mountain Summit",
"Watch for slippery",
"conditions! Please enter",
"the cottage first."
]
},
{
"ID": 49,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"Remember that tricky Wall",
"Kick jump? It's a",
"technique you'll have to",
"master in order to reach",
"high places.",
"Use it to jump from wall",
"to wall. Press the",
"Control Stick in the",
"direction you want to",
"bounce to gain momentum.",
"Practice makes perfect!"
]
},
{
"ID": 50,
"linesPerBox": 4,
"leftOffset": 30,
"width": 200,
"lines": [
"Hold [Z] to crouch and",
"slide down a slope.",
"Or press [Z] while in the",
"air to Pound the Ground!",
"If you stop, crouch, then",
"jump, you'll do a",
"Backward Somersault!",
"Got that?",
"There's more. Crouch and",
"then jump to do a",
"Long Jump! Or crouch and",
"walk to...never mind."
]
},
{
"ID": 51,
"linesPerBox": 6,
"leftOffset": 30,
"width": 200,
"lines": [
"Climbing's easy! When you",
"jump at trees, poles or",
"pillars, you'll grab them",
"automatically. Press [A] to",
"jump off backward.",
"",
"To rotate around the",
"object, press Right or",
"Left on the Control Stick.",
"When you reach the top,",
"press Up to do a",
"handstand!",
"Jump off from the",
"handstand for a high,",
"stylin' dismount."
]
},
{
"ID": 52,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"Stop and press [Z] to",
"crouch, then press [A]",
"to do a high, Backward",
"Somersault!",
"",
"To perform a Side",
"Somersault, run, do a",
"sharp U-turn and jump.",
"You can catch lots of",
"air with both jumps."
]
},
{
"ID": 53,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"Sometimes, if you pass",
"through a coin ring or",
"find a secret point in a",
"course, a red number will",
"appear.",
"If you trigger five red",
"numbers, a secret Star",
"will show up."
]
},
{
"ID": 54,
"linesPerBox": 5,
"leftOffset": 30,
"width": 200,
"lines": [
"Welcome to the snow",
"slide! Hop on! To speed",
"up, press forward on the",