-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKP_COMPLETE_2.bas
1133 lines (517 loc) · 22.7 KB
/
KP_COMPLETE_2.bas
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
REM KAIJU PARADISE BESTIARY
PRINT "WELCOME TO THE KAIJU PARADISE BESTIARY!"
PRINT
PRINT "SELECT A CREATURE TO VIEW ITS ENTRY:"
PRINT "1. Kaiju"
PRINT "2. Azure"
PRINT "3. Plantix"
PRINT "4. Catte"
PRINT "5. Conecat"
PRINT "6. Fed"
PRINT "7. Figs"
PRINT "8. Ghost Fox"
PRINT "9. Glubby"
PRINT "10. Lang"
PRINT "11. Trystan"
PRINT "12. Hazzy"
PRINT "13. Lemon Shork"
PRINT "14. Mocha"
PRINT "15. Shade"
PRINT "16. Shork"
PRINT "17. Tiger Shork"
PRINT "18. Dragon pup"
PRINT "19. Slime Hound"
PRINT "20. Slime Pup"
PRINT "21. Sprinklekit"
PRINT "22. Toxic Rappit"
PRINT "23. Witchbrew"
PRINT "24. Manic"
PRINT "25. Dagoda"
PRINT "26. Lantern Shork"
PRINT "27. Watermelon Shork"
PRINT "28. Pseudo Shork"
PRINT "29. Saturn"
PRINT "30. Protogen"
PRINT "31. Hebi"
PRINT "32. Feizao"
PRINT "33. Fashui"
PRINT "34. Buck"
PRINT "36. Dark Protogen"
PRINT "37. Jammer"
PRINT "38. Nightshade"
PRINT "38. Nightcrawler"
PRINT "39. Nuclear rabbit"
PRINT "40. Carneline"
PRINT "41. Sinox"
PRINT "42. Wisp"
PRINT "43. Panther"
PRINT "44. Partyena"
PRINT "0. Exit"
DO
INPUT "Enter the number of the creature: "; choice
SELECT CASE choice
CASE 1
GOSUB 300
CASE 2
GOSUB 310
CASE 3
GOSUB 320
CASE 4
GOSUB 330
CASE 5
GOSUB 340
CASE 6
GOSUB 350
CASE 7
GOSUB 360
CASE 8
GOSUB 370
CASE 9
GOSUB 380
CASE 10
GOSUB 390
CASE 11
GOSUB 400
CASE 12
GOSUB 410
CASE 13
GOSUB 420
CASE 14
GOSUB 430
CASE 15
GOSUB 440
CASE 16
GOSUB 450
CASE 17
GOSUB 460
CASE 18
GOSUB 470
CASE 19
GOSUB 480
CASE 20
GOSUB 490
CASE 21
GOSUB 500
CASE 22
GOSUB 510
CASE 23
GOSUB 520
CASE 24
GOSUB 530
CASE 25
GOSUB 540
CASE 26
GOSUB 550
CASE 27
GOSUB 560
CASE 28
GOSUB 570
CASE 29
GOSUB 580
CASE 30
GOSUB 590
CASE 31
GOSUB 600
CASE 32
GOSUB 300
CASE 33
GOSUB 310
CASE 34
GOSUB 320
CASE 35
GOSUB 330
CASE 36
GOSUB 340
CASE 37
GOSUB 350
CASE 38
GOSUB 360
CASE 39
GOSUB 370
CASE 40
GOSUB 380
CASE 41
GOSUB 390
CASE 42
GOSUB 400
CASE 43
GOSUB 410
CASE 44
CASE 0
END
CASE ELSE
PRINT "Invalid choice. Please enter a number from the menu."
END SELECT
LOOP UNTIL TRUE
END
300 REM Entry for Kaiju
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "KAIJU:"
PRINT "A giant lizard-like creature that slowly has crystals growing outside of its back."
PRINT "Kaijus tend to be passive aggressive, and are very territorial."
PRINT "They will attack when provoked, but if you keep your distance, they will leave you be... most of the time."
PRINT "Refrain from going near any of the large blue crystals inside the cave."
RETURN
310 REM Entry for Azure
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "AZURE:"
PRINT "N/A"
RETURN
320 REM Entry for Azure
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "PLANTIX:"
PRINT "Plant-like Gootraxians that tend to the garden in the Laminax facility,"
PRINT "Plantix are quite friendly in nature and seem to enjoy cultivating the flora growing in the small plots there."
PRINT "The small, pink flowers that grow on their head are delicate,"
PRINT "and appear to act as their vital force, keeping them alive."
PRINT "Be careful while smelling some of the flowers growing in the garden."
RETURN
330 REM Entry for Catte
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "CATTE:"
PRINT "N/A"
RETURN
340 REM Entry for Mocha
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "CONECAT:"
PRINT "N/A"
RETURN
350 REM Entry for Fed
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "FED:"
PRINT "This gootrax has a more wolf like appearance, bearing pink eyes,"
PRINT "This gootrax was actually created purely on accident,"
PRINT "after security forgot to remove all accessories from a subject, and a developing gootrax latched onto a hat."
PRINT "It was among the first to escape containment,"
PRINT "causing a small outbreak after a coworker attempted to do a horrible Jackson impression after tipping a fedora on their head."
PRINT "Feds are usually calm and collected, but see humans as animals,"
PRINT "and nothing more. They look down upon humans, but aren't necessarily annoyed around them either;"
PRINT "more-so taking to teasing and mocking humans at any point they can, commonly seen scoffing at their presence."
PRINT "For further reference, please don't wear hats indoors."
RETURN
360 REM Entry for Figs
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "FIGS:"
PRINT "Appearing to be insects of indeterminate species,"
PRINT "Figs are insectile Gootraxians that appear frequently in and around the Laminax facility garden."
PRINT "While lightweight enough to be capable of flight, they do not seem to do so very often and much prefer to traverse the facility on foot."
PRINT "They instead use their wings as a method of communication, using the produced vibrations to signal to other Figs what could be possible threats."
PRINT "It is not recommended that you eat the fruit that falls from the tree in the center of the garden."
RETURN
370 REM Entry for Ghost Fox
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "GHOST FOX:"
PRINT "Appearing to resemble ghostly spirits wandering the Laminax facility,"
PRINT "Ghost Foxes are timid Gootraxians that tend to stray away from light and use their translucent,"
PRINT "incorporeal bodies to hide away from attackers that may attempt to harm them."
PRINT "While mostly gaseous, they are capable of discharging hefty shocks of electricity,"
PRINT "and use them to incapacitate those they want to infect. However, they seem to fear humans and tend to only fight back in self-defense."
PRINT "Be careful handling any tasers you may find around the facility and try not to drop them in water."
RETURN
380 REM Entry for Mocha
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "GLUBBY:"
PRINT "N/A"
RETURN
390 REM Entry for Mocha
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "LANG:"
PRINT "N/A"
RETURN
400 REM Entry for Mocha
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "TRYSTAN:"
PRINT "N/A"
RETURN
410 REM Entry for Hazzy
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "HAZZY:"
PRINT "A cat-- er.. fox?? .. like gootrax that loves to hide itself on the inside of hazmat suits. While they do avoid attacking humans,"
PRINT "they do like striking when a human is weakened. They are harmless if a subject is healthy, although."
PRINT "Hazzy seem very curious and playful, but tend to stray away from large crowds. These smaller gootrax love affection in small doses."
PRINT "Hazzy appear to hold grudges on humans who attack them. Many can be seen wearing hazmat suits,"
PRINT "and using items around the facility as weapons to attack those unfortunate enough to have picked a fight with them."
PRINT "Only wear a hazmat suit if you are ABSOLUTELY SURE the material is safe."
PRINT "If you do find yourself ensnared by a Hazzy, keep your health tip top shape at all costs."
RETURN
420 REM Entry for Lemon Shork
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "LEMON SHORK:"
PRINT "Large shark Gootraxians with a unique double pair of eyes, Lemon Shorks appear to be the result of a lemon combining with a regular Shork."
PRINT "These Gootraxians can be aggressive and highly protective of others of their kind. They tend to form groups with others as well,"
PRINT "and appear to be most active in low light, as their two highly developed pairs of eyes enable them to see clearly during these conditions."
PRINT "Their bodies contain a chemical not too dissimilar to lemon juice, and getting it in your eyes may leave you blinded and in a fair amount of pain."
PRINT "Do not feed lemon slices to the Shorks."
RETURN
430 REM Entry for Mocha
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "MOCHA:"
PRINT "N/A"
RETURN
440 REM Entry for Shade
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "SHADE:"
PRINT "Similar to the Fed, this gootrax is wolf like, has bright green eyes, and is wearing a pair of fake, rubber like shades."
PRINT "This gootrax developed the same way the Fed did, but in a more safer space, a breakout in the staff lounge."
PRINT "Surprisingly the breakout was quickly stopped, as Shades were shown to be, though a little less intelligent than Feds, a lot nicer (though equally as dangerous)."
PRINT "Shades show more respect for humans and more so curiosity. They are extremely protective, and work as good guards."
PRINT "While this specimen has not shown any aggression as of writing this log, please do not just randomly give security sunglasses in hopes of them 'lightening up'."
RETURN
450 REM Entry for Shork
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "SHORK:"
PRINT "The most common of the aquatic test failures, the Shork is a gootrax that lurks in the water contained areas of the facility."
PRINT "While as of recent certain rooms have been flooded due to them biting at the water pipes,"
PRINT "these gootrax have shown to be some of the most aggressive due to their original animal nature."
PRINT "While harnessing this aggression would be good for our final goal, these tests have only shown for them to act out as wild animals,"
PRINT "hunting mainly in their waters to protect their territory."
PRINT "Beware of the fins that roam the deep waters."
RETURN
460 REM Entry for Mocha
PRINT "ENVIONMENT TYPE:"
PRINT "BLACKOUT"
PRINT "TIGER SHORK:"
PRINT "N/A"
RETURN
470 REM Entry for Saturn
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL,POWER OUTAGE(RED SPIKED),BLACKOUT(GHOST)"
PRINT "DRAGON PUP:"
PRINT "A strange mutation between the Slime Pup and the Slime Hound. In the lesser form,"
PRINT "they take form of a slime pup with dragon like wings and a wirey like tail."
PRINT "Their greater form keeps these features, but takes the size of a Slime Hound."
PRINT "These creatures are noticeably more curious, but seem to lack empathy for other creatures."
PRINT "Each test with them has concluded they mainly see Humans as a food source to grow in size,"
PRINT "but once they grow they become either extremely lazy like a pup, or extremely lazy like a hound."
PRINT "Avoid this odd mutation at all costs."
RETURN
480 REM Entry for Slime Hound
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL,POWER OUTAGE(RED SPIKED),BLACKOUT(GHOST)"
PRINT "SLIME HOUND:"
PRINT "A large, canine like creature with a feathery dinosaur like tail."
PRINT "They have the same skull like mask that Slime Pups have."
PRINT "They seem to be more aggressive and more mature Slime Pups, almost taking a parental role."
PRINT "They are notably over protective with the pups, even going as far to punch at aggressive Panthers to keep them safe."
PRINT "While they may be over protective, if you show hospitality and kindness to a pup around them,"
PRINT "more than often they spare you from their rage. ...That is, if they trust you."
RETURN
490 REM Entry for Slime Pup
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL,POWER OUTAGE(RED SPIKED),BLACKOUT(GHOST)"
PRINT "SLIME PUP:"
PRINT "A small, dog sized creature that is translucent,"
PRINT "with a skull like mask on the front. They can vary in colors."
PRINT "These creatures are the first of the neutral species that have been created, and have been noted to follow humans and infected around,"
PRINT "expecting food and pets. They're often childlike,"
PRINT "but on rare occasions the aggressive biters are seen to grow in size, and eventually form into a Slime Hound."
PRINT "Slime Pups are often extremely curious, but lazy. They sleep around a lot, and will even sleep on your back if you let them."
PRINT "If one is bothering you, just give it a treat or something."
RETURN
500 REM Entry for Sprinklekit
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "Sprinklekit:"
PRINT "N/A"
RETURN
510 REM Entry for Toxic Rabbit
PRINT "ENVIRONMENT TYPE:"
PRINT "NORMAL"
PRINT "TOXIC RABBIT:"
PRINT "Cunicular Gootraxians capable of producing a similarly suffocating,"
PRINT "albeit different gas to the one formerly inside the rooms with gas canisters,"
PRINT "Toxic Rabbits frequent the facility's support cave where the enclosed space makes escape for unsuspecting humans nigh-impossible."
PRINT "The chemical they emit is differentiated from the gas once in the area with the canisters as it has been determined to be dense chlorine gas,"
PRINT "leaving any who inhale it feeling an intense and painful burning sensation in their eyes as well as finding difficulty breathing."
PRINT "Beware of falling chemical vats."
RETURN
520 REM Entry for Witchbrew
PRINT "ENVIRONMENT TYPE"
PRINT "NORMAL"
PRINT "WITCHBREW:"
PRINT "A Gootraxian with bat-like attributes, Witchbrews have been observed to be wreaking havoc across the LAMINAX facilities."
PRINT "Their playful and mischievous behavior prompts them to socialize with other gootraxians, despite their widely shunned presence."
PRINT "The Witchbrew was created entirely on accident! A developing gootraxian had contaminated an ordinary can of Witchbrew soda,"
PRINT "mutating the sugary drink with unusual and undocumented properties; one of which being transforming the victim into the Witchbrew gootraxian."
PRINT "For future reference, do not drink any peculiar looking soda from vending machines."
RETURN
530 REM Entry for Manic
PRINT "ENVIONMENT TYPE:"
PRINT "POWER OUTAGE"
PRINT "MANIC:"
PRINT "N/A"
RETURN
540 REM Entry for Dagoda
PRINT "ENVIONMENT TYPE:"
PRINT "POWER OUTAGE"
PRINT "DAGODA:"
PRINT "N/A"
RETURN
550 REM Entry for Dagoda
PRINT "ENVIONMENT TYPE:"
PRINT "BLACKOUT"
PRINT "LANTERN SHORK:"
PRINT "Highly volatile in temperament, Lantern Shorks use their bioluminescent glow to lure prey to their imminent end."
PRINT "These Gootraxians lurk around the flooded rooms of the facility, their bioluminescence coming from special photophores in their skin that produce a faint,"
PRINT "blue glow. These creatures are prone to violent episodes, going totally berserk with absolutely no control over their aggression."
PRINT "They are relentless at taking down their aggressors. Avoid at all costs."
PRINT "Do not follow the lights in the water."
RETURN
560 REM Entry for Watermelon Shork
PRINT "ENVIRONMENT TYPE:"
PRINT "POWER OUTAGE,BLACKOUT"
PRINT "WATERMELON SHORK:"
PRINT "This mutation of the Shorks occurred from an odd reaction to the rind and interior of a watermelon,"
PRINT "fully developing properly only in dimly lit areas. These gootrax have evolved their own light source,"
PRINT "having an odd flame between their horns to see better in the dark. This flame does not hurt when touched,"
PRINT "and gives off a sweet melon like smell."
RETURN
570 REM Entry for Psuedo Shork
PRINT "ENVIRONMENT TYPE:"
PRINT "POWER OUTAGE"
PRINT "PSUEDO SHORK:"
PRINT "This gootrax is a lanky pink and white stripped shark like creature that likes to hide in dimly lit areas."
PRINT "They prefer dim lighting rather absolute darkness, thus leading to the team to believe this Shork has adapted to the more poorly lit areas of their tank."
PRINT "Unlike regular Shorks, this branch of gootrax is very puppy like, interacting with subjects and looking at them like a curious animal more so."
PRINT "However don't be fooled by its cute exterior, it is but a facade. As soon as it can catch an opportunity to strike, it WILL take it."
RETURN
580 REM Entry for Saturn
PRINT "ENVIONMENT TYPE:"
PRINT "POWER OUTAGE"
PRINT "SATURN:"
PRINT "N/A"
RETURN
590 REM Entry for Saturn
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "PROTOGEN:"
PRINT "N/A"
RETURN
600 REM Entry for Hebi
PRINT "ENVIONMENT TYPE:"
PRINT "BLACKOUT"
PRINT "HEBI:"
PRINT "N/A"
RETURN
610 REM Entry for Hebi
PRINT "ENVIONMENT TYPE:"
PRINT "NORMAL"
PRINT "FEIZAO:"
PRINT "Squirrel-like Gootraxians with large tails and mint-colored fur,"
PRINT "Feizao leave soapy trails behind wherever they go, causing whoever walks on them to slip and lose their footing."
PRINT "Most of their kind are docile and don't appear to be aggressive, being mostly timid around humans and preferring to stay out of conflict."
PRINT "However, small and hostile groups of Feizao can form if another of their kind is found to be have been slain."
PRINT "They appear to get along with other Gootraxians who can be found where they naturally form, such as Mochi."
PRINT "Please refrain from stealing the hand soap in the bathrooms. Thank you."
RETURN
620 REM Entry for Buck
PRINT "ENVIONMENT TYPE:"
PRINT "POWER OUTAGE"
PRINT "FASHUI:"
PRINT "Closely related to Feizao, Fashui are squirrel Gootraxians with vibrant red fur and often appear alongside their relatives, almost acting like older siblings towards them."
PRINT "They use the same slippery trail of soap their relatives use to slip up and catch pursuers off guard."
PRINT "Their extremely hostile temperament towards humans and cunning tactics makes them quite the threat; they ambush humans who dare come near the bathrooms and dare use Feizao to do their dirty work."
PRINT "Please refrain from stealing the hand soap in the bathrooms, ESPECIALLY DURING OUTAGES!!!"
RETURN
630 REM Entry for Buck
PRINT "ENVIONMENT TYPE:"
PRINT "BLACKOUT"
PRINT "BUCK:"
PRINT "N/A"
RETURN
640 REM Entry for Saturn
PRINT "ENVIONMENT TYPE:"
PRINT "POWER OUTAGE,BLACKOUT"
PRINT "DARK PROTOGEN:"
PRINT "N/A"
RETURN
650 REM Entry for Jammer
PRINT "ENVIONMENT TYPE:"
PRINT "BLACKOUT"
PRINT "JAMMER:"
PRINT "N/A"
RETURN
660 REM Entry for Night Shade
PRINT "ENVIONMENT TYPE:"
PRINT "BLACKOUT"
PRINT "NIGHT SHADE:"
PRINT "N/A"
RETURN
670 REM Entry for Nightcrawler