-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
zork1-infodump.txt
3932 lines (3525 loc) · 115 KB
/
zork1-infodump.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Story file is /Users/icculus/projects/mojozork/zork1.dat
**** Story file header ****
Z-code version: 3
Interpreter flags: Display score/moves
Release number: 88
Size of resident memory: 4e37
Start PC: 4f05
Dictionary address: 3b21
Object table address: 02b0
Global variables address: 2271
Size of dynamic memory: 2e53
Game flags: None
Serial number: 840726
Abbreviations address: 01f0
File size: 14b8c
Checksum: a129
Inform Version: 0
**** Story file map ****
Base End Size
0 3f 40 Story file header
40 1ef 1b0 Abbreviation data
1f0 2af c0 Abbreviation pointer table
2b0 bb7 908 Object table
bb8 2270 16b9 Property data
2271 2450 1e0 Global variables
2451 2e52 a02
2e53 2f5e 10c Grammar pointer table
2f5f 3892 934 Grammar data
3893 39b6 124 Action routine table
39b7 3ada 124 Pre-action routine table
3adb 3b20 46 Preposition table
3b21 4e36 1316 Dictionary
4e37 14b8b fd55 Paged memory
**** Abbreviations ****
[ 0] "the "
[ 1] "The "
[ 2] "You "
[ 3] ", "
[ 4] "your "
[ 5] "is "
[ 6] "and "
[ 7] "you "
[ 8] "There "
[ 9] "can't "
[10] "of "
[11] "to "
[12] ". "
[13] "with "
[14] "are "
[15] "that "
[16] "have "
[17] "which "
[18] "This "
[19] "from "
[20] "large "
[21] "through "
[22] "appears "
[23] "in "
[24] "here"
[25] "water "
[26] "room "
[27] "Cyclops "
[28] "leading "
[29] "narrow "
[30] "cannot "
[31] "small "
[32] "into "
[33] "cyclops "
[34] "his "
[35] "thief "
[36] "It "
[37] "south "
[38] "seems "
[39] "already "
[40] "don't "
[41] "be "
[42] "but "
[43] "would "
[44] "Your "
[45] "there "
[46] "can "
[47] "this "
[48] "It's "
[49] "staircase "
[50] "on "
[51] "for "
[52] "west "
[53] "east "
[54] "north "
[55] "not "
[56] "troll "
[57] "nothing "
[58] "looking "
[59] "I "
[60] "path "
[61] "closed"
[62] "candles "
[63] "Frigid "
[64] "won't "
[65] "probably "
[66] "here "
[67] "Room"
[68] "about "
[69] "A "
[70] "too "
[71] "that"
[72] "room"
[73] "door "
[74] "grating "
[75] "ground "
[76] "out "
[77] "other "
[78] "wall "
[79] "passages "
[80] "impossible "
[81] "has "
[82] "over "
[83] "level "
[84] "knocks "
[85] "before "
[86] "passage "
[87] "Fortunately"
[88] "Unfortunately"
[89] "it "
[90] "an "
[91] "think "
[92] "river "
[93] "troll's "
[94] "doesn't "
[95] "You're "
**** Objects ****
Object count = 250
1. Attributes: 14, 28
Parent object: 247 Sibling object: 2 Child object: 0
Property address: 0bb8
Description: "pair of hands"
Properties:
[18] 46 dc 42 c2 42 b4
[16] 82
2. Attributes: None
Parent object: 247 Sibling object: 3 Child object: 0
Property address: 0bcb
Description: "zorkmid"
Properties:
[18] 4e 29
[17] 2a 04
3. Attributes: 14
Parent object: 247 Sibling object: 5 Child object: 0
Property address: 0bd9
Description: "way"
Properties:
[18] 46 f8 3e d2 4c 46 47 14
[17] 29 e3
[16] 85 f2 84 83
4. Attributes: 7, 9, 14, 30
Parent object: 0 Sibling object: 0 Child object: 0
Property address: 0bee
Description: "cretin"
Properties:
[18] 3b 59
[17] 00 00
[ 7] 00 00
5. Attributes: 30
Parent object: 247 Sibling object: 6 Child object: 0
Property address: 0bfd
Description: "you"
Properties:
[18] 45 93 45 e0 49 91 3e d9
[17] 29 5c
6. Attributes: 14
Parent object: 247 Sibling object: 7 Child object: 0
Property address: 0c0d
Description: "blast of air"
Properties:
[18] 45 1c 3b 6e 45 c4 3d 4a
7. Attributes: None
Parent object: 247 Sibling object: 8 Child object: 0
Property address: 0c20
Description: "lurking grue"
Properties:
[18] 42 91
[17] 28 c5
[16] 88 87 ce 86
8. Attributes: None
Parent object: 247 Sibling object: 9 Child object: 0
Property address: 0c35
Description: "ground"
Properties:
[18] 42 83 49 05 3f 6c 41 3a
[17] 28 ab
9. Attributes: 14
Parent object: 247 Sibling object: 10 Child object: 0
Property address: 0c47
Description: "sailor"
Properties:
[18] 48 fe 41 5d 3b de
[17] 28 7d
10. Attributes: 14
Parent object: 247 Sibling object: 12 Child object: 0
Property address: 0c57
Description: "blessings"
Properties:
[18] 3c a9 42 59
11. Attributes: None
Parent object: 0 Sibling object: 0 Child object: 0
Property address: 0c64
Description: "such thing"
Properties:
[17] 27 d1
12. Attributes: 3, 14
Parent object: 247 Sibling object: 14 Child object: 0
Property address: 0c71
Description: "random object"
Properties:
[18] 43 cc 4b ba 42 f3 43 0f
13. Attributes: None
Parent object: 249 Sibling object: 92 Child object: 0
Property address: 0c86
Description: "pseudo"
Properties:
[17] 29 5c
14. Attributes: 28
Parent object: 247 Sibling object: 249 Child object: 0
Property address: 0c8f
Description: "number"
Properties:
[18] 43 a9
15. Attributes: 6
Parent object: 82 Sibling object: 16 Child object: 0
Property address: 0c98
Description: "Slide Room"
Properties:
[31] 18
[30] 2d
[22] 48
[11] 99 f0
[ 5] cd
16. Attributes: 6
Parent object: 82 Sibling object: 17 Child object: 0
Property address: 0cab
Description: "Coal Mine"
Properties:
[31] 11
[29] 10
[22] 15
[11] 99 e2
17. Attributes: 6
Parent object: 82 Sibling object: 18 Child object: 0
Property address: 0cbe
Description: "Coal Mine"
Properties:
[30] 12
[28] 11
[24] 10
[11] 99 e2
18. Attributes: 6
Parent object: 82 Sibling object: 19 Child object: 0
Property address: 0cd1
Description: "Coal Mine"
Properties:
[31] 12
[28] 13
[25] 11
[11] 99 e2
19. Attributes: 6
Parent object: 82 Sibling object: 157 Child object: 0
Property address: 0ce4
Description: "Coal Mine"
Properties:
[31] 7c
[30] 13
[27] 12
[11] 99 e2
20. Attributes: 6
Parent object: 82 Sibling object: 21 Child object: 0
Property address: 0cf7
Description: "Ladder Bottom"
Properties:
[29] ce
[28] 76
[23] 15
[11] 99 4b
[ 5] 75
21. Attributes: 6
Parent object: 82 Sibling object: 124 Child object: 0
Property address: 0d0e
Description: "Ladder Top"
Properties:
[23] 10
[22] 14
[11] 99 23
[ 5] 75 49
22. Attributes: 6
Parent object: 82 Sibling object: 226 Child object: 0
Property address: 0d22
Description: "Smelly Room"
Properties:
[28] e2
[22] 7c
[11] 98 dc
[ 5] 49
[ 4] 46 42 7c d6 41 e9 7c d6
23. Attributes: 6
Parent object: 82 Sibling object: 24 Child object: 0
Property address: 0d3e
Description: "Squeaky Room"
Properties:
[31] de
[30] 18
[11] 98 6d
24. Attributes: 6
Parent object: 82 Sibling object: 25 Child object: 0
Property address: 0d4f
Description: "Mine Entrance"
Properties:
[29] 17
[28] 0f
[21] 17
[11] 98 46
25. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 26 Child object: 0
Property address: 0d64
Description: "Canyon View"
Properties:
[30] 1a
[29] 4c
[28] 8f 43
[26] 4a
[22] 1a
[17] 27 77
[11] 97 9a
[ 5] 5d 83 84
26. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 27 Child object: 0
Property address: 0d83
Description: "Rocky Ledge"
Properties:
[23] 19
[22] 1b
[11] 97 5a
[ 5] 5d 83
27. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 136 Child object: 0
Property address: 0d99
Description: "Canyon Bottom"
Properties:
[31] 88
[23] 1a
[11] 97 2e
[ 5] ee 5d 83
28. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 29 Child object: 0
Property address: 0db0
Description: "On the Rainbow"
Properties:
[30] 1d
[29] 88
[11] 96 b2
[ 5] 84
29. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 126 Child object: 0
Property address: 0dc5
Description: "Aragain Falls"
Properties:
[31] 1e
[29] 1c 9e 00 00
[23] 1c 9e 00 00
[22] 96 ac
[17] 73 cb
[ 5] ee 83 84
30. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 31 Child object: 0
Property address: 0de7
Description: "Shore"
Properties:
[31] 78
[28] 1d
[11] 96 40
[ 5] ee 83
31. Attributes: 4, 9, 20
Parent object: 82 Sibling object: 130 Child object: 0
Property address: 0df7
Description: "Frigid River"
Properties:
[30] 1e
[23] 95 1a
[19] 1e
[11] 96 26
[ 5] ee 83
32. Attributes: 6, 9
Parent object: 82 Sibling object: 33 Child object: 0
Property address: 0e0c
Description: "White Cliffs Beach"
Properties:
[31] 21 a4 95 c7
[17] 73 44
[11] 95 cd
[ 5] ee 5c 83
33. Attributes: 6, 9
Parent object: 82 Sibling object: 34 Child object: 0
Property address: 0e2b
Description: "White Cliffs Beach"
Properties:
[29] 27 a4 95 c7
[28] 20 a4 95 c7
[17] 73 44
[11] 95 98
[ 5] ee 5c 83
34. Attributes: 4, 9
Parent object: 82 Sibling object: 35 Child object: 0
Property address: 0e4f
Description: "Frigid River"
Properties:
[29] 21
[23] 95 1a
[22] 82
[19] 21
[11] 95 72
[ 5] ee 83
35. Attributes: 4, 9
Parent object: 82 Sibling object: 36 Child object: 0
Property address: 0e66
Description: "Frigid River"
Properties:
[30] 95 27
[29] 95 65
[23] 95 1a
[22] 22
[19] 95 5b
[11] 95 34
[ 5] ee 83
36. Attributes: 4, 9, 20
Parent object: 82 Sibling object: 140 Child object: 0
Property address: 0e82
Description: "Frigid River"
Properties:
[30] 95 27
[29] 8c
[23] 95 1a
[22] 23
[19] 8c
[11] 94 fc
[ 5] ee 83
37. Attributes: 6
Parent object: 82 Sibling object: 38 Child object: 0
Property address: 0e9c
Description: "Chasm"
Properties:
[28] 26
[27] 32
[24] 29
[23] 29
[22] 93 12
[11] 92 ef
[ 5] b0 49
[ 4] 3e 0e 7c 52
38. Attributes: 6
Parent object: 82 Sibling object: 138 Child object: 0
Property address: 0eb8
Description: "North-South Passage"
Properties:
[31] 25
[28] 6b
[27] 28
[11] 92 dd
39. Attributes: 6
Parent object: 82 Sibling object: 40 Child object: 0
Property address: 0ed3
Description: "Damp Cave"
Properties:
[30] 21
[29] 8a
[28] 92 d5
[11] 92 b4
[ 5] b0
40. Attributes: 6
Parent object: 82 Sibling object: 107 Child object: 0
Property address: 0ee9
Description: "Deep Canyon"
Properties:
[30] d7
[26] 32
[24] 26
[22] 8a
[17] 66 f2
[ 5] 49
41. Attributes: 6
Parent object: 82 Sibling object: 187 Child object: 0
Property address: 0f02
Description: "East-West Passage"
Properties:
[31] 25
[30] 6b
[29] 66
[22] 25
[13] 00 05
[11] 92 79
[ 5] 49
42. Attributes: 6
Parent object: 82 Sibling object: 43 Child object: 0
Property address: 0f22
Description: "Twisting Passage"
Properties:
[31] 96
[30] 2f
[11] 92 4f
43. Attributes: 6
Parent object: 82 Sibling object: 44 Child object: 0
Property address: 0f37
Description: "Winding Passage"
Properties:
[31] 98
[30] 2e
[11] 92 4f
44. Attributes: 6
Parent object: 82 Sibling object: 45 Child object: 0
Property address: 0f4c
Description: "Narrow Passage"
Properties:
[31] 6b
[28] 98
[11] 92 32
45. Attributes: 6
Parent object: 82 Sibling object: 46 Child object: 0
Property address: 0f61
Description: "Cold Passage"
Properties:
[29] 0f
[28] 96
[11] 92 16
46. Attributes: 6
Parent object: 82 Sibling object: 47 Child object: 0
Property address: 0f74
Description: "Cave"
Properties:
[31] 98
[29] 2b
[22] e8
[17] 70 a5
[11] 91 fe
[ 5] 49
47. Attributes: 6
Parent object: 82 Sibling object: 152 Child object: 0
Property address: 0f88
Description: "Cave"
Properties:
[31] 96
[29] 2a
[28] bb
[22] bb
[11] 91 ec
[ 5] 49
48. Attributes: 4
Parent object: 82 Sibling object: 49 Child object: 0
Property address: 0f9b
Description: "Stream"
Properties:
[30] 64
[29] 91 e4
[23] 91 e4
[22] 64
[19] 31
[11] 91 b4
[ 5] ee
[ 4] 4b 12 7c 39
49. Attributes: 6
Parent object: 82 Sibling object: 172 Child object: 0
Property address: 0fb9
Description: "Stream View"
Properties:
[30] 32
[29] 91 a5
[11] 91 86
[ 5] ee
[ 4] 4b 12 7c 39
50. Attributes: 6
Parent object: 82 Sibling object: 190 Child object: 0
Property address: 0fd4
Description: "Reservoir South"
Properties:
[31] 64 a0 91 7b
[30] d7
[29] 31
[25] 28
[24] 25
[17] 60 87
[ 5] ee
[ 4] 44 4a 7c 19 3e 0e 7c 52
51. Attributes: 6
Parent object: 82 Sibling object: 185 Child object: 0
Property address: 0ffd
Description: "Strange Passage"
Properties:
[30] c1
[29] b9
[21] b9
[11] 91 28
52. Attributes: 5, 6
Parent object: 82 Sibling object: 53 Child object: 0
Property address: 1014
Description: "Maze"
Properties:
[29] 35
[28] 3f
[25] b9
[11] 90 cd
53. Attributes: 5, 6
Parent object: 82 Sibling object: 54 Child object: 0
Property address: 1023
Description: "Maze"
Properties:
[29] 34
[28] 3f
[27] 3f
[26] 35
[11] 90 cd
54. Attributes: 5, 6
Parent object: 82 Sibling object: 55 Child object: 0
Property address: 1034
Description: "Maze"
Properties:
[30] 3c
[29] 3a
[28] 3b
[22] 38
[11] 90 cd
55. Attributes: 5, 6
Parent object: 82 Sibling object: 56 Child object: 0
Property address: 1045
Description: "Dead End"
Properties:
[28] 38
[11] 90 e0
56. Attributes: 5, 6
Parent object: 82 Sibling object: 57 Child object: 0
Property address: 1054
Description: "Maze"
Properties:
[31] 37
[30] 36
[24] 3a
[23] 3c
[22] 57 d3 00
[11] 90 cd
57. Attributes: 6
Parent object: 82 Sibling object: 58 Child object: 0
Property address: 1069
Description: "Grating Room"
Properties:
[24] 3a
[23] 8f ae 91 11 00
[17] 56 df
[ 5] ae
58. Attributes: 5, 6
Parent object: 82 Sibling object: 59 Child object: 0
Property address: 1080
Description: "Maze"
Properties:
[27] 39
[26] 36
[24] 38
[22] 3b
[11] 90 cd
59. Attributes: 5, 6
Parent object: 82 Sibling object: 60 Child object: 0
Property address: 1091
Description: "Maze"
Properties:
[30] 3c
[29] 36
[23] 3a
[11] 90 cd
60. Attributes: 5, 6
Parent object: 82 Sibling object: 61 Child object: 0
Property address: 10a0
Description: "Maze"
Properties:
[31] 40
[30] 3b
[29] 38
[28] 36
[26] 3c
[22] 57 d3 00
[11] 90 cd
61. Attributes: 5, 6
Parent object: 82 Sibling object: 62 Child object: 0
Property address: 10b7
Description: "Dead End"
Properties:
[31] 3e
[11] 90 e0
62. Attributes: 5, 6
Parent object: 82 Sibling object: 63 Child object: 0
Property address: 10c6
Description: "Maze"
Properties:
[29] 3e
[27] 3f
[25] 3d
[11] 90 cd
63. Attributes: 5, 6
Parent object: 82 Sibling object: 64 Child object: 0
Property address: 10d5
Description: "Maze"
Properties:
[30] 3e
[29] 40
[28] 34
[23] 35
[22] 57 d3 00
[11] 90 cd
64. Attributes: 5, 6
Parent object: 82 Sibling object: 65 Child object: 0
Property address: 10ea
Description: "Maze"
Properties:
[30] 3f
[29] 40
[23] 3c
[22] a7
[11] 90 cd
65. Attributes: 5, 6
Parent object: 82 Sibling object: 167 Child object: 0
Property address: 10fb
Description: "Dead End"
Properties:
[29] a7
[11] 90 e0
66. Attributes: 5, 6
Parent object: 82 Sibling object: 67 Child object: 0
Property address: 110a
Description: "Dead End"
Properties:
[28] 43
[11] 90 e0
67. Attributes: 5, 6
Parent object: 82 Sibling object: 68 Child object: 0
Property address: 1119
Description: "Maze"
Properties:
[31] 46
[30] 42
[29] 44
[11] 90 cd
68. Attributes: 5, 6
Parent object: 82 Sibling object: 69 Child object: 0
Property address: 1128
Description: "Maze"
Properties:
[31] 43
[29] 45
[23] a7
[11] 90 cd
69. Attributes: 5, 6
Parent object: 82 Sibling object: 70 Child object: 0
Property address: 1137
Description: "Maze"
Properties:
[30] 44
[28] 46
[22] 57 d3 00
[11] 90 cd
70. Attributes: 5, 6
Parent object: 82 Sibling object: 94 Child object: 0
Property address: 1148
Description: "Maze"
Properties:
[31] 46
[30] 66
[29] 43
[28] 45
[11] 90 cd
71. Attributes: 6
Parent object: 82 Sibling object: 102 Child object: 0
Property address: 1159
Description: "East of Chasm"
Properties:
[31] 48
[30] 94
[22] 90 2a
[11] 90 09
[ 4] 3e 0e 7c 52
72. Attributes: 6
Parent object: 82 Sibling object: 193 Child object: 0
Property address: 1174
Description: "Cellar"
Properties:
[31] 66
[29] 8f be
[28] 47
[23] c1 b7 00 00 00
[17] 52 53
[13] 00 19
[ 5] b7 cd 49
73. Attributes: 14, 24
Parent object: 249 Sibling object: 13 Child object: 0
Property address: 1193
Description: "stairs"
Properties:
[18] 4a b7 4a ef 4a b0 4a be
[17] 28 6b
[16] c7 f3 99 89 dc
74. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 143 Child object: 0
Property address: 11ab
Description: "Clearing"
Properties:
[31] 4d
[30] 19
[29] 4f
[28] 4c
[23] 8e e2
[17] 79 74
[11] 8f 83
[ 5] f1 f4 f3 f2
75. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 76 Child object: 0
Property address: 11c9
Description: "Forest Path"
Properties:
[31] 8f
[30] 4d
[29] 4e
[28] 51
[23] 58
[17] 79 74
[11] 8f 4f
[ 5] f1 f4 f3 f2
76. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 239 Child object: 0
Property address: 11ea
Description: "Forest"
Properties:
[31] 4a
[30] 8f 33
[29] 4e
[28] 8f 43
[26] 50
[23] 8e e2
[17] 79 74
[11] 8e fb
[ 5] f1 f4 f3 f2
77. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 78 Child object: 0
Property address: 120c
Description: "Forest"
Properties:
[31] 8f 0a
[30] ef
[29] 4b
[28] 4a
[23] 8e e2
[17] 79 74
[11] 8e fb
[ 5] f1 f4 f3 f2
78. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 79 Child object: 0
Property address: 122b
Description: "Forest"
Properties:
[31] 8f
[30] 4b
[29] 8e ee
[28] 4c
[23] 8e e2
[17] 79 74
[11] 8e ca
[ 5] f1 f4 f3 f2
79. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 80 Child object: 0
Property address: 124a
Description: "Behind House"
Properties:
[31] 51
[30] 4a
[29] cb eb 00 00 00
[28] 50
[26] 51
[24] 50
[21] cb eb 00 00 00
[17] 4a ca
[ 5] f3 eb
80. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 81 Child object: 0
Property address: 1272
Description: "South of House"
Properties:
[31] 8e a7
[30] 4f
[29] b4
[28] 4c
[27] 4f
[26] b4
[11] 8e b0
[ 5] b6 fa f3
81. Attributes: 6, 9, 20
Parent object: 82 Sibling object: 178 Child object: 0
Property address: 1292
Description: "North of House"
Properties:
[31] 4b
[30] 4f
[29] b4
[28] 8e a7
[25] 4f
[24] b4
[11] 8e 82
[ 5] b6 fa f3
82. Attributes: None