-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathff.lua
More file actions
2063 lines (1988 loc) · 101 KB
/
ff.lua
File metadata and controls
2063 lines (1988 loc) · 101 KB
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
m = peripheral.wrap("right") m.setTextScale(2)
m.clear() m.setCursorPos(1,1) m.write("Awaiting input...")
term.clear()
run = true
controls = {"stop","enter/e","leave/l","inventory/inv"}
controls2 = {"wasd"}
inventory = {{"sword","deadly but for you"},{"potion","undrinkable"}}
worldMap = {
{{"\127",16,12},{"\127",16,12},{"\127",16,12},{"\127",16,12},{"\127",16,12},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"~",12,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10}},
{{"\127",16,12},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"~",12,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"~",12,4},{"\127",12,10}},
{{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",10,4},{"\127",10,4},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4}},
{{"\127",12,10},{"~",12,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,8},{"\140",8,6},{"\140",8,6},{"\000",1,8},{" ",6,6},{" ",6,6},{" ",6,6},{"w",14,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\127",10,4}},
{{"\127",12,10},{"\127",10,4},{"\127",10,4},{"\000",1,16},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\156",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\149",13,6},{" ",1,6},{" ",1,6},{"\149",8,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16}},
{{"\127",10,4},{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"w",14,6},{"w",14,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\156",9,6},{"\140",9,6},{"\140",9,6},{"\133",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,8},{"\140",8,6},{"\140",8,6},{"\000",1,8},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",10,4}},
{{"\127",10,4},{"\000",1,16},{"\001",14,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\148",9,6},{" ",6,6},{" ",6,6},{"w",14,6},{"w",14,6},{" ",6,6},{" ",6,6},{"\025",10,6},{" ",6,6},{" ",6,6},{"\156",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\133",9,6},{" ",6,6},{" ",6,6},{"A",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4}},
{{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\149",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\156",9,6},{"\140",9,6},{"\140",9,6},{"\133",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4}},
{{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{"\187",5,6},{"\140",9,6},{"\149",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\156",9,6},{"\133",9,6},{" ",6,6},{" ",6,6},{"\215",15,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"w",14,6},{"w",14,6},{"w",14,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\030",13,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",12,10}},
{{"\127",10,4},{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{"\149",9,6},{" ",6,6},{"w",14,6},{"w",14,6},{" ",6,6},{"\156",9,6},{"\133",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",12,10}},
{{"~",12,4},{"\127",10,4},{"\127",10,4},{"\000",1,16},{" ",6,6},{"\156",9,6},{"\141",9,6},{"\140",9,6},{"\140",9,6},{"\156",9,6},{"\140",9,6},{"\133",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"w",14,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4}},
{{"\127",10,4},{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{"\149",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\149",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"w",14,6},{"w",14,6},{"w",14,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",16,15},{"~",16,2},{"\127",16,15},{"\127",15,2},{"\127",2,5},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"w",14,6},{"\000",1,16},{"\127",10,4}},
{{"\127",10,4},{"\000",1,16},{" ",6,6},{"\156",9,6},{"\140",9,6},{"\133",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\141",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\148",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",15,2},{"\127",15,2},{"\127",2,5},{"\127",15,2},{"~",16,2},{"\127",15,2},{"\127",16,15},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4}},
{{"\127",10,4},{"\000",1,16},{" ",6,6},{"\149",9,6},{"w",14,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\141",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"\148",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",2,5},{"~",16,2},{"\127",15,2},{"\127",16,15},{"\127",15,2},{"~",16,2},{"\127",2,5},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4}},
{{"\127",10,4},{"\000",1,16},{" ",6,6},{"\194",1,6},{" ",6,6},{"w",14,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\141",9,6},{"\148",9,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\127",2,5},{"~",16,2},{"\127",15,2},{"\000",1,16},{"\000",1,16},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4}},
{{"\127",10,4},{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{"w",14,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"w",14,6},{"w",14,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\141",9,6},{"\148",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4}},
{{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\141",9,6},{"\140",9,6},{"\148",9,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"~",12,4},{"\127",10,4},{"\127",12,10}},
{{"\127",12,10},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\141",9,6},{"\140",9,6},{"\140",9,6},{"\140",9,6},{"h",12,6},{" ",6,6},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",12,10},{"\127",12,10}},
{{"\127",12,10},{"\127",12,10},{"~",12,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{" ",6,6},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10}},
{{"\127",16,12},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"~",12,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\000",1,16},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"\127",10,4},{"~",12,4},{"\127",10,4},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",12,10},{"\127",16,12},{"\127",16,12}}
}
pics = {
grid ={
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0},
{0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0,16,0,0}
},
lighthouse = {
{4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,16,4,4,4,4,4,4,4},
{4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,16,1,16,4,4,1,1,9,4},
{4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,1,1,1,9,1,1,1,1,9,4,4,4,4,4,4,4,16,15,15,15,16,4,1,1,1,9},
{1,1,1,5,5,5,5,5,5,4,4,4,4,4,4,1,1,1,9,9,1,9,9,1,9,4,4,4,4,4,4,16,1,1,1,16,4,4,1,9,4},
{1,9,1,1,5,5,5,1,1,1,4,4,4,4,4,4,1,9,9,9,9,9,9,1,9,4,4,4,4,4,16,16,16,16,16,16,16,4,4,4,4},
{9,9,1,1,5,5,5,1,9,4,4,4,4,4,4,4,4,4,4,4,9,9,9,9,4,4,4,1,9,4,4,16,15,15,15,16,4,4,4,4,4},
{4,9,1,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,9,1,9,16,15,15,15,16,4,4,4,4,4},
{4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,9,16,1,1,1,16,12,12,12,12,12},
{4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,12,12,12,12,4,4,12,1,1,1,1,9,1,1,1,16,12,16,16,16,16},
{4,4,4,4,4,4,4,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,1,1,1,1,9,16,15,15,15,16,16,16,6,6,6},
{4,4,4,4,12,12,12,12,9,12,12,12,12,12,12,1,9,12,1,9,12,12,12,12,12,12,1,1,1,1,9,16,15,15,15,16,6,6,6,6,6},
{12,12,12,12,12,12,12,9,9,9,12,12,12,1,1,1,9,1,1,9,12,1,9,16,16,1,1,1,1,9,6,16,1,1,1,16,6,6,6,14,6},
{12,12,1,12,12,12,12,12,12,12,12,12,1,1,9,9,12,1,9,16,1,1,9,6,1,1,1,9,9,6,6,16,1,1,15,16,9,9,9,14,9},
{12,12,1,1,1,12,12,12,12,12,12,1,1,9,12,1,1,1,9,1,1,9,6,6,9,9,9,6,6,6,6,6,6,6,6,6,6,6,6,6,14},
{12,12,9,1,1,1,1,12,12,12,1,1,9,12,1,1,9,9,1,1,9,6,14,6,14,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{12,12,12,9,1,1,1,1,1,1,1,1,1,1,9,9,9,1,1,9,14,6,14,6,14,6,6,6,6,6,6,14,6,14,6,14,6,6,6,6,6},
{12,12,12,1,1,9,1,1,9,1,1,1,9,9,12,1,1,9,9,6,6,14,6,14,6,6,6,6,6,6,6,14,6,14,6,14,6,6,6,6,6},
{12,12,12,9,1,1,1,1,1,1,1,1,1,1,1,1,9,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,14,6,14,6,6,6,6,6,6},
{12,12,12,12,9,9,9,9,9,9,9,9,9,9,9,9,4,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{12,12,12,12,12,12,12,12,12,12,12,12,12,12,4,4,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6}
},
insideLighthouse = {
{4,4,4,4,4,4,4,4,4,16,9,9,9,1,1,1,1,1,1,8,8,8,8,1,1,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,4,16,9,9,9,1,1,1,1,1,1,8,1,1,8,1,1,16,9,9,16,4,4,4,4,4,4,4,5,5,5,4,4},
{4,4,4,4,4,4,4,4,4,16,9,9,8,1,1,1,1,1,13,8,8,8,8,1,1,16,16,9,16,4,4,4,4,4,4,5,5,5,5,5,4},
{4,4,4,4,4,4,4,4,4,16,9,9,8,1,1,1,1,1,13,8,1,1,8,1,1,16,4,16,16,4,1,1,1,1,1,9,5,5,5,5,5},
{1,9,4,4,4,4,4,4,4,16,9,9,8,8,8,1,1,1,13,8,8,8,8,1,1,9,16,16,16,1,1,1,1,1,1,1,9,5,5,5,5},
{1,1,9,4,4,4,4,4,4,16,9,13,13,13,13,1,13,13,13,8,1,1,8,1,1,9,9,16,16,1,1,1,1,9,1,1,1,1,9,5,5},
{1,1,9,4,4,4,4,4,4,16,9,13,9,1,13,1,13,1,13,8,8,8,8,1,1,9,9,9,16,9,1,9,9,9,1,1,1,1,9,5,4},
{9,1,9,4,4,4,4,4,4,16,9,13,9,1,13,1,13,1,13,8,1,1,8,1,1,9,9,9,16,9,9,9,9,9,9,1,1,9,5,4,4},
{9,9,4,4,4,4,4,4,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,4,4,4,9,9,9,9,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,9,8,1,1,1,1,1,1,1,1,1,1,13,13,1,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,8,8,1,1,1,1,1,1,1,1,1,13,13,1,13,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,9,8,1,16,16,16,16,16,1,1,1,13,1,13,13,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,8,8,1,16,4,16,4,16,1,1,15,1,13,13,1,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,9,8,1,16,16,16,16,16,1,1,5,5,1,1,1,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,8,8,1,16,4,16,4,16,1,1,10,10,1,1,8,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,9,8,1,16,16,16,16,16,15,15,15,15,15,9,8,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,8,8,1,1,1,1,1,1,8,8,8,8,8,8,8,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,16,9,8,9,8,1,1,1,1,1,1,8,1,1,1,1,1,8,9,9,9,16,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,16,9,9,8,1,8,1,13,13,13,13,1,1,1,1,1,1,1,1,1,9,9,9,16,4,4,4,4,4,4,4,4,4,4}
},
fishingHut = {
{4,4,4,4,4,4,4,9,9,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,4,5,2,15,15},
{4,4,4,4,4,9,9,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,9,9,1,4,4,4,4,4,4,4,4,4,5,2,2,15},
{4,4,4,9,9,1,9,9,9,9,1,9,1,1,1,4,4,4,4,4,4,4,4,4,9,9,1,9,1,1,4,4,4,4,4,5,5,4,5,2,2},
{4,4,4,4,9,9,9,9,9,9,9,9,9,1,4,4,4,4,4,4,4,4,4,4,9,9,9,9,9,9,1,1,4,4,4,4,4,4,4,5,5},
{4,4,4,4,4,4,4,4,9,9,9,9,4,4,4,4,4,4,4,4,4,4,4,4,4,9,9,9,9,9,9,4,4,4,4,4,4,4,5,4,4},
{4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,9,9,9,9,4,4,4,4,4,4,4,4,5,4,5},
{4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5},
{4,4,4,4,4,4,4,4,4,13,13,13,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,13,13,13,13,13,4,4,4,4,4,4,6,6,6,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,13,13,13,13,13,13,13,4,4,4,4,8,14,14,14,6,4,4,4,4,4,4,4,4,4,13,13,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,8,8,8,8,8,4,4,4,4,4,8,14,14,14,6,4,4,4,4,4,4,4,4,13,8,13,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,13,13,13,13,13,4,4,4,4,4,4,8,8,8,4,4,4,4,4,4,4,4,13,8,13,1,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,13,13,16,13,13,4,4,4,4,4,4,4,8,4,4,4,4,4,4,4,4,13,8,13,4,1,4,4,4,4,4,4,4},
{6,6,6,6,6,4,4,4,13,13,16,13,13,4,4,4,4,4,4,4,13,4,4,4,4,4,4,4,13,8,13,4,4,16,4,4,4,4,4,4,4},
{6,6,6,6,6,6,6,6,8,8,8,8,8,6,6,6,6,6,4,4,13,4,4,4,4,4,4,4,13,13,4,4,4,16,4,16,4,4,4,4,4},
{14,14,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,6,6,6,6,6,6,6,8,8,4,4,4,16,16,4,4,4,4,4,4},
{14,14,14,14,14,14,14,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,10,10,10,16,7,10,7,10,10},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,14,14,14,14,14,6,6,6,6,6,6,6,6,6,10,11,11,11,11,11,10,10},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,6,6,3,3,12,3,12,12},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,12,12,12,12,12}
},
fishIdle = {
{4,4,4,9,9,9,9,1,1,1,1,1,1,1,9,9,1,1,1,1,9,1,4,4,4,4,4,4,4,4,4,9,9,9,9,9,9,9,9,9,4},
{4,4,4,4,9,9,9,9,9,9,9,1,9,9,9,9,9,1,1,9,9,4,4,4,4,4,4,4,4,4,4,4,4,4,9,9,9,9,4,4,4},
{4,4,4,4,4,4,4,9,9,9,9,9,9,9,9,9,9,9,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{4,10,10,10,10,4,4,4,4,4,4,9,9,9,9,9,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{10,10,10,10,10,10,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,10,10,4,4},
{10,10,10,10,10,10,10,10,4,4,4,4,4,4,4,4,4,4,4,4,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,10,10,10,10,10,10},
{10,10,10,10,10,10,10,10,10,10,4,4,4,4,10,10,10,10,10,10,10,10,10,10,10,7,10,7,16,10,10,10,10,10,10,10,10,10,10,10,10},
{10,10,16,1,10,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,10,10,10,10,10,10,10,10,10,10,10},
{10,6,6,6,6,6,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,3,10,3,3,10,10,10,10,10,10,10,10,10,10,10,10},
{10,10,14,14,10,14,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10},
{10,12,12,12,12,12,12,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10},
{12,12,12,12,12,12,12,12,10,10,10,10,10,10,10,10,10,12,12,12,12,12,12,12,10,10,10,10,10,10,10,10,12,12,12,12,12,12,10,10,10},
{12,12,12,12,12,12,12,12,12,10,10,10,16,10,12,10,12,12,12,12,12,12,12,12,12,12,12,12,10,10,12,12,12,12,12,12,12,12,12,12,12},
{12,12,12,12,12,12,12,12,12,12,12,12,4,10,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12},
{12,12,12,12,12,12,12,12,12,12,12,12,12,10,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12},
{12,12,12,12,12,12,12,12,12,12,12,12,4,10,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12},
{12,12,16,16,16,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12},
{16,16,16,16,16,16,16,16,12,12,12,12,12,12,12,12,12,16,16,16,12,12,12,12,12,12,12,12,12,16,16,12,12,12,12,16,12,16,15,12,12},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,12},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16}
},
fishIdleSecret = {
{14,14,14,3,3,3,3,7,7,7,7,7,7,7,3,3,7,7,7,7,3,7,14,14,14,14,14,14,14,14,14,3,3,3,3,3,3,3,3,3,14},
{14,14,14,14,3,3,3,3,3,3,3,7,3,3,3,3,3,7,7,3,3,14,14,14,14,14,14,14,14,14,14,14,14,14,3,3,3,3,14,14,14},
{14,14,14,14,14,14,14,3,3,3,3,3,3,3,3,3,3,3,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14},
{14,5,5,5,5,14,14,14,14,14,14,3,3,3,3,3,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14},
{5,5,5,5,5,5,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,5,5,14,14},
{5,5,5,5,5,5,5,5,14,14,14,14,14,14,14,14,14,14,14,14,5,5,5,5,5,5,5,5,5,5,5,5,14,14,14,5,5,5,5,5,5},
{5,5,5,5,5,5,5,5,5,5,14,14,14,14,5,5,5,5,5,5,5,5,5,5,5,5,5,5,16,5,5,5,5,5,5,5,5,5,5,5,5},
{5,5,16,1,5,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,15,15,15,15,15,5,5,5,5,5,5,5,5,5,5,5},
{5,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,5,2,2,5,5,5,5,5,5,5,5,5,5,5,5},
{5,5,16,16,5,16,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5},
{5,2,2,2,2,2,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5},
{2,2,2,2,2,2,2,2,5,5,5,5,5,5,5,5,5,2,2,2,2,2,2,2,5,5,5,5,5,5,5,5,2,2,2,2,2,2,5,5,5},
{2,2,2,2,2,2,2,2,2,5,5,5,6,5,2,5,2,2,2,2,2,2,2,2,2,2,2,2,5,5,2,2,2,2,2,2,2,2,2,2,2},
{2,2,2,2,2,2,2,2,2,2,2,2,2,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2},
{2,2,2,2,2,2,2,2,2,2,2,2,6,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2},
{2,2,2,2,2,2,2,2,2,2,2,2,16,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2},
{2,2,16,16,16,2,2,2,2,2,2,2,2,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2},
{16,16,16,16,16,16,16,16,2,2,2,2,2,2,2,2,2,16,16,16,2,2,2,2,2,2,2,2,2,16,16,2,2,2,2,15,2,15,16,2,2},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,2},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,16,15,15,16,16}
},
riddle = {
{9,9,9,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,9,9,9},
{9,9,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,8,9,9,9,9,9,1,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,9,9},
{9,9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,8,9,9,9,9,9,9,9,1,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9,9},
{9,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,8,9,9,9,9,9,9,9,1,16,16,16,16,16,8,8,8,8,8,8,8,8,8,9},
{9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,8,9,9,1,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9},
{9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,8,9,1,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9},
{9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,8,9,1,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9},
{8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,8,9,9,9,9,1,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8},
{8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,8,9,9,9,9,1,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8},
{8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,8,9,9,9,1,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8},
{8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,8,9,1,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8},
{8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,8,9,1,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8},
{8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,8,9,1,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8},
{9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,8,9,1,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9},
{9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,8,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9},
{9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9},
{9,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,1,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,9},
{9,9,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,8,9,1,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,9,9},
{9,9,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,8,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,9,9},
{9,9,9,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,9,9,9}
},
picrossBackground = {
{5,5,5,4,4,1,1,6,6,4,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,4,4,4,4},
{5,5,5,4,1,1,9,6,6,9,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,1,1,1,4},
{5,5,4,4,1,6,6,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,1,1,1,9,1,9},
{5,4,4,4,1,6,6,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,1,1,9,9,9,9,9},
{4,4,4,4,4,6,6,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,6,4,1,9,9,9,9,9,4},
{4,4,4,4,4,6,6,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,6,4,4,1,9,9,9,4,4},
{4,4,4,4,4,6,6,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,6,6,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,6,6,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,4,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,6,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,4,6,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,6,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,4,13,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,4,13,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,4,4,4,4,13,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,8,4,4,4,14,4},
{4,4,4,4,4,4,4,4,4,8,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,4,4,4,8,16,4,4,14,4},
{4,4,4,4,4,4,4,4,4,8,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,8,8,1,1,1,4,4,4,14},
{6,6,4,4,4,4,4,4,4,13,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,1,8,1,4,4,4,4,6,6},
{6,6,6,6,6,4,4,4,4,13,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,1,4,8,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,4,13,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,6,6,6,6,6,6,6,6,6}
},
chess = {
{1,1,1,1,1,1,1,1,16,16,16,16,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,1,1,1,1,1,1},
{1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,1,1,1,1},
{1,1,1,1,16,16,16,16,16,8,8,9,16,16,16,16,16,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,1,1},
{1,1,16,16,16,16,16,16,8,8,8,9,9,16,16,16,16,16,16,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{16,16,16,16,16,16,16,8,8,8,8,8,9,9,16,16,16,16,16,16,16,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{1,1,16,16,16,16,16,8,8,8,8,8,9,9,16,16,16,16,16,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{1,1,1,1,16,16,16,8,8,8,8,8,9,9,16,16,16,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,1,1},
{1,1,1,1,1,1,16,16,8,8,8,9,9,16,16,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,1,1,1,1},
{1,1,1,1,1,1,1,1,16,8,8,9,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,1,1,1,1,1,1},
{1,1,1,1,1,1,1,1,1,8,8,9,15,15,15,15,15,15,15,15,15,15,1,1,1,1,1,1,1,1,1,1,16,1,1,1,1,1,1,1,1},
{1,1,1,1,1,1,1,1,16,8,8,9,16,1,1,1,1,1,15,15,15,15,1,1,1,1,1,1,1,1,16,16,16,16,16,1,1,1,1,1,1},
{1,1,1,1,1,1,16,16,8,8,8,9,9,16,16,1,15,15,15,15,1,15,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,1,1,1,1},
{1,1,1,1,16,16,16,16,8,8,8,9,9,15,15,15,15,15,1,1,1,15,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,1,1},
{1,1,16,16,16,16,16,8,8,8,8,8,9,9,15,15,15,16,16,1,1,15,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,15,16,16,16,16,16,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{1,1,16,16,16,16,16,8,8,8,8,8,9,9,16,16,16,16,16,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{1,1,1,1,16,16,16,16,8,8,8,9,9,16,16,16,16,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,1,1},
{1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,1,1,1,1},
{1,1,1,1,1,1,1,1,16,16,16,16,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,1,1,1,1,1,1},
{1,1,1,1,1,1,1,1,1,1,16,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,1,1,1,1,1,1,1,1},
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
},
beniswotafoll = {
{1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,4,4},
{4,4,4,1,1,1,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,4,1,1,1,1,4,4,4,4,4,5,5,5,5,5,5,5,4,4},
{4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,5,5,5,5,5,4,4,4},
{14,4,4,4,14,4,4,4,4,4,4,4,4,4,4,4,4,1,1,4,4,1,1,1,1,1,1,4,4,4,4,4,4,4,5,5,5,4,4,4,4},
{10,14,14,10,14,4,4,14,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{14,14,14,14,14,10,14,10,10,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{14,14,14,14,14,14,14,14,14,10,10,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{14,14,14,14,14,14,14,14,9,9,10,10,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{14,14,14,14,14,14,9,14,14,9,10,10,4,4,4,4,4,4,4,4,4,4,4,4,4,14,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{14,14,14,14,9,14,9,14,14,4,10,10,4,4,4,4,4,4,4,4,4,4,4,14,14,14,14,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{14,14,9,14,14,14,9,14,9,4,10,10,4,4,4,4,4,4,4,4,4,4,14,14,14,14,14,14,14,4,4,4,4,4,4,4,4,4,4,4,4},
{14,9,14,14,14,9,9,14,9,4,10,10,10,4,4,4,4,4,4,4,4,4,14,14,14,7,14,14,14,14,4,4,4,4,4,4,4,4,4,4,4},
{14,9,14,9,14,9,9,9,9,4,10,10,4,4,4,4,4,4,4,4,4,4,7,14,14,14,13,14,14,7,4,4,4,4,4,3,4,4,4,4,4},
{9,9,14,9,9,9,9,9,4,4,4,10,4,4,4,4,4,4,4,4,4,4,14,14,14,14,14,7,14,14,14,4,4,4,3,3,3,4,4,4,4},
{9,9,9,9,9,9,8,9,4,4,10,10,4,4,4,4,4,4,4,4,4,4,7,4,7,13,14,13,14,4,14,4,4,4,4,14,4,4,4,15,4},
{9,9,9,9,9,8,8,9,4,4,4,10,4,4,4,4,4,4,4,4,13,4,4,4,14,4,13,13,7,4,7,4,4,4,4,14,4,14,4,15,4},
{9,9,9,9,9,8,8,9,4,4,4,10,4,4,4,4,4,4,4,4,14,4,4,4,4,4,13,13,4,4,4,4,4,4,4,4,14,4,4,14,4},
{14,14,14,9,9,8,8,9,4,4,10,10,10,4,7,4,7,6,4,4,14,4,4,4,4,13,13,13,4,4,4,4,4,4,4,4,14,4,14,14,4},
{14,14,14,14,14,14,10,10,10,10,10,10,10,10,10,10,10,10,10,10,14,14,14,14,14,14,14,14,14,14,14,14,14,14,4,4,14,4,4,14,4},
{14,14,14,14,14,14,14,14,10,10,10,10,10,10,10,10,10,10,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14}
},
alienOutside = {
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{16,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16},
{16,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,6,6,14,8,8,8,8,8,8,8,8,8,8,8,8,8,16},
{8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,12,12,6,6,6,6,6,14,8,8,8,8,8,8,8,8,8,8,8,8,8},
{8,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,14,12,12,12,12,12,12,12,12,12,12,8,8},
{12,12,12,12,12,12,12,12,12,12,12,12,12,12,10,10,10,10,10,10,10,10,10,10,10,10,10,12,12,12,12,12,12,12,12,12,12,12,12,12,12},
{12,12,12,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,12,12,12},
{10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,4,4,4,4,4,4,4,4,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10},
{10,10,10,10,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,10,10,10,10},
{4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,6,6,6,6,6,6,6,6,6,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
{4,4,4,4,4,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,4,4,4,4,4},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6}
},
alien = {
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,6,8,8,8,8,6,6,6,6,6,8,8,8,8,6,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,6,9,9,3,5,9,6,6,6,9,3,5,9,9,6,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,9,5,3,9,9,6,9,9,5,3,9,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,14,6,6,6,6,6,6,6,6,6,6,6,6,6,14,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,6,6,6,6,6,6,6,6,6,6,6,14,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,16,16,16,16,16,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,6,6,6,6,6,6,6,6,6,14,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,6,6,6,6,6,6,6,14,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,6,6,6,6,6,14,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,14,6,14,14,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9}
},
guardQuestion = {
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,13,13,15,13,13,15,2,2,2,2,2,2,2,2,2,2,2,2,15},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,8,8,8,16,13,13,15,13,15,1,15,1,15,1,15,15,15,1,15,15,1,15},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,8,9,8,15,15,15,15,13,15,15,1,15,1,15,1,15,2,2,1,15,2,1,15},
{16,13,13,13,13,13,13,13,13,13,13,16,16,16,13,13,13,16,9,16,8,16,9,16,13,15,13,15,1,15,1,15,1,15,15,1,1,15,15,1,15},
{16,13,13,13,13,13,13,13,13,13,13,16,8,8,16,13,13,16,8,16,8,16,8,16,15,13,13,15,1,2,15,2,1,15,2,1,1,2,15,1,15},
{16,13,13,13,13,13,13,13,13,13,13,13,16,8,8,16,13,16,9,8,8,8,9,16,13,13,13,15,1,1,15,1,1,15,1,1,1,1,15,1,15},
{16,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,16,13,16,9,8,9,16,13,13,13,13,15,1,1,15,1,1,15,15,15,1,15,15,1,15},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,16,13,16,16,16,13,13,13,13,13,15,1,1,2,1,1,2,2,2,1,2,2,1,15},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,16,16,16,16,16,16,13,13,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,16,16,16,16,15,15,15,15,2,2,2,2,2,2,2,2,2,2,2,2,2,2},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,16,16,16,16,16,16,16,15,15,13,13,13,13,13,13,13,15,13,13,13,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,16,16,16,16,16,16,15,13,15,13,13,13,13,13,13,15,13,15,13,13,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,16,16,16,16,16,16,15,16,13,15,13,13,13,13,13,15,13,13,13,15,13,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,13,16,16,16,16,15,16,16,13,13,13,13,13,13,15,13,13,15,13,13,15,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,16,2,16,5,16,16,16,16,16,2,16,13,13,13,13,13,13,13,13,13,15,13,13,13,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,5,13,16,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,15,13,13,13,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,3,5,16,8,16,8,16,16,16,16,16,13,13,13,13,13,13,13,15,13,13,13,13,13,16},
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,8,16,8,16,13,16,16,16,16,13,13,13,13,13,13,15,13,13,13,13,13,16}
},
guardFacepalm = {
{16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,1,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,1,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16,8,8,8,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,16,1,16,13,13,13,13,13,13,13,13,13,13,13,13,13,16,8,9,8,9,8,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,16,1,16,13,13,16,13,13,13,13,16,16,16,13,13,13,16,9,16,16,16,9,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,16,16,1,16,16,1,16,13,13,13,16,8,8,16,13,13,16,8,16,2,16,8,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{1,16,16,1,16,1,1,16,13,13,13,13,16,8,8,16,13,16,16,16,16,16,9,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,1,1,1,1,1,1,16,13,13,13,13,13,16,16,16,16,16,16,16,16,9,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,16,1,1,1,1,1,16,13,13,13,13,13,13,16,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,13,16,1,1,1,1,16,13,13,13,13,13,13,13,16,16,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{16,13,13,16,1,1,1,16,13,13,13,13,13,13,13,13,16,16,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,2,2,2,16,1,1,16,2,2,2,13,13,13,13,13,16,16,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,1,1,1,1,16,1,16,1,1,2,13,13,13,13,13,13,13,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,1,2,1,1,1,16,16,1,1,2,13,13,13,13,13,13,13,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,1,2,2,2,1,2,2,2,1,2,13,13,13,13,13,13,13,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,1,2,1,2,1,2,1,2,1,2,13,13,13,13,13,13,13,16,16,16,16,16,2,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,1,2,1,2,1,2,2,2,1,2,13,13,13,13,13,13,13,16,16,16,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,1,1,1,1,1,1,1,1,1,2,13,13,13,13,13,13,13,16,8,16,8,16,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,13,16},
{2,2,2,2,2,2,2,2,2,2,2,13,13,13,13,13,13,13,16,8,16,8,16,13,16,16,16,16,13,13,13,13,13,13,13,13,13,13,13,13,16}
},
castle = {
{12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,1,12,9,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{1,12,12,8,8,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,9,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{12,12,16,16,8,8,9,12,12,12,1,12,12,12,12,12,12,12,12,12,12,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{12,12,16,8,8,9,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{12,12,16,16,8,8,9,12,12,12,12,12,12,1,12,12,12,1,12,12,12,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{12,12,12,8,8,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{12,12,12,12,12,12,12,12,12,12,12,12,1,12,12,12,12,12,12,12,12,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{12,12,1,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{14,12,14,12,14,12,12,12,12,12,12,12,12,12,12,12,12,12,1,12,12,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{14,12,14,12,14,12,12,12,1,12,12,12,12,12,12,12,8,12,12,12,12,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{12,14,12,14,12,12,12,12,12,12,12,12,14,12,14,12,8,12,8,8,12,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{14,14,14,14,14,12,12,12,12,12,12,12,14,12,14,12,16,12,8,8,12,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{14,14,14,14,14,14,14,14,12,12,14,14,14,14,14,14,16,12,16,16,14,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,16,16,16,14,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,14,16,16,14,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,14,8,8,14,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,14,8,8,14,13,16,16,16,16,16,16,16,8,8,8,8,8,8,9,9,9,8,8,16},
{14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,14,8,8,14,13,16,16,16,16,16,16,8,8,8,8,8,8,8,9,9,8,8,16,16}
},
office = {
{16,16,16,16,16,16,16,16,16,16,4,4,4,4,4,4,4,4,4,1,1,4,4,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1},
{16,9,9,9,9,9,9,9,9,9,16,16,16,16,16,16,4,4,4,1,1,1,1,1,1,1,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1},
{16,9,16,16,16,16,16,9,9,9,9,9,9,9,9,9,16,16,16,16,16,1,1,1,1,1,1,1,4,4,4,4,4,1,1,1,4,1,1,1,4},
{16,9,16,4,4,4,16,9,9,16,16,16,16,9,9,9,9,9,9,9,16,4,1,4,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1},
{16,9,16,4,4,4,16,9,9,16,8,8,16,9,9,16,16,16,16,9,16,4,4,4,4,4,4,4,4,4,9,4,4,4,4,4,4,1,1,1,1},
{16,9,16,4,4,4,16,9,9,16,4,4,16,9,9,16,8,8,16,9,16,4,4,4,4,4,4,4,4,9,9,9,4,4,4,4,4,4,1,4,9},
{16,9,16,4,4,4,16,9,9,16,4,4,16,9,9,16,4,4,16,9,16,4,4,4,4,4,4,4,9,9,9,9,9,4,4,4,4,4,4,9,9},
{16,9,16,16,16,16,16,9,9,16,16,16,16,9,9,16,16,16,16,9,16,4,4,4,4,4,4,9,9,9,9,9,9,9,4,4,4,4,8,8,9},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,4,4,4,4,4,8,9,8,9,9,9,9,9,4,4,4,8,8,8,8},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,4,4,4,4,8,8,8,8,8,8,9,9,8,8,4,8,8,8,8,8},
{16,9,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,16,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8},
{16,9,16,8,8,8,16,9,9,16,16,16,16,9,9,9,9,9,9,9,16,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8},
{16,9,16,8,8,8,16,9,9,16,4,4,16,9,9,16,16,4,16,9,16,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8},
{16,9,16,8,8,8,16,9,9,16,4,4,16,9,9,4,2,2,16,9,16,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8},
{16,9,16,8,8,8,16,9,9,16,4,4,16,9,9,16,2,2,4,9,16,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8},
{16,9,16,16,16,16,16,9,9,16,16,16,16,9,9,16,4,16,16,9,16,6,6,6,6,6,6,6,6,8,8,8,8,8,8,8,8,8,8,8,8},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,9,9,9,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,9,9,9,9,9,9,9,9,9,9,9,6,6,6,6,6,6,6,6,6},
{16,9,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9},
{16,9,16,4,4,4,16,9,9,16,16,16,16,9,9,9,9,9,9,9,16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9}
},
officeFail = {
{16,16,16,16,16,16,16,16,16,16,4,4,4,4,4,4,4,4,4,1,1,4,4,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1},
{16,9,9,9,9,9,9,9,9,9,16,16,16,16,16,16,4,4,4,1,1,1,1,1,1,1,2,4,4,4,4,4,1,1,1,1,1,1,1,1,1},
{16,9,16,16,16,16,16,9,9,9,9,9,9,9,9,9,16,16,16,16,16,1,1,1,1,1,1,1,4,4,4,4,4,1,1,1,4,11,1,1,4},
{16,9,16,4,4,4,16,9,9,16,16,16,16,9,9,9,9,9,9,9,16,4,1,2,1,4,2,4,4,2,15,4,4,4,4,4,4,4,4,4,1},
{16,9,16,4,4,4,16,9,9,16,8,8,16,9,9,16,16,16,16,9,16,4,4,4,2,4,2,4,2,4,9,4,4,4,11,4,4,11,1,1,11},
{16,9,16,4,4,4,16,9,9,16,4,4,16,9,9,16,8,8,16,9,16,4,4,4,4,4,4,15,4,9,15,9,4,15,4,11,4,11,1,11,9},
{16,9,16,4,4,4,16,9,9,16,4,4,16,9,9,16,4,4,16,9,16,2,4,2,2,4,2,4,2,2,15,2,15,4,4,4,4,4,4,9,9},
{16,9,16,16,16,16,16,9,9,16,16,16,16,9,9,16,16,16,16,9,16,4,4,4,4,4,4,9,9,9,9,9,11,9,11,11,4,11,8,11,11},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,4,4,4,2,15,2,15,2,9,15,9,15,15,4,15,4,8,8,8,8},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,4,4,2,4,8,2,8,8,2,8,9,9,8,8,11,8,11,8,11,8},
{16,9,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,16,4,4,8,8,8,8,8,15,8,15,8,15,8,11,8,8,11,8,8,11},
{16,9,16,8,8,8,16,9,9,16,16,16,16,9,9,9,9,9,9,9,16,8,8,8,8,8,2,15,8,8,15,8,8,15,8,8,8,8,8,8,8},
{16,9,16,8,8,8,16,9,9,16,4,4,16,9,9,16,16,4,16,9,16,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,11,8,8,8},
{16,9,16,8,8,8,16,9,9,16,4,4,16,9,9,4,2,2,16,9,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16},
{16,9,16,8,8,8,16,9,9,16,4,4,16,9,9,16,2,2,4,9,16,16,3,3,3,16,3,16,16,3,16,3,16,16,16,3,16,3,16,3,16},
{16,9,16,16,16,16,16,9,9,16,16,16,16,9,9,16,4,16,16,9,16,16,3,12,12,3,12,3,16,3,16,3,16,16,16,3,16,3,16,3,16},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,16,3,3,16,3,3,3,16,3,16,3,16,16,16,3,16,3,16,3,16},
{16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,16,16,3,12,16,3,12,3,16,3,16,3,16,16,16,12,16,12,16,12,16},
{16,9,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,16,16,3,16,16,3,16,3,16,3,16,3,3,3,16,3,16,3,16,3,16},
{16,9,16,4,4,4,16,9,9,16,16,16,16,9,9,9,9,9,9,9,16,16,12,16,16,12,16,12,16,12,16,12,12,12,16,12,16,12,16,12,16}
},
pizzeria = {
{4,4,4,4,4,16,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,16,4,4},
{4,4,4,6,6,16,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,16,4,4},
{4,4,6,6,6,16,5,5,5,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,5,5,5,5,5,5,5,5,16,4,4},
{4,4,4,4,4,16,5,5,5,16,5,5,2,2,15,15,15,2,2,5,5,5,2,2,15,15,15,2,2,16,5,5,5,5,5,5,5,5,16,4,4},
{4,4,4,4,4,16,5,5,5,5,16,5,5,2,2,15,15,15,2,2,5,5,5,2,2,15,15,15,2,2,16,5,5,5,5,5,5,5,16,4,4},
{4,4,4,4,4,16,5,5,5,5,16,5,5,2,2,15,15,15,2,2,5,5,5,2,2,15,15,15,2,2,16,5,5,5,5,5,5,5,16,4,4},
{4,4,4,4,4,16,5,5,5,5,5,16,5,5,2,2,15,15,15,2,2,5,5,5,2,2,15,15,15,2,2,16,5,5,5,5,5,5,16,4,4},
{4,4,4,4,4,16,5,5,5,5,5,5,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,5,5,5,5,5,16,4,4},
{4,4,4,4,4,16,5,5,5,5,5,5,16,15,15,5,5,5,15,15,15,5,5,5,15,15,15,5,5,5,15,15,16,5,5,5,5,5,16,4,4},
{4,4,4,4,4,16,5,5,5,5,5,5,16,15,15,15,5,5,5,15,15,15,5,5,5,15,15,15,5,5,5,15,16,5,5,5,5,5,16,6,4},
{4,4,4,4,4,16,5,5,5,5,5,5,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,5,5,5,5,5,16,6,6},
{4,4,4,4,4,16,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,16,6,6},
{4,4,4,4,4,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,5,5,16,16,16,16,16,16,16,16,16,5,5,16,6,6},
{4,4,4,4,4,16,15,15,1,15,15,1,15,15,1,15,1,16,4,1,4,4,1,4,16,5,5,16,9,9,13,5,15,9,9,16,5,5,16,6,6},
{4,4,4,4,4,16,15,15,1,15,15,1,15,1,1,15,15,16,1,4,4,1,4,4,16,5,5,16,9,13,5,5,5,5,9,16,5,5,16,6,6},
{4,4,4,4,4,16,15,15,1,15,1,1,15,15,1,15,15,16,4,4,1,4,16,1,16,5,5,16,9,13,5,15,5,5,9,16,5,5,16,6,6},
{4,6,6,4,4,16,16,16,16,16,16,16,16,16,16,16,16,16,4,1,4,4,16,4,16,5,5,16,9,9,13,5,15,9,9,16,5,5,16,6,6},
{6,6,6,6,6,16,5,5,5,5,16,16,16,5,5,5,5,16,1,4,4,1,16,4,16,5,5,16,16,16,16,16,16,16,16,16,5,5,16,6,6},
{6,6,6,6,6,16,5,5,5,16,16,5,16,16,5,5,5,16,4,4,1,4,4,1,16,5,5,5,5,5,5,5,5,5,5,5,5,5,16,6,6},
{6,6,6,6,6,16,5,5,16,16,5,5,5,16,16,5,5,16,4,1,4,4,1,4,16,5,5,5,5,5,5,5,5,5,5,5,5,5,16,6,6}
},
lavaLake = {
{6,6,6,6,6,6,6,6,14,6,14,6,14,6,6,14,6,14,6,14,6,14,6,14,6,6,6,6,6,6,6,6,6,6,6,6,6,15,6,6,6},
{6,6,6,6,6,6,6,6,6,14,6,14,6,6,6,6,6,6,6,14,6,14,6,14,6,6,6,6,6,6,6,6,6,6,6,6,15,1,15,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,14,6,14,6,6,6,6,6,6,6,6,6,6,6,6,15,15,1,15,15,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,15,15,15,1,15,15,15},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,15,15,15,15,15,15,15,15},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,15,15,15,15,15,1,15,15,15},
{6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,16,16,16,16,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,16,16,16,16,16,16,15,15,15,15,2,2,2,2,15,15,15,2,15,2,2,2,2,5,16,16,16,16,6,6,6,6,6,6,6},
{6,6,6,6,16,16,16,2,2,2,2,15,15,15,2,2,2,5,5,2,2,15,15,15,2,2,15,2,5,5,5,2,5,16,16,16,16,6,6,6,6},
{6,6,6,16,16,16,16,5,2,2,2,15,2,2,2,5,5,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,15,16,16,16,16,6,6,6},
{6,6,16,16,16,16,5,5,5,2,2,2,2,2,2,2,2,2,2,2,15,15,2,2,15,2,2,2,2,2,15,15,15,15,15,15,15,16,16,16,16},
{6,6,16,16,16,16,16,16,16,16,5,5,2,2,2,2,2,2,15,15,15,15,15,15,2,2,2,15,2,2,2,2,2,2,5,5,15,16,16,16,16},
{6,16,16,16,16,16,16,16,16,5,2,5,5,2,5,2,2,2,2,15,15,2,16,16,2,2,2,2,2,2,2,2,5,5,5,5,5,16,16,16,16},
{6,6,6,6,6,6,6,16,16,16,16,16,5,2,2,2,5,2,2,2,2,2,16,16,16,16,16,16,16,16,16,16,16,16,16,16,5,16,16,16,16},
{6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,16,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6}
},
waterLake = {
{6,6,6,6,6,6,6,6,14,6,14,6,14,6,6,14,6,14,6,14,6,14,6,14,6,6,6,6,6,6,6,6,6,6,6,6,6,12,6,6,6},
{6,6,6,6,6,6,6,6,6,14,6,14,6,6,6,6,6,6,6,14,6,14,6,14,6,6,6,6,6,6,6,6,6,6,6,6,12,1,12,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,14,6,14,6,6,6,6,6,6,6,6,6,6,6,6,12,12,1,12,12,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,1,12,12,12},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,12,12,12},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,1,12,12,12},
{6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,16,16,16,16,12,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,16,16,16,16,16,16,12,12,12,12,10,10,10,10,12,12,12,10,12,10,10,10,10,4,16,16,16,16,6,6,6,6,6,6,6},
{6,6,6,6,16,16,16,10,10,10,10,12,12,12,10,10,10,4,4,10,10,12,12,12,10,10,12,10,4,4,4,10,4,16,16,16,16,6,6,6,6},
{6,6,6,16,16,16,16,4,10,10,10,12,10,10,10,4,4,4,4,10,10,10,10,10,10,10,10,10,10,10,10,10,10,12,16,16,16,16,6,6,6},
{6,6,16,16,16,16,4,4,4,10,10,10,10,10,10,10,10,10,10,10,12,12,10,10,12,10,10,10,10,10,12,12,12,12,12,12,12,16,16,16,16},
{6,6,16,16,16,16,16,16,16,16,4,4,10,10,10,10,10,10,12,12,12,12,12,12,10,10,10,12,10,10,10,10,10,10,4,4,12,16,16,16,16},
{6,16,16,16,16,16,16,16,16,4,10,4,4,10,4,10,10,10,10,12,12,10,16,16,10,10,10,10,10,10,10,10,4,4,4,4,4,16,16,16,16},
{6,6,6,6,6,6,6,16,16,16,16,16,4,10,10,10,4,10,10,10,10,10,16,16,16,16,16,16,16,16,16,16,16,16,16,16,4,16,16,16,16},
{6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,16,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6},
{6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6}
}
}
cNColors = {4,2,1,13,5,15}
cNSymbols = {"\002","\031","\030","\017","\016","o"}
currentCNLevelNum = 1
currentCNLevel = {}
isNextCNLevel = false
lastCNLevelNum = 3
cNLevels = {
{
{0,0,0,0,5,5,5,0,0,0,0,0,0,0},
{0,3,0,0,0,0,0,0,0,5,5,0,0,0},
{0,3,0,0,0,0,0,0,0,0,0,0,0,2},
{0,0,0,0,0,0,1,0,0,0,0,0,0,0},
{3,0,0,0,0,0,0,0,0,0,0,0,2,0},
{0,0,0,4,4,0,0,0,0,0,0,0,2,0},
{0,0,0,0,0,0,0,4,4,4,0,0,0,6}
},
{
{0,0,0,0,0,0,0,0,2,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0,0,0,6,0},
{0,4,4,4,0,5,5,5,0,0,0,0,0,0},
{0,1,1,0,0,0,3,0,0,0,0,0,0,0},
{0,0,0,0,0,2,3,0,0,0,0,0,0,0},
{0,0,0,0,0,2,3,0,0,0,0,0,0,0},
{0,0,0,0,0,2,3,0,0,0,0,0,0,0}
},
{
{0,0,0,2,4,4,2,4,4,0,0,0,0,0},
{0,0,0,2,0,3,1,3,0,0,0,0,0,0},
{0,0,0,0,0,4,4,3,0,0,0,0,0,0},
{0,0,5,0,4,4,0,3,0,0,4,4,0,0},
{0,0,0,2,5,5,5,3,3,0,0,0,0,0},
{0,0,0,2,0,0,0,0,3,0,6,0,0,0},
{0,0,0,2,0,0,2,0,0,0,0,0,0,0}
},
{
{0,0,0,0,0,0,0,0,0,0,2,5,5,5},
{0,0,0,0,0,0,0,0,0,0,2,3,3,1},
{0,0,0,0,0,0,0,0,0,0,2,4,4,4},
{0,5,5,5,5,0,0,2,0,0,5,0,4,6},
{0,0,4,4,4,3,4,0,4,4,4,4,2,0},
{0,0,0,5,5,3,0,0,0,5,5,5,0,0},
{0,0,0,0,0,0,0,3,0,0,0,0,2,0}
},
{
{0,0,2,0,0,2,0,0,2,0,0,0,0,0},
{0,0,2,5,5,5,0,0,0,4,0,0,0,0},
{6,5,2,0,0,0,0,0,4,0,0,1,1,1},
{0,5,0,0,0,0,0,0,0,0,0,1,1,1},
{0,0,0,0,2,0,0,0,0,0,0,1,1,1},
{0,0,0,3,0,0,0,0,0,0,0,0,0,0},
{0,0,0,4,4,0,0,0,0,0,0,0,0,0}
},
{
{5,5,5,5,5,3,0,0,3,2,0,0,0,2},
{0,0,3,0,0,3,0,0,3,0,2,0,2,0},
{0,0,3,1,0,3,0,0,3,6,2,0,2,0},
{0,0,3,0,0,0,5,5,0,0,0,5,0,0},
{0,0,3,0,0,3,0,0,3,0,3,0,3,0},
{0,0,3,0,0,3,0,0,3,0,3,0,3,0},
{0,0,3,0,0,3,0,0,3,3,0,0,0,3}
}
}
castleCharactersPixels = {
Witch = {
{12,14,11,12,12,1},
{14,11,11,11,12,12},
{11,11,11,11,11,12},
{14,5,5,16,14,12},
{14,5,5,5,14,13},
{14,12,12,12,14,13},
{14,12,12,5,5,5},
{14,12,12,12,14,14},
{14,5,5,5,14,14}
},
Zombie = {
{12,14,12,12,12,1},
{14,12,6,6,16,16},
{14,14,6,6,6,12},
{14,14,13,13,14,12},
{14,13,13,6,6,14},
{14,13,13,13,14,14},
{14,14,13,13,14,14},
{14,14,6,6,14,14},
{14,14,8,8,14,14}
},
Skeleton = {
{12,9,9,9,12,1},
{14,9,9,12,12,12},
{14,9,9,9,12,12},
{14,14,9,8,13,12},
{14,9,9,9,14,13},
{14,14,9,8,13,14},
{14,9,9,9,14,14},
{14,14,9,14,14,14},
{14,14,9,14,14,14}
},
Civilian = {
{12,14,13,13,12,1},
{14,13,13,16,12,12},
{14,14,5,5,12,12},
{14,14,4,4,14,12},
{14,14,4,4,14,14},
{14,14,4,4,14,14},
{14,14,12,12,14,14},
{14,14,12,12,14,14},
{14,14,8,8,14,14}
},
Devil = {
{12,14,16,12,12,1},
{14,12,15,16,12,12},
{14,14,15,15,12,12},
{14,14,16,16,14,12},
{14,14,16,16,14,14},
{14,14,16,16,14,14},
{14,14,8,8,14,14},
{14,14,8,8,14,14},
{14,14,16,16,14,14}
},
Guard = {
{12,14,12,12,12,8},
{14,12,8,8,12,8},
{14,14,8,8,12,16},
{14,14,16,16,14,16},
{14,14,16,16,16,16},
{14,14,16,16,14,16},
{14,14,8,8,14,16},
{14,14,8,8,14,16},
{14,14,8,8,14,16}
},
King = {
{12,5,12,5,12,5},
{14,2,5,6,5,3},
{14,14,16,2,16,12},
{14,14,2,2,2,12},
{14,14,14,2,14,14},
{14,7,7,7,7,7},
{14,7,7,7,7,7},
{14,14,8,8,8,14},
{14,14,8,14,8,14}
},
Error = {
{3,16,3,16,3,16},
{16,3,16,3,16,3},
{3,16,3,16,3,16},
{16,3,16,3,16,3},
{3,16,3,16,3,16},
{16,3,16,3,16,3},
{3,16,3,16,3,16},
{16,3,16,3,16,3},
{3,16,3,16,3,16}
},
Guitar = {
{12,14,13,13,12,1},
{14,9,13,13,9,12},
{14,9,13,13,9,12},
{14,14,13,13,14,12},
{14,14,13,13,14,14},
{14,13,8,8,13,14},
{14,13,8,8,13,14},
{14,16,13,13,16,14},
{14,16,14,14,16,14}
},
Sailor = {
{12,14,12,12,12,1},
{14,1,1,1,1,12},
{14,14,5,16,12,12},
{14,14,5,5,14,12},
{14,14,1,1,14,14},
{14,14,1,1,14,14},
{14,14,9,9,14,14},
{14,14,1,1,14,14},
{14,14,16,16,14,14}
},
Pirate = {
{12,14,16,16,1,1},
{14,16,16,16,16,12},
{14,14,5,16,12,12},
{14,14,5,13,14,12},
{14,5,15,13,14,14},
{14,9,15,15,14,14},
{14,9,15,15,14,14},
{14,14,12,12,14,14},
{14,14,12,12,14,14}
},
Fishborn = {
{12,8,8,8,12,1},
{14,8,10,16,12,12},
{14,14,10,10,12,12},
{14,16,8,8,14,12},
{14,9,8,10,14,14},
{14,9,9,9,14,14},
{14,9,8,8,14,14},
{14,14,8,8,14,14},
{14,14,9,9,14,14}
},
Cowboy = {
{12,14,13,13,1,1},
{14,13,13,13,13,12},
{14,14,5,16,12,1},
{14,14,5,5,8,2},
{14,14,13,12,14,14},
{14,14,13,12,14,14},
{14,14,13,13,14,14},
{14,14,2,2,14,14},
{14,14,16,16,14,14}
}
}
currentLocation = "worldMap"
locationPos = {
{x = 4, y = 15, locationName = "lighthouse"},
{x = 36, y = 9, locationName = "fishingHut"},
{x = 17, y = 9, locationName = "riddle"},
{x = 14, y = 7, locationName = "waterfall"},
{x = 3, y = 7, locationName = "alienOutside"},
{x = 30, y = 5, locationName = "castle"},
{x = 24, y = 7, locationName = "office"},
{x = 5, y = 9, locationName = "pizzeria"},
{x = 29, y = 18, locationName = "final"}
}
colorTable = {
colors.white,colors.orange,colors.magenta,colors.lightBlue,colors.yellow,colors.lime,colors.pink,colors.gray,colors.lightGray,colors.cyan,
colors.purple,colors.blue,colors.brown,colors.green,colors.red,colors.black}
player = {x = 10, y = 9}
locationVars = {
insideLighthouse = {frog = true}
}
locationText = {
lighthouse = "You feel a cold burst of wind as you walk closer to\nthe lighthouse.\n\nYou walk to the door and notice that it's open.\nWill you go in? (Yes/No)",
insideLighthouse = {
main = "You're in a three-floor lighthouse, no one seems to be here.\n\nThe bottom floor feels weird, you decided not to touch anything there.",
frog = "\nOn the middle floor, you see a frog with an iconic-looking hat on a bed. {Take}",
computer = "\nOn the top floor, you see an open laptop and the game \"Sad Mayor's Civil-Nations V\" loaded on it. {Play}"
},
civilNations = "--Sad Mayor's Civil-Nations V--\n\n(Move: wasd) (Reset: reset/r)\nGoal: \"Reach the goal (o)\"\n",
fishingHut = "You feel a breeze of air movement as you walk closer to the fishing hut of the island.\nSome might say it's economically bad to only have one per island but the empire of Forgefactsion doesn't give half a damn. {Illegaly sell fish/Fish}\n\nYou also see a comically large fishing pole and a seriously big fish next to it, you decide not to touch it.",
waterfall = "There's a \"Waterfall?Fatherwall. (American English)\" to the left of you and some phenomenal lookin' trees and nature and the left side of the screen to the right.\n\nThe beautiful sight inspires you to paint something. Will you put down a canvas while facing towards a completely different landscape? {Paint}\n\nA man walks outta da hill-hole. {Talk}",
alienOutside = "You look up and see a UFO flying in the Earth's atmosphere, green as grass (like actually the exact same color). You can send a telepathic signal to it to fly down to you but, will you even understand what the aliens will say? It's a bad idea if you ask me.. Oh, you have a dictionary. Nevermind, you should totally do that. {Do that}",
castle = "You walk to the all mighty castle of Forgefactsion wondering what you should even do inside as a guard looking man stops you and asks:\n\nGuard: Hello dear citiz... Wait, you aren't the king are you? *wink* What are you? [Guard] [\222\238\209\255]",
office = "Someone walks into an office building who looks just like you and like... is you. You see some regular water coolers and some cooler water coolers, you go into a meeting room to ask someone which water is the coolest but before you can even make a sound a man stops you and says:\n\nDealing of The Art Man: Hi, you must be our next financial robot, we threw the previous one out of the window so we really need you here. [Yes I am the robot] [No, sorry] [No, ef you]",
pizzeria = "As you walk into a mystical pizzeria, you feel like it's pizza time and it will be The Time of Pizza for a while.\nYou see a chef who looks like the main chef in your eyes <3 [Talk]\n\n(Pro tip: if you want to go to the right two tiles you can type \"dd\" instead of \"d\" twice)"
}
locationComplete = {false,false,false,false,false,false,false,false,false}
locationHints = {"A Computer at The Top Floor","Fishin' The Sea","The Wise Treasure","Painting The Trees","A Man in The Hole","Guard Duty","The Robots of The Future","Faster Food","Alienated Lands"}
function writeControls()
text = "Inputs: "
for i = 1, #controls, 1 do
text = text .. "{" .. controls[i] .. "} "
end
text = text .. "\n"
for i = 1, #controls2, 1 do
text = text .. "{" .. controls2[i] .. "} "
end
print(text .. "\n---------------------------------------------------")
end
function drawMapInScreen()
for i = 1, #worldMap, 1 do
for j = 1, #worldMap[i], 1 do
m.setTextColor(colorTable[worldMap[i][j][2]])
m.setBackgroundColor(colorTable[worldMap[i][j][3]])
m.setCursorPos(j,i)
m.write(worldMap[i][j][1])
end
end
m.setCursorPos(player["x"],player["y"])
m.setTextColor(colorTable[1])
m.setBackgroundColor(colorTable[worldMap[player["y"]][player["x"]][3]])
m.write("\002")
end
function drawPic(name)
for i = 1, #pics[name], 1 do
for j = 1, #pics[name][i], 1 do
if (pics[name][i][j] > 0) then
m.setBackgroundColor(colorTable[pics[name][i][j]])
m.setCursorPos(j,i)
m.write(" ")
end
end
end
end
function drawBox(x, y, w, h, text)
for i = 0, h-1, 1 do
for j = 0, w-1, 1 do
m.setCursorPos(x + j,y + i)
m.write(text)
end
end
end
function drawMapInConsole()
for i = 1, 9, 1 do
for j = 1, 9, 1 do
if (j == 1 and i ~= 1) then
print()
end
trueI = player["y"] + (i - 5)
trueJ = player["x"] + (j - 5)
didDraw = false
if (trueI > 0 and trueI <= #worldMap) then
if (trueJ > 0 and trueJ <= #worldMap[trueI]) then
didDraw = true
if (i == 5 and j == 5) then
term.write("\002")
else
if (worldMap[trueI][trueJ][1] == "\000") then
term.write("X")
else
term.write(worldMap[trueI][trueJ][1])
end
end
end
end
if (not didDraw) then
term.write(" ")
end
end
end
print("\n")
end
function moveFleet(x,y,fleetNum)
players = {}
doesPlayerMove = true
for i = 1, #currentCNLevel, 1 do
for j = 1, #currentCNLevel[i], 1 do
if (currentCNLevel[i][j] == 1) then
players[#players + 1] = {i,j}
if (i + y >= 1 and i + y <= #currentCNLevel and j + x >= 1 and j + x <= #currentCNLevel[i]) then
if (currentCNLevel[i + y][j + x] > 1 and currentCNLevel[i + y][j + x] < 6) then
doesPlayerMove = false
elseif (currentCNLevel[i + y][j + x] == 6) then
isNextCNLevel = true
doesPlayerMove = false
end
else
doesPlayerMove = false
end
end
end
end
if (doesPlayerMove) then
for i = 1, #players, 1 do
currentCNLevel[players[i][1]][players[i][2]] = 0
end
for i = 1, #players, 1 do
currentCNLevel[players[i][1] + y][players[i][2] + x] = 1
end
end
movings = {}
for i = 1, #currentCNLevel, 1 do
for j = 1, #currentCNLevel[i], 1 do
if (currentCNLevel[i][j] == fleetNum) then
if (i + y >= 1 and i + y <= #currentCNLevel and j + x >= 1 and j + x <= #currentCNLevel[i]) then
if (currentCNLevel[i + y][j + x] == 0) then
movings[#movings + 1] = {i,j}
end
end
end
end
end
for i = 1, #movings, 1 do
currentCNLevel[movings[i][1] + y][movings[i][2] + x] = fleetNum
isNext = true
j = 0
step = -1
if (y < 0 or x < 0) then
step = 1
end
isY = 1
if (y == 0) then
isY = 0
end
isX = 1 - isY
while (isNext) do
if (movings[i][1] + (j + step)*isY <= #currentCNLevel and movings[i][1] + (j + step)*isY >= 1 and
movings[i][2] + (j + step)*isX <= #currentCNLevel[1] and movings[i][2] + (j + step)*isX >= 1) then
if (currentCNLevel[movings[i][1] + (j + step)*isY][movings[i][2] + (j + step)*isX] == fleetNum) then
j = j + step
else
currentCNLevel[movings[i][1] + j*isY][movings[i][2] + j*isX] = 0
isNext = false
end
else
currentCNLevel[movings[i][1] + j*isY][movings[i][2] + j*isX] = 0
isNext = false
end
end
end
end
function finishLocation(text, itemName, itemDescription)
textNextFrame["frame"] = 1
textNextFrame["text"] = text
inventory[#inventory + 1] = {itemName,itemDescription}
currentLocation = "worldMap"
input = ""
inputOverride = true
end
function exitLocation(text)
textNextFrame["frame"] = 1
textNextFrame["text"] = text
currentLocation = "worldMap"
input = ""
inputOverride = true
end
function smartWrite(text, x, y)
startX = x
startY = y
xMinus = 0
lineBreaks = 0
for i = 1, #text, 1 do
currentLetter = text:sub(i, i)
if (currentLetter == "\n") then
lineBreaks = lineBreaks + 1
xMinus = i
i = i + 2
else
m.setCursorPos(startX - xMinus + i,startY + lineBreaks)
m.write(currentLetter)
end
end
end
writeControls()
drawMapInScreen()
drawMapInConsole()
isEntered = false
inputOverride = false
isEnterable = false
textNextFrame = {frame = -1, text = ""}
isPrevStop = false
fishPoints = 0
fishTable = {0,0}
riddleNum = 1
riddleQuestions = {
"Starts with the letter F, often hops, ends in rog",
"Hard to miss, waves like it's airing, popular language",
"Hard to mist, heaves like it's broken, non-plural, endind",
"Card two-king, at some tables it can get ten more",
"Often red cloth, south yet chill E, guitar accessory noo",
"Powerful card yet weak piece",
"Sues a jeep (teal), hard to pan a man, hungry for spoon",
"Ain't no grog or ale, better off searching"
}
riddleAnswers = {"frog","sea","wind","ace","cape","king","canal","joli rouge"}
chessPhase = 1
chessNoPhase = 1
chessNos = {"HELL NO", "Nuh-uh!", "Noooooooo", "N\007\007\007\008\007\008\007\008\008"}
alienDictionary = {{"-",""},{"?",""},{"ael",""},{"aeq",""},{"al",""},{"ao",""},{"aun",""},{"b",""},{"d",""},{"eqzoy",""},{"frzoy",""},{"ww","hello"}}
alienLocation = ""
isAlienGold = true
isLighthouseSecret = true
currentCastlePhase = -1
currentCastleCharacter = 1
isCastleYes = true
castleCharacters = {
{name = "Witch", text = "Well hello dear sir, I'm just passing\nthrough... the castle...", question = "\nLet her inside the castle? [Yes] [No]", yes = "yes" ,yesText = "YES! I KNEW IT WOULD WORK!!", no = "no", noText = "Watch your back with all your eyes.", isAny = false},
{name = "Zombie", text = "EEEEeeeeeh.", question = "\nLet it inside? [Yes] [Loot]", yes = "yes" ,yesText = "Eh.", no = "loot", noText = "(You've got some flesh, you could make a backpack\nout of it but you decide to\nthrow it out)", isAny = false},
{name = "Skeleton", text = "Doot.", question = "\nDoot? [Doot] [Doot]", yes = "doot" ,yesText = "(It doot)", no = "", noText = "", isAny = true},
{name = "Civilian", text = "Good morning. *Shows valid Id card*", question = "\nLet them civilize? [Yes] [DENIED]", yes = "yes" ,yesText = "*Goes inside*", no = "denied", noText = "Soon.", isAny = false},
{name = "Devil", text = "I've come to make three.", question = "\nLet him inside? [Devil yes] [Devil no]", yes = "devil yes" ,yesText = "Bad choice.", no = "devil no", noText = "Sabotage eh? I like it.", isAny = false},
{name = "Guard", text = "Hello partner.", question = "\nLet them in? [Yes] [No?]", yes = "yes" ,yesText = "Gooday'", no = "no?", noText = "*Invisibly facepalms* What do you mean\nwho do I call a partner? ...\nYou know what? No permission, no work.", isAny = false},
{name = "King", text = "(The king looks at you like you were\none big)", question = "\nLet THE in? [Um] [Ye?]", yes = "um" ,yesText = "(The king just walked inside without\nmuch care for your approval)", no = "ye?", noText = "", isAny = true},
{name = "Error", text = "[MISSING TEXT]", question = "\n[MISSING QUESTION] [MISSING YES] [MISSING ]", yes = "missing yes" ,yesText = "[MISSING TEXT]", no = "missing ", noText = "", isAny = true},
{name = "Guitar", text = "(You see a guitar or so you interfret,\nwill you let it hammer on?)", question = "\nLet itin? [Pick] [Break]", yes = "pick" ,yesText = "(You have picked on the guitar and it\ngave you the signature \"The Looks\")", no = "break", noText = "(You broke your neck and died but then\ngot resurrected by some old dude)", isAny = false},
{name = "Sailor", text = "Mornin', I've come to see the king\nto make a.. request.", question = "\nLedemin? [Ye] [No can do]", yes = "ye" ,yesText = "Thank ya, sir! Also, watch out\nfor pirates.", no = "no can do", noText = "Damn yourself, I wish you a pirateful\nevening. (It's mid-day)", isAny = false},
{name = "Pirate", text = "Mornin' or whatever, I for one a sailor\nof them seas and oceans of water.\nArr... I mean, Narr.", question = "\nLem? [Hell Yeaah] [Narr]", yes = "hell yeaah" ,yesText = "Damn straight!", no = "narr", noText = "Arr, no one chooses the Wah.", isAny = false},
{name = "Fishborn", text = "(You see the Fishborn and you really\nwant to say something to them)", question = "\n[1] I was never such an adventurer like you.\n[2] Respect the law, and you disrespect me.\n[3] Let me guess... someone gave you a roll-sweet.\n[4] If those Fracfrog guards can take down a fish, so can we.\n[5] My cousin's out guarding, and what do I get? Gardening.", yes = "" ,yesText = "(The Fishborn puts a bucket on your\nhead and you hear civilians screaming and\nfire being cast, you do nothing.)", no = "", noText = "", isAny = true},
{name = "Cowboy", text = "Stickful o' howdies.", question = "\nl? yes:[no] no:[yes]", yes = "no" ,yesText = "You have died! (+1 Anger)", no = "yes", noText = "", isAny = true},
}
officePhase = 0
officeFailText = ""
pizzaNum = 0
isPizza = false
isPizzable = false
pizzaPos = {
{x = 4, y = 15, text = "address: where nations civilize"},
{x = 36, y = 9, text = "address: where fish are bigger than sharks"},
{x = 14, y = 7, text = "address: where men know their clouds"},
{x = 24, y = 7, text = "address: blooming dreams, struggling company"},
{x = 30, y = 5, text = "address: where fish born and go to"},
{x = 3, y = 7, text = "address: where grass flies"},
{x = 5, y = 9, text = "address: where here"}
}
isLavaRemoved = false
while (run) do
if (not inputOverride) then
input = read()
input = string.lower(input)
end
inputOverride = false
if (input == "stop") then
isPrevStop = true
print("\n\nAre you sure you want to quit? It will remove all your progress\n\nYes: [Yes I do want to DELETE all the progression I have made this playthrough 1211]\nNo: (Type anything else)")
elseif (isPrevStop) then
if (input == "yes i do want to delete all the progression i have made this playthrough 1211" or input == "yeslol") then
print("\nThanks for playing!")
if (input ~= "yeslol") then
print("(Also you could've typed \"yeslol\" to quit)")
end