-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbank_F7.asm
4989 lines (4175 loc) · 117 KB
/
bank_F7.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
DATA_F70000:
dw $002A
dw DATA_F702A0
dw DATA_F7031A
dw DATA_F70378
dw DATA_F70421
dw DATA_F7047E
dw DATA_F70510
dw DATA_F70566
dw DATA_F705D9
dw DATA_F70633
dw DATA_F706A2
dw DATA_F70722
dw DATA_F7077F
dw DATA_F7080A
dw DATA_F70883
dw DATA_F708F7
dw DATA_F70989
dw DATA_F709CD
dw DATA_F70A3D
dw DATA_F70AB0
dw DATA_F70B2F
dw DATA_F70BBD
dw DATA_F70C36
dw DATA_F70CB1
dw DATA_F70D2C
dw DATA_F70DAA
dw DATA_F70E3F
dw DATA_F70EB9
dw DATA_F70F39
dw DATA_F70FB5
dw DATA_F71049
dw DATA_F710E4
dw DATA_F71140
dw DATA_F7119A
dw DATA_F711D7
dw DATA_F71238
dw DATA_F712AA
dw DATA_F71319
dw DATA_F7136E
dw DATA_F713EA
dw DATA_F71449
dw DATA_F71482
dw DATA_F714FB
DATA_F70056:
dw $000D
dw DATA_F7156D
dw DATA_F71591
dw DATA_F715CA
dw DATA_F715EF
dw DATA_F71612
dw DATA_F71634
dw DATA_F7166A
dw DATA_F716A6
dw DATA_F716E2
dw DATA_F7171A
dw DATA_F71756
dw DATA_F7178C
dw DATA_F717C9
dw $000D
dw DATA_F71809
dw DATA_F71842
dw DATA_F71883
dw DATA_F718BF
dw DATA_F718F7
dw DATA_F71937
dw DATA_F71975
dw DATA_F719B4
dw DATA_F719EE
dw DATA_F71A2D
dw DATA_F71A64
dw DATA_F71AA2
dw DATA_F71AE5
dw $000F
dw DATA_F71B09
dw DATA_F71B44
dw DATA_F71B80
dw DATA_F71BD2
dw DATA_F71C0B
dw DATA_F71C45
dw DATA_F71C69
dw DATA_F71CAA
dw DATA_F71CDF
dw DATA_F71D1E
dw DATA_F71D7B
dw DATA_F71DBA
dw DATA_F71DF5
dw DATA_F71E31
dw DATA_F71E86
dw DATA_F72C16
dw DATA_F72CCF
dw DATA_F72D83
dw DATA_F72E2E
DATA_F700B6:
dw DATA_F72EC5
dw DATA_F72F3C
dw DATA_F72FB5
dw DATA_F7302E
dw DATA_F730D7
dw DATA_F7316E
DATA_F700C2:
dw DATA_F73678
dw DATA_F736D3
dw DATA_F7374E
dw DATA_F737BC
DATA_F700CA:
dw DATA_F73817
dw DATA_F7388D
dw $0008
dw DATA_F739B0
dw DATA_F73A29
dw DATA_F73A9E
dw DATA_F73B10
dw DATA_F73B86
dw DATA_F73BDF
dw DATA_F73C5A
dw DATA_F73C98
dw $0006
dw DATA_F73CF0
dw DATA_F73D33
dw DATA_F73D70
dw DATA_F73DAB
dw DATA_F73DEB
dw DATA_F73E2B
dw $0008
dw DATA_F73E6B
dw DATA_F73E8A
dw DATA_F73EAF
dw DATA_F73ECF
dw DATA_F73F06
dw DATA_F73F46
dw DATA_F73F69
dw DATA_F73FA2
dw $0008
dw DATA_F73FD9
dw DATA_F74011
dw DATA_F7404A
dw DATA_F7406D
dw DATA_F740A3
dw DATA_F740DF
dw DATA_F7411D
dw DATA_F74156
dw $0008
dw DATA_F74197
dw DATA_F741CC
dw DATA_F741F1
dw DATA_F74228
dw DATA_F7424C
dw DATA_F74286
dw DATA_F742BE
dw DATA_F742FA
dw $0008
dw DATA_F74337
dw DATA_F74370
dw DATA_F74390
dw DATA_F743C4
dw DATA_F74402
dw DATA_F74437
dw DATA_F74459
dw DATA_F74497
dw $0008
dw DATA_F7607B
dw DATA_F760D8
dw DATA_F76115
dw DATA_F7613A
dw DATA_F7618F
dw DATA_F761CA
dw DATA_F76205
dw DATA_F7625A
dw $0006
dw DATA_F76298
dw DATA_F762DA
dw DATA_F7632E
dw DATA_F7636C
dw DATA_F763AE
dw DATA_F76403
dw $0007
dw DATA_F76441
dw DATA_F76462
dw DATA_F76482
dw DATA_F764A1
dw DATA_F764C3
dw DATA_F764E8
dw DATA_F7650B
dw DATA_F7652C
DATA_F70168:
dw $0001
dw DATA_F76563
dw $0008
dw DATA_F766AA
dw DATA_F76703
dw DATA_F7677D
dw DATA_F767DE
dw DATA_F76859
dw DATA_F768C7
dw DATA_F7691E
dw DATA_F76975
dw $0006
dw DATA_F769F1
dw DATA_F76A2C
dw DATA_F76A6F
dw DATA_F76AAE
dw DATA_F76AEE
dw DATA_F76B4E
dw $0008
dw DATA_F76BAD
dw DATA_F76BCC
dw DATA_F76BEF
dw DATA_F76C13
dw DATA_F76C34
dw DATA_F76C54
dw DATA_F76C8A
dw DATA_F76CAA
dw $0008
dw DATA_F77B1D
dw DATA_F77B97
dw DATA_F77BF8
dw DATA_F77C6D
dw DATA_F77CA6
dw DATA_F77D1C
dw DATA_F77D73
dw DATA_F77DD1
dw $0008
dw DATA_F77E4A
dw DATA_F77E84
dw DATA_F77EC6
dw DATA_F77F02
dw DATA_F77F45
dw DATA_F77FB6
dw DATA_F78012
dw DATA_F78054
dw $0008
dw DATA_F780AF
dw DATA_F780D1
dw DATA_F78107
dw DATA_F78128
dw DATA_F78163
dw DATA_F7819D
dw DATA_F781D7
dw DATA_F78216
dw $0008
dw DATA_F7823B
dw DATA_F7828E
dw DATA_F782D1
dw DATA_F78314
dw DATA_F7834E
dw DATA_F78390
dw DATA_F783CC
dw DATA_F7840C
DATA_F701E6:
db $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
db $01, $00
db " Come and say hello to your old", $00
db " grandpappy Cranky. I'm back by", $00
db " popular demand to offer you my", $00
db " wealth of gameplaying wisdom", $00
db " for this unnecessary sequel.", $00
DATA_F702A0:
db $00
db " After my starring role in DKC,", $00
db " I thought I'd be the main", $00
db " character this time, not stuck", $00
db " in this gloomy shed!", $00, $00
DATA_F7031A:
db $00
db " What sort of name is Dixie", $00
db " anyway? In my day, you were", $00
db " lucky to have a name at all!", $00, $00, $00
DATA_F70378:
db " Girl heroes in video games,", $00
db " pah. I can't believe it! The", $00
db " main character should be ", $00
db " really muscle-bound and carry", $00
db " a gun, not twirl their ", $00
db " hair round!", $00
DATA_F70421:
db $00
db " Try all you like, this game", $00
db " will never be as good as DKC,", $00
db " which was rubbish anyway!", $00, $00, $00
DATA_F7047E:
db " Just 'cos DKC sold a few lousy", $00
db " copies, I have to be included", $00
db " in another ludicrous ", $00
db " adventure! It's the last time,", $00
db " I tell you!", $00, $00
DATA_F70510:
db $00
db " I'd have never been kidnapped", $00
db " in my day, not like that fat", $00
db " fool Donkey!", $00, $00, $00
DATA_F70566:
db $00
db " I don't even get two screens", $00
db " to stand in! I'm sure K. Rool", $00
db " will have two, so why can't I?", $00
db " Pah!", $00, $00
DATA_F705D9:
db $00
db " Give up now before the kids", $00
db " realize you're not as popular", $00
db " as Donkey Kong was!", $00, $00, $00
DATA_F70633:
db $00
db " Where's Expresso? A clumsy", $00
db " spider and a fat parrot, is", $00
db " that the best they can think", $00
db " of?", $00, $00
DATA_F706A2:
db $00
db " Look at all this junk in here!", $00
db " Treat my home like a trash can", $00
db " they do! No respect for their", $00
db " elders, that's the trouble...", $00, $00
DATA_F70722:
db $00
db " I hate being stuck in this", $00
db " shabby barrel. I want to sit", $00
db " outside like last time!", $00, $00, $00
DATA_F7077F:
db $00
db " K.Rool is gonna whup", $00
db " your hides this time,", $00
db " whippersnappers! I'd better", $00
db " take over before you embarass", $00
db " yourselves!", $00
DATA_F7080A:
db $00
db " Team up? I've never heard such", $00
db " rubbish in my life! When I", $00
db " played, I was on my own. I had", $00
db " no fancy backup!", $00, $00
DATA_F70883:
db $00
db " Shouldn't Dixie just be a", $00
db " token female princess waiting", $00
db " to be rescued, instead of a", $00
db " main character?", $00, $00
DATA_F708F7:
db " I was hoping for more frames", $00
db " this time, but no! Don't let", $00
db " old Cranky do anything. Just", $00
db " give him some third rate stand", $00
db " frames!", $00, $00
DATA_F70989:
db $00, $00
db " I don't know why I help you so", $00
db " much. You don't appreciate me!", $00, $00, $00
DATA_F709CD:
db $00
db " I bet this here Killer", $00
db " Instinct game is rubbish too!", $00
db " It hasn't got me in it, so it", $00
db " must be!", $00, $00
DATA_F70A3D:
db $00
db " I'd have collected far more", $00
db " tokens than that by now!", $00
db " What's wrong, got holes in", $00
db " your pockets?", $00, $00, $00
DATA_F70AB0:
db $00
db " I hope you bought ", $22,"Cranky Kong", $00
db " Country", $22," last year. I was the", $00
db " one who made it so successful,", $00
db " not that lumbering Donkey!", $00, $00
DATA_F70B2F:
db " Diddy, I thought you were a", $00
db " cheap character in DKC, but", $00
db " Dixie is even worse! It", $00
db " should be me on my own, that", $00
db " it should!", $00, $00
DATA_F70BBD:
db $00
db " You must be really desperate", $00
db " to read all this! Having ", $00
db " trouble on your miserable, ", $00
db " boring quest are we?", $00, $00
DATA_F70C36:
db $00
db " You're looking a bit fat ", $00
db " there, kid! Look at me, I'm ", $00
db " at my physical peak. I could", $00
db " show you a thing or two!", $00, $00
DATA_F70CB1:
db $00
db " You think your fancy graphics", $00
db " and sound will work again! I", $00
db " think not. You'll be lucky to", $00
db " sell 10 copies this time!", $00, $00
DATA_F70D2C:
db $00
db " Did you notice in DKC that my", $00
db " tune sounded like the title", $00
db " tune? How dare they! I'm worth", $00
db " two different tunes at least!", $00, $00
DATA_F70DAA:
db " I'd sort out old K.Rool for", $00
db " you real quick, but I'd be", $00
db " spoiling the limited fun ", $00
db " you're trying to get out of ", $00
db " this shoddy product!", $00, $00
DATA_F70E3F:
db $00
db " Look! They've even taken my", $00
db " chair from me. It's disgusting", $00
db " how they treat old video game", $00
db " heroes these days...", $00, $00
DATA_F70EB9:
db $00
db " Haven't sold a single thing in", $00
db " weeks! If this junk was out of", $00
db " one of my games, the customers", $00
db " would be begging to get in!", $00, $00
DATA_F70F39:
db $00
db " I knew it! You've come to beg", $00
db " for my help again, haven't", $00
db " you! Well, I'm not going to", $00
db " tell you anything this time!", $00, $00
DATA_F70FB5:
db " Have you been to see the other", $00
db " members of the Kong family?", $00
db " They're not as useful as me of", $00
db " course, but they might be able", $00
db " to help.", $00, $00
DATA_F71049:
db " For just five bucks, you can", $00
db " buy my memoirs! What a dynamic", $00
db " and exciting life I've led.", $00
db " You'll be lucky to be in half", $00
db " as many games as I've been!", $00, $00
DATA_F710E4:
db $00
db " I knew you'd be back. Can't", $00
db " finish this ridiculous quest", $00
db " without my help, can you?", $00, $00, $00
DATA_F71140:
db $00
db " Howdy, young 'uns! Gather", $00
db " round and I'll give you some", $00
db " much needed advice!", $00, $00, $00
DATA_F7119A:
db $00, $00
db " I'll box your ears if you", $00
db " don't listen this time!", $00, $00, $00
DATA_F711D7:
db $00
db " Need more help do we? Pah! If", $00
db " I tell you much more, I might", $00
db " as well play the game for you!", $00, $00, $00
DATA_F71238:
db $00
db " Back so soon? I thought you'd", $00
db " complete at least another", $00
db " level before you came crying ", $00
db " to me!", $00, $00
DATA_F712AA:
db $00
db " Is that nasty fat crocodile", $00
db " beating you? Listen up, and", $00
db " I'll share my amazing", $00
db " knowledge!", $00, $00
DATA_F71319:
db $00
db " Oh, it's you again. I thought", $00
db " it might be a real video game", $00
db " hero...", $00, $00, $00
DATA_F7136E:
db $00
db " Surprise, surprise. Well if it", $00
db " isn't the so called video game", $00
db " heroes! I hope I'm getting", $00
db " paid for all my help!", $00, $00
DATA_F713EA:
db $00
db " Come on in! Have yourselves a", $00
db " look 'round and buy some of", $00
db " this trash, why don't you?", $00, $00, $00
DATA_F71449:
db $00, $00
db " You spend as much time in here", $00
db " as I do!", $00, $00, $00
DATA_F71482:
db $00
db " See, you're back again!", $00
db " Everybody likes old Cranky. I", $00
db " bet my ugly, old wife doesn't", $00
db " get half as many visits!", $00, $00
DATA_F714FB:
db $00
db " Don't you ever knock? I know", $00
db " you're desperate for help, but", $00
db " remember your manners next", $00
db " time!", $00, $00
DATA_F7156D:
db $00, $00
db " What do you want this time?", $00, $00, $00, $00
DATA_F71591:
db $00, $00
db " Go ahead, test my amazing", $00
db " knowledge!", $00, $00, $00
DATA_F715CA:
db $00, $00
db " Here's what I've got to offer.", $00, $00, $00, $00
DATA_F715EF:
db $00, $00
db " Feast yer eyes on my menu!", $00, $00, $00, $00
DATA_F71612:
db $00, $00
db " Take a look at this lot!", $00, $00, $00, $00
DATA_F71634:
db $00, $00
db " Enough talk, let's see your", $00
db " tokens!", $00, $00, $00
DATA_F7166A:
db $00, $00
db " I reckon you should spend all", $00
db " your tokens here.", $00, $00, $00
DATA_F716A6:
db $00, $00
db " Here's a fraction of my", $00
db " enviable knowledge!", $00, $00, $00
DATA_F716E2:
db $00, $00
db " This stuff is cheap at half", $00
db " the price!", $00, $00, $00
DATA_F7171A:
db $00, $00
db " Gaze in awe, as you appreciate", $00
db " my knowledge!", $00, $00, $00
DATA_F71756:
db $00, $00
db " O.K, which of these would you", $00
db " like?", $00, $00, $00
DATA_F7178C:
db $00, $00
db " Pick a subject! I know", $00
db " everything about this game!", $00, $00, $00
DATA_F717C9:
db $00, $00
db " I can recommend the really", $00
db " expensive ones, actually.", $00, $00, $00
DATA_F71809:
db $00, $00
db " I'm not giving this stuff away", $00
db " you know!", $00, $00, $00
DATA_F71842:
db $00, $00
db " You must be joking! You'll", $00
db " never have enough for that!", $00, $00, $00
DATA_F71883:
db $00, $00
db " You'll have to play better to", $00
db " buy that, sonny!", $00, $00, $00
DATA_F718BF:
db $00, $00
db " My knowledge doesn't come that", $00
db " cheap!", $00, $00, $00
DATA_F718F7:
db $00, $00
db " You'd better stick to the free", $00
db " ones, whippersnapper.", $00, $00, $00
DATA_F71937:
db $00, $00
db " Hey! If you ain't got any", $00
db " tokens, you can buzz off!", $00, $00, $00
DATA_F71975:
db $00, $00
db " Keep yer grubby hands off if", $00
db " you can't afford it!", $00, $00, $00
DATA_F719B4:
db $00, $00
db " Find some more tokens, you", $00
db " useless monkey!", $00, $00, $00
DATA_F719EE:
db $00, $00
db " You ain't got enough tokens", $00
db " for that, cheapskate!", $00, $00, $00
DATA_F71A2D:
db $00, $00
db " Not enough? Well, get", $00
db " lost then.", $00, $00, $00
DATA_F71A64:
db $00, $00
db " It's not a charity! I want", $00
db " more tokens for this!", $00, $00, $00
DATA_F71AA2:
db $00, $00
db " That's not enough. I've got", $00
db " new frames to pay for y'know!", $00, $00, $00
DATA_F71AE5:
db $00, $00, $00
db " That one is too good for you.", $00, $00, $00
DATA_F71B09:
db $00, $00
db " That's enough help for now. I", $00
db " need some rest.", $00, $00, $00
DATA_F71B44:
db $00, $00
db " Now, go and sort out those", $00
db " stupid crocodiles!", $00, $00, $00
DATA_F71B80:
db $00
db " Yawn! I'm getting tired. Go", $00
db " away and don't disturb me", $00
db " again!", $00, $00, $00
DATA_F71BD2:
db $00, $00
db " It should be real easy for you now!", $00, $00, $00
DATA_F71C0B:
db $00, $00
db " Even you can finish this silly", $00
db " game now!", $00, $00, $00
DATA_F71C45:
db $00, $00
db " I'm off to spend my tokens!", $00, $00, $00, $00
DATA_F71C69:
db $00, $00
db " Time for a couple of games on", $00
db " this here Killer Instinct.", $00, $00, $00
DATA_F71CAA:
db $00, $00
db " I don't want to help you", $00
db " too much.", $00, $00, $00
DATA_F71CDF:
db $00, $00
db " Guess I'd better tidy this", $00
db " miserable dump up a bit.", $00, $00, $00
DATA_F71D1E:
db $00
db " When you need more advice,", $00
db " which you will, I might help", $00
db " again, if you're lucky.", $00, $00, $00
DATA_F71D7B:
db $00, $00
db " Now, buzz off and let me work", $00
db " on my new game design.", $00, $00, $00
DATA_F71DBA:
db $00, $00
db " Don't come back without a", $00
db " sackful of tokens!", $00, $00, $00
DATA_F71DF5:
db $00, $00
db " I gotta go now, my wife is", $00
db " visiting any moment!", $00, $00, $00
DATA_F71E31:
db $00
db " Remember, I'm the most useful", $00
db " of the Kongs, and the", $00
db " cheapest!", $00, $00, $00
DATA_F71E86:
db $00
db " Don't be surprised if I'm gone", $00
db " next time. I'll be in a real", $00
db " game!", $00, $00, $00
DATA_F71EDB:
db $00, $00
db " Try using your team throw at", $00
db " the start.", $00, $00, $00
DATA_F71F14:
db $00
db " Below the letter K, you'll", $00
db " find a reward if you avoid", $00
db " the danger.", $00, $00, $00
DATA_F71F6A:
db $00, $00
db " Jump for joy when crossing the", $00
db " longest horizontal rope.", $00, $00, $00
DATA_F71FAB:
db $00
db " I reckon the door at the", $00
db " bottom of the tall wall looks", $00
db " flimsy to me.", $00, $00, $00
DATA_F72000:
db $00
db " Those big blue goons ain't", $00
db " guarding that huge stack of", $00
db " barrels for nuthin'! Knock 'em", $00
db " off and get up there!", $00, $00
DATA_F7207B:
db $00
db " A hook, step and jump is all", $00
db " you need to look for near the", $00
db " two dragonflies above you.", $00, $00, $00
DATA_F720DA:
db $00
db " Below the first seal, you'll", $00
db " find something worth getting", $00
db " your fur burnt for.", $00, $00, $00
DATA_F72134:
db $00, $00
db " Is it my eyes, or is there", $00
db " just one chest at the start?", $00, $00, $00
DATA_F72175:
db $00
db " Take it easy, let the rhino", $00
db " use his head to get you", $00
db " through the first half.", $00, $00, $00
DATA_F721CE:
db $00
db " A trek towards the Klobber", $00
db " with the spider is worth", $00
db " looking up.", $00, $00, $00
DATA_F72222:
db $00, $00
db " Right is right, right at the", $00
db " start.", $00, $00, $00
DATA_F72259:
db $00
db " Those two hook throwing", $00
db " villa"
if !version == 1
db "i"
endif
db "ns opposite each other", $00
db " are protecting something. I'm", $00
db " sure of it!", $00, $00
DATA_F722CC:
db $00
db " Find the only Krockhead", $00
db " stepping stone and you'll find", $00
db " your buddy Rambi.", $00, $00, $00
DATA_F72327:
db $00
db " With only the dragonflies", $00
db " left, I'm sure you'll be", $00
db " alright.", $00, $00, $00
DATA_F72378:
db $00
db " When nearing the top, the", $00
db " ability to walk on water", $00
db " reveals all.", $00, $00, $00
DATA_F723CB:
db $00
db " It might be dark and sp"
if !version == 0
db "o"
endif
db "ooky,", $00
db " but don't let it get you down", $00
db " immediately.", $00, $00, $00
DATA_F72422:
db $00, $00
db " Are you up to it at the start?", $00, $00, $00
DATA_F72446:
db $00
db " After four spinning barrels,", $00
db " all that's left is left", $00
db " itself.", $00, $00, $00
DATA_F72498:
db $00
db " An eight-legged friend would", $00
db " go halfway to helping you", $00
db " here.", $00, $00, $00
DATA_F724EB:
db $00
db " Don't be in a hurry to enter", $00
db " Rambi's room. Think things", $00
db " over.", $00, $00, $00
DATA_F72540:
db $00
db " The fruit is always fresher on", $00
db " the other side of the thorns.", $00
db " Jump to it!", $00, $00, $00
DATA_F7259A:
db $00
db " It's his track, so watch the", $00
db " Kremling car carefully. He", $00
db " might be down, but he's on his", $00
db " way out.", $00, $00
DATA_F7260E:
db $00
db " A charge down the last", $00
db " straight with Rambi will", $00
db " ensure a crushing victory.", $00, $00, $00
DATA_F72666:
db $00, $00
db " Start with a hook, stick and", $00
db " jumps, and you're bonus bound!", $00, $00, $00
DATA_F726A8:
db $00, $00
db " Things are starting to look up", $00
db " on this level.", $00, $00, $00
DATA_F726E4:
db $00
db " Here's a tip that I think's", $00
db " great, the door is by the", $00
db " Klampon and so is the crate.", $00, $00, $00
DATA_F72741:
db $00
db " Finishing this level is cause", $00
db " for celebration. By all means", $00
db " go over the top.", $00, $00, $00
DATA_F7279B:
db $00, $00
db " Where you find one, there may", $00
db " be two.", $00, $00, $00
DATA_F727D2:
db $00, $00
db " To the left of the letter 'O'", $00
db " is where you should go.", $00, $00, $00
DATA_F72811:
db $00
db " K. Rool is no fool. He has got", $00
db " two big blue goons watching", $00
db " his horde near half-way.", $00, $00, $00
DATA_F7286E:
db $00
db " After the start, a long jump", $00
db " and then a high jump will win", $00
db " you more than just a gold", $00
db " medal.", $00, $00
DATA_F728DF:
db $00
db " Brave an early attack of", $00
db " barrels and their hidden", $00
db " treasure is yours.", $00, $00, $00
DATA_F72936:
db $00
db " Watch very carefully at the", $00
db " end. There's something going", $00
db " down that could give you a new", $00
db " life.", $00, $00
DATA_F729A8:
db $00
db " I ain't helping you with this", $00
db " one. It's up to you to start", $00
db " looking yourself.", $00, $00, $00
DATA_F72A03:
db $00
db " I've left a couple of animal", $00
db " buddies for you in here, but", $00
db " it's left for you to find.", $00
db " them.", $00, $00
DATA_F72A75:
db $00
db " When cannon balls are raining", $00
db " down on you, I suggest you", $00
db " look for a way past who's", $00
db " responsible.", $00, $00
DATA_F72AE5:
db $00
db " Just before halfway, take", $00
db " time to look back at what", $00
db " you've done.", $00, $00, $00
DATA_F72B39:
db $00
db " After the slope with the", $00
db " letter 'N', press right as you", $00
db " fall and you'll have a ball.", $00, $00, $00