-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbeta.mud
3114 lines (2826 loc) · 91.2 KB
/
beta.mud
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
/*
beta.mud
Master muddle file for MicroCosm Beta release.
Chip Morningstar
Lucasfilm Ltd.
4-May-1986
Adapted from earlier versions by Aric Wilmunder & Randy Farmer
*/
class class_region 0 {
sound error_beep
sound region_boing
sound footsteps
sound teleport_region_change_0
sound teleport_region_change_0_pw
sound teleport_region_change_1
sound teleport_region_change_1_pw
sound teleport_region_change_2
sound teleport_arrival
sound teleport_arrival_pw
sound region_change_music_v0
sound region_change_music_v1
sound region_change_music_v2
action illegal /* do */
action illegal /* reversed do */
action GoToNewRegion /* go */
action generic_cease /* stop */
action illegal /* get */
action illegal /* put */
action generic_broadcast /* talk */
action illegal /* destroy */
action transit_region /* 8 */
action toggle_ghost_mode /* 9 f1*/
action toggle_walking_music /* 10 f2*/
action fn_key_pressed /* 11 f3*/
action fn_key_pressed /* 12 f4*/
action fn_key_pressed /* 13 f5*/
action change_player_color /* 14 f6*/
action ask_for_help /* 15 f7*/
action fn_key_pressed /* 16 f8*/
action boing /* 17 */
action do_a_gesture /* 18 */
byte 6 /* Object instance length */
byte 0 /* Initalization count */
byte 0 /* Capacity */
}
class class_avatar 1 {
sound avatar_injured
sound avatar_injured_pw
sound avatar_killed
sound avatar_killed_pw
sound avatar_into_stone
sound avatar_out_of_stone
sound message_sent
sound message_sent
sound message_received
sound message_sent
sound clothes_donned
sound clothes_doffed
action avatar_do /* do */
action noEffect /* reversed do */
action avatar_go /* go */
action generic_cease /* stop */
action avatar_get /* get */
action avatar_put /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action avatar_WALK /* 8 -- WALK* */
action avatar_ATTACK /* 9 -- ATTACK* */
action avatar_BASH /* 10 -- BASH* */
action noEffect /* 11 -- was DIE */
action avatar_CLOSE /* 12 -- CLOSE* */
action avatar_CLOSECONTAINER /* 13 -- CLOSECONTAINER* */
action generic_SPEAK /* 14 -- SPEAK* */
action avatar_GETM /* 15 -- GET* */
action avatar_SITORGETUP /* 16 -- SITORGETUP* */
action avatar_GRABFROM /* 17 -- GRABFROM* */
action avatar_OPEN /* 18 -- OPEN* */
action avatar_OPENCONTAINER /* 19 -- OPENCONTAINER* */
action avatar_POSTURE /* 20 -- POSTURE* */
action noEffect
action avatar_PUTM /* 22 -- PUT* */
action noEffect /* 23 -- was REINCARNATE */
action avatar_THROW /* 24 -- THROW* */
action noEffect
action noEffect
action noEffect
action avatar_WEAR /* 28 -- WEAR* */
action avatar_REMOVE /* 29 -- REMOVE* */
action avatar_PAID /* 30 -- PAID* */
image avatar_side_image
image avatar_peng_image
image avatar_spid_image
image avatar_drag_image
image avatar_gunship_image
image avatar_tank_image
image avatar_tentacle_image
byte 48 /* Object instance length */
byte 140 /* 128+12 Initialization count */
byte 7 /* Capacity */
}
class class_head 127 {
action head_do /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action head_get /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action generic_goToAndDropAt /* 8 -- internal */
image head_placeholder_0 0
image head_placeholder_1 1
image head_placeholder_2 2
image head_placeholder_3 3
image head_placeholder_4 4
image head_placeholder_5 5
image head_placeholder_6 6
image head_placeholder_7 7
image head_placeholder_8 8
image head_placeholder_9 9
image head_placeholder_10 10
image head_placeholder_11 11
image head_placeholder_12 12
image head_placeholder_13 13
image head_placeholder_14 14
image head_placeholder_15 15
image head_placeholder_16 16
image head_placeholder_17 17
image head_placeholder_18 18
image head_placeholder_19 19
image head_placeholder_20 20
image head_placeholder_21 21
image head_placeholder_22 22
image head_placeholder_23 23
image head_placeholder_24 24
image head_placeholder_25 25
image head_placeholder_26 26
image head_placeholder_27 27
image head_placeholder_28 28
image head_placeholder_29 29
image head_placeholder_30 30
image head_placeholder_31 31
head head_image_reserved
head head_image_1
head head_image_2
head head_image_3
head head_image_4
head head_image_5
head head_image_6
head head_image_7
head head_image_8
head head_image_9
head head_image_10
head head_image_11
head head_image_12
head head_image_13
head head_image_14
head head_image_15
head head_image_16
head head_image_17
head head_image_18
head head_image_19
head head_image_20
head head_image_21
head head_image_22
head head_image_23
head head_image_24
head head_image_25
head head_image_26
head head_image_27
head head_image_28
head head_image_29
head head_image_30
head head_image_31
head head_image_32
head head_image_33
head head_image_34
head head_image_35
head head_image_36
head head_image_37
head head_image_38
head head_image_39
head head_image_40
head head_image_41
head head_image_42
head head_image_43
head head_image_44
head head_image_45
head head_image_46
head head_image_47
head head_image_48
head head_image_49
head head_image_50
head head_image_51
head head_image_52
head head_image_53
head head_image_54
head head_image_55
head head_image_56
head head_image_57
head head_image_58
head head_image_59
head head_image_60
head head_image_61
head head_image_62
head head_image_63
head head_image_64
head head_image_65
head head_image_66
head head_image_67
head head_image_68
head head_image_69
head head_image_70
head head_image_71
head head_image_72
head head_image_73
head head_image_74
head head_image_75
head head_image_76
head head_image_77
head head_image_78
head head_image_79
head head_image_80
head head_image_81
head head_image_82
head head_image_83
head head_image_84
head head_image_85
head head_image_86
head head_image_87
head head_image_88
head head_image_89
head head_image_90
head head_image_91
head head_image_92
head head_image_93
head head_image_94
head head_image_95
head head_image_96
head head_image_97
head head_image_98
head head_image_99
head head_image_100
head head_image_101
head head_image_102
head head_image_103
head head_image_104
head head_image_105
head head_image_106
head head_image_107
head head_image_108
head head_image_109
head head_image_110
head head_image_111
head head_image_112
head head_image_113
head head_image_114
head head_image_115
head head_image_116
head head_image_117
head head_image_118
head head_image_119
head head_image_120
head head_image_121
head head_image_122
head head_image_123
head head_image_124
head head_image_125
head head_image_126
head head_image_127
head head_image_128
head head_image_129
head head_image_130
head head_image_131
head head_image_132
head head_image_133
head head_image_134
head head_image_135
head head_image_136
head head_image_137
head head_image_138
head head_image_139
head head_image_140
head head_image_141
head head_image_142
head head_image_143
head head_image_144
head head_image_145
head head_image_146
head head_image_147
head head_image_148
head head_image_149
head head_image_150
head head_image_151
head head_image_152
head head_image_153
head head_image_154
head head_image_155
head head_image_156
head head_image_157
head head_image_158
head head_image_159
head head_image_160
head head_image_161
head head_image_162
head head_image_163
head head_image_164
head head_image_165
head head_image_166
head head_image_167
head head_image_168
head head_image_169
head head_image_170
head head_image_171
head head_image_172
head head_image_173
head head_image_174
head head_image_175
head head_image_176
head head_image_177
head head_image_178
head head_image_179
head head_image_180
head head_image_181
head head_image_182
head head_image_183
head head_image_184
head head_image_185
head head_image_186
head head_image_187
head head_image_188
head head_image_189
head head_image_190
head head_image_191
head head_image_192
head head_image_193
head head_image_194
head head_image_195
head head_image_196
head head_image_197
head head_image_198
head head_image_199
head head_image_200
head head_image_201
head head_image_202
head head_image_203
head head_image_204
head head_image_205
head head_image_206
head head_image_207
head head_image_208
head head_image_209
head head_image_210
head head_image_211
head head_image_212
head head_image_213
head head_image_214
head head_image_215
head head_image_216
head head_image_217
head head_image_218
head head_image_219
head head_image_220
byte 16 /* 16 IS correct instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_ghost 3 {
action noEffect /* do */
action illegal /* reversed do */
action noEffect /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action illegal /* 8 */
action illegal /* 9 */
action illegal /* 10 */
action illegal /* 11 */
action illegal /* 12 */
action illegal /* 13 */
action generic_SPEAK /* 14 */
image ghost_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_amulet 2 {
sound magic
sound magic_pw
action generic_doMagic /* do */
action generic_rdoMagic /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image amulet_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_aquarium 129 {
action generic_depends /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action generic_CHANGESTATE /* 8 -- CHANGESTATE* */
image aquarium_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_atm 4 {
sound money_into_atm
sound money_into_atm_pw
sound money_out_of_atm
sound money_out_of_atm_pw
sound atm_thinking
action atm_do /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action atm_get /* get */
action atm_put /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image atm_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_bag 6 {
sound bag_opening
sound bag_closing
action generic_adjacentOpenCloseContainer /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndPickFromOrGet /* get */
action generic_goToAndDropIntoIfOpen /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image bag_image
image luggage_side_image
byte 23 /* Object instance length */
byte 137 /* 128+9 Initialization count */
byte 5 /* Capacity */
}
class class_ball 7 {
action generic_depends /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image ball_image
image boomerang_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_bed 130 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goToFurniture /* go */
action generic_cease /* stop */
action generic_goToAndPickFrom /* get */
action generic_goToAndDropInto /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image bed_side_image
byte 16 /* Object instance length */
byte 6 /* Initialization count */
byte 1 /* Capacity */
}
class class_book 10 {
action book_do /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image book_end_image
image book_front_image
image magazine_image
image newspaper_image
image paper_image
image knick_knack_image_1
image bottle_image
image tablets_image /* SPECIAL */
image paper_image /* placholder stock was here */
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_bottle 12 {
action generic_depends /* do */
action bottle_rdo /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action bottle_FILL /* 8 */
action bottle_POUR /* 9 */
image bottle_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_box 13 {
sound box_opening
sound box_closing
action generic_adjacentOpenCloseContainer /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndPickFromOrGet /* get */
action generic_goToAndDropIntoIfOpen /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image box_image
image treasure_chest_image
byte 28 /* Object instance length */
byte 137 /* 128+9 Initialization count */
byte 10 /* Capacity */
}
class class_bridge 131 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goToCursor /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image bridge_side_image
image bridge_front_image
byte 17 /* Object instance length */
byte 8 /* Initialization count */
byte 0 /* Capacity */
}
class class_building 132 {
action generic_depends /* do */
action illegal /* reversed do */
action sky_go /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image house_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_bush 133 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image bush_image_0
image bush_image_1
image bush_image_2
image bush_image_3
image bush_image_4
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_chair 134 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goToFurniture /* go */
action generic_cease /* stop */
action generic_goToAndPickFrom /* get */
action generic_goToAndDropInto /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image chair_front_back_image /* front */
image chair_side_image /* side */
image bar_stool_image /* front */
image bar_stool_image /* side */
image chair_front_back_image /* front */
image couch_side_image /* side */
image cafe_chair_image /* front */
image cafe_chair_image /* side */
byte 16 /* Object instance length */
byte 6 /* Initialization count */
byte 1 /* Capacity */
}
class class_changomatic 84 {
sound changomatic
action generic_depends /* do */
action changomatic_rdo /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action changomatic_CHANGE /* 8 -- CHANGE* */
image changomatic_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_chest 135 {
sound chest_of_drawers_opening
sound chest_of_drawers_closing
action generic_adjacentOpenCloseContainer /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndPickFromIfOpen /* get */
action generic_goToAndDropIntoIfOpen /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image chest_front_image
image door_image_0 /* a closet */
image chest_side_image
image filecabinet_image
byte 38 /* Object instance length */
byte 137 /* 128+9 Initialization count */
byte 20 /* Capacity */
}
class class_club 16 {
action generic_depends /* do */
action generic_strike /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image club_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_coke_machine 136 {
sound coin_accepted_by_coinop
sound coin_accepted_by_coinop_pw
sound coin_deposited_in_coinop
sound coin_deposited_in_coinop_pw
sound coin_rejected_by_coinop
sound coin_rejected_by_coinop_pw
sound stingy_coke_machine
sound stingy_coke_machine_pw
action generic_depends /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action noEffect /* get */
action coke_machine_put /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action generic_PAY /* 8 -- PAY* */
action generic_coinOp /* 9 -- internal COKE_COINOP */
image coke_machine_image_1
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_compass 17 {
action generic_read /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image compass_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_couch 137 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goToFurniture /* go */
action generic_cease /* stop */
action generic_goToAndPickFrom /* get */
action generic_goToAndDropInto /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image couch_front_back_image
image couch_front_back_image
byte 17 /* Object instance length */
byte 6 /* Initialization count */
byte 2 /* Capacity */
}
class class_countertop 18 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndPickFrom /* get */
action generic_goToAndDropInto /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image countertop_image
byte 23 /*21*/ /* Object instance length */
byte 9 /* Initialization count */
byte 5 /* 4*/ /* Capacity */
}
class class_crystal_ball 20 {
sound crystal_ball
sound crystal_ball_pw
action generic_depends /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_askOracle /* talk */
action generic_destroy /* destroy */
image crystal_ball_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_die 21 {
sound magic_3
sound magic_3_pw
action die_do /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action generic_CHANGESTATE /* 8 -- ROLL* */
image die_image
image double_die_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_display_case 22 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndPickFrom /* get */
action generic_goToAndDropInto /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image display_case_image
byte 23 /*21*/ /* Object instance length */
byte 9 /* Initialization count */
byte 5 /* 4*/ /* Capacity */
}
class class_door 23 {
sound door_opening
sound door_closing
action generic_adjacentOpenClose /* do */
action illegal /* reversed do */
action generic_goToOrPassThrough /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image door_image_0
image door_image_1
image door_image_2
image door_image_3
image door_glass
image door_dungeon
image door_junk /* ? */
byte 18 /* Object instance length */
byte 9 /* Initialization count */
byte 0 /* Capacity */
}
class class_dropbox 24 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image dropbox_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_drugs 25 {
action drugs_do /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action drugs_TAKE /* 8 */
image drugs_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_elevator 28 {
sound teleport_conf_wait
sound teleport_conf_wait_pw
sound teleport_departure
sound teleport_departure_pw
sound teleport_arrival
sound teleport_arrival_pw
action generic_depends /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action elevator_talk /* talk */
action generic_destroy /* destroy */
action illegal /* 8 -- not used */
action elevator_ZAPIN /* 9 -- ZAPIN* */
action elevator_ZAPTO /* 10 -- ZAPTO* */
action generic_broadcast /* 11 -- internal ELEVATOR_BROADCAST*/
image elevator_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_escape_device 26 {
sound escape_device_activates
sound escape_device_used_up
action escape_device_do /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action escape_device_BUGOUT /* 8 */
image escape_device_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_fake_gun 27 {
sound gun_safety_on
sound gun_safety_off
sound joke_gunshot
sound joke_gunshot_pw
action fake_gun_do /* do */
action fake_gun_rdo /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action fake_gun_FAKESHOOT /* 8 -- FAKESHOOT* */
action fake_gun_RESET /* 9 -- RESET* */
image fake_gun_image
byte 17 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_fence 138 {
action generic_depends /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
image fence_image
byte 15 /* Object instance length */
byte 6 /* Initialization count */
byte 0 /* Capacity */
}
class class_flag 29 {
action generic_depends /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_getMass /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action generic_CHANGESTATE /* 8 -- CHANGESTATE+ */
image flag_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_flashlight 30 {
sound switch_click
action flashlight_do /* do */
action generic_throw /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action generic_goToAndGet /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action generic_OFFLIGHT /* 8 -- OFFLIGHT* */
action generic_ONLIGHT /* 9 -- ONLIGHT* */
image flashlight_image
image torch_image
image knick_knack_image_0
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_floor_lamp 139 {
sound switch_click
action floor_lamp_do /* do */
action illegal /* reversed do */
action generic_goTo /* go */
action generic_cease /* stop */
action noEffect /* get */
action noEffect /* put */
action generic_broadcast /* talk */
action generic_destroy /* destroy */
action generic_OFFLIGHT /* 8 -- OFFLIGHT* */
action generic_ONLIGHT /* 9 -- ONLIGHT* */
image floor_lamp_image
byte 16 /* Object instance length */
byte 7 /* Initialization count */
byte 0 /* Capacity */
}
class class_fortune_machine 140 {
sound coin_accepted_by_coinop
sound coin_accepted_by_coinop_pw
sound coin_deposited_in_coinop
sound coin_deposited_in_coinop_pw
sound coin_rejected_by_coinop
sound coin_rejected_by_coinop_pw