-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathghosts.inf
2875 lines (2709 loc) · 186 KB
/
ghosts.inf
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
!% -~S
!% $OMIT_UNUSED_ROUTINES=1
!% $MAX_ABBREVS=96
!% $TRANSCRIPT_FORMAT=1
!% $ZCODE_LESS_DICT_DATA=1
!% -r
!% -e
!% $OMIT_SYMBOL_TABLE=1
! ----------------------------------------------------------------------------
! THE GHOSTS OF BLACKWOOD MANOR
! An interactive Horror by Stefan Vogt
! Copyright (c) 2023 Moonmist Entertainment
! http://8bitgames.itch.io
! ----------------------------------------------------------------------------
! IFID (http://babel.ifarchive.org) -- generate with https://uuidgenerator.net
Array UUID_ARRAY string "UUID://1ff435df-9747-41ec-ac66-311c3cb4ee40//";
#Ifdef UUID_ARRAY; #endif;
Constant Story "The Ghosts of Blackwood Manor";
Constant Headline "^An interactive Horror by Stefan Vogt^\
(c) 2023 Moonmist Entertainment^";
Release 14;
! game-specific defines
!Constant DEBUG; ! deactivate for release
!Constant OPTIONAL_EXTENDED_METAVERBS;
Constant EXTENDEDCUT;
Constant CUSTOM_ABBREVIATIONS;
Constant MAX_CARRIED = 20;
Constant OPTIONAL_SCORED;
Constant OPTIONAL_FULL_SCORE;
Constant OBJECT_SCORE = 5;
Constant ROOM_SCORE = 5;
Constant MAX_SCORE 415;
Constant OPTIONAL_FULL_DIRECTIONS;
Constant OPTIONAL_MANUAL_REACTIVE;
Constant OPTIONAL_MANUAL_SCOPE;
Constant OPTIONAL_MANUAL_SCOPE_BOOST;
Constant OPTIONAL_PROVIDE_UNDO;
Constant INITIAL_LOCATION_VALUE = GreatHall;
! 0 production build, 1 notification on errors, 2 full error messages
Constant RUNTIME_ERRORS = 0;
Include ">abbrvs.h"; ! load optimized abbreviations
Include "globals.h"; ! Puny library file import
Include ">punyhacks.h"; ! Moonmist library file import
! 0 = snowstorm raging / game begins
! 1 = waking up after falling asleep in lounge
! 2 = consult Rosie for the man with the scar
! 3 = Rosie consulted, line becomes dead
! 4 = searched gallery and found portrait of Lord Bain
! 5 = Turned portrait and found elevation
! 6 = cut portrait and found parchment
! 7 = endless knot riddle solved
! 8 = Saints riddle in crypt solved
! 9 = Amulet investigated, research necessary
!10 = found reference of amulet and Saint
!11 = voice advised to meet in forest
!12 = found evidence and location of the lost village
!13 = talked with Ysabella about the ritual
!14 = Cora choice is made (it better is a good choice)
Global PROGRESS_LEVEL = 0; ! tracks the game's progress level
Global Choice_Ending_Bad = false;
Global Choice_Ending_Neutral = false;
Global Choice_Ending_Good = false;
Global Ritual_started = false;
! declare recurring properties to optimize story file size for Z-machine v5 spec
Property cheap_scenery; ! used by Puny's cheap scenery extension
Property cheap_scenery_pt2; ! additional cheap scenery to work around the 32 entry limit of properties
Property cheap_scenery_pt3; ! additional cheap scenery to work around the 32 entry limit of properties
Property player_progress; ! common property to be used when the player makes progress with an object
Property countdown; ! property which can be used together with daeons and timers
Property talk_array; ! used by Puny's talk menu extension
! Constants for puny extensions
Constant FLAG_COUNT 42;
Constant TM_MSG_TOPICS_DEPLETED "You've run out of topics to talk about and end the conversation.";
Constant TM_MSG_EXIT "You decide to catch up later and end the conversation.";
! import Puny extensions
Include "ext_quote_box.h";
Include "ext_flags.h";
Include "ext_talk_menu.h";
Include "ext_cheap_scenery.h";
! Z-machine colour Globals (colour alloc see init routine)
! 2 black / 3 red / 4 green / 5 yellow / 6 blue / 7 magenta / 8 cyan / 9 white
Global clr_default_fg = CLR_WHITE;
Global clr_emphasis_fg = CLR_CYAN;
[PrintRank; ! this uses Puny's PrintRank feature
print ", earning you the rank: ";
ChangeFgColour(clr_emphasis_fg);
if (score >= 410) print "The Exorcist";
else if (score >= 300) print "Ectoplasma Connoisseur";
else if (score >= 50) print "Ghost Hunter Apprentice";
else print "Absolute Zero";
ChangeFgColour(clr_default_fg);
if (~~ deadflag) "."; else print ".";
new_line; new_line;
print "You have reached the";
ChangeFgColour(clr_emphasis_fg);
if (Choice_Ending_Bad == true) print " [bad] ";
if (Choice_Ending_Neutral == true) print " [neutral] ";
if (Choice_Ending_Good == true) print " [good] ";
ChangeFgColour(clr_default_fg);
print "ending.";
if (~~ Choice_Ending_Good == true) {
print "^^Would you like to have a hint? ";
if (YesOrNo()) {
if (Choice_Ending_Bad == true) {
ChangeFgColour(clr_emphasis_fg);
print "^It was obviously the wrong decision to let your wife go with Rosie. A decision that resulted in a tragic fate. Rosie seems to have her own sinister agenda so you might want to choose a different path.";
}
if (Choice_Ending_Neutral == true) {
ChangeFgColour(clr_emphasis_fg);
if (Dovecote hasnt visited) print "^Here we are, with an ending that wasn't really good and not really bad. Before you head to the ritual, you could visit the dovecote again. You haven't been there for a long time.";
if (Dovecote has visited && LordBain.player_progress == false) print "^How could you help Lord Bain recover his faded memory? Perhaps there is some sort of record of what happened during his lifetime? You could show it to him.";
if (LordBain.player_progress == true && Cellar hasnt visited) print "^Remember Bain's words. You cannot see it but you can hear it. Maybe the village is a good place to start looking for what is hiding in the shadows?";
if (Cellar has visited) {
if (~~ salt in leadcoffin) print "^The ritual is a timed event. You need to distract Lucifer before you can destroy the ancient tome. Maybe you can throw something unexpected into the lead coffin?";
if (salt in leadcoffin) print "^You almost did it. Now find a way to destroy the tome. What will you do?";
}
}
new_line;
}
}
if (Choice_Ending_Good == true) new_line;
ChangeFgColour(clr_default_fg);
rtrue;
];
Array quote_start --> 7 28
"How you have fallen from"
"heaven, morning star, son of"
"the dawn! You have been cast"
"down to the earth, you who"
"once laid low the nations!"
" "
" -- Isaiah 14:12";
Array quote_part1 --> 5 31
"PART I: Once upon the Cross"
" "
"Heaven wept, time stood still."
"High above, the wrath of god,"
"below, three crosses on a hill.";
Array quote_part2 --> 6 31
"PART II: The Ritual"
" "
"As wolf among sheep I wandered,"
"seeding lies and temptation."
"Watch me as I become flesh,"
"reverting God's creation.";
! will be triggered when the room is described
! [ LookRoutine;
! ];
! will be triggered when you visit a new room
[ NewRoom;
if (PROGRESS_LEVEL == 13 && location == TheChapel) {
PROGRESS_LEVEL = 14;
IncrementScore();
print "As you enter, you see Rosie and Cora waiting for you. Rosie seems very agitated, but Cora is as calm as ever.^^Rosie: Sir Thomas, thank God you're here at last. I have been so worried about you since you called me and asked about Lord Bain. I don't know how to explain, but I'm sure you've noticed that Blackwood is an unusual place, where long forgotten secrets lurk in the shadows. Sometimes they reveal themselves and draw you into a thicket of dark fates and unfulfilled dreams. This is happening to you right now, isn't it?^You nod without commenting further. In fact, a lot has happened in the last few hours that has fundamentally turned your world view upside down.^^Rosie: It's not the first time someone in Blackwood has been through what you're going through. Most of the time it didn't end well. There is a story of a groom who worked here over two hundred years ago. He said the forest called his name. One night he went home and killed his wife and his daughters with an axe. With their blood he wrote on the wall: ~He is here!~ before hanging himself from a weeping willow in the garden. And don't forget Lord Bain, who was so mad he thought an angel was speaking to him. At his behest, he slaughtered an entire village not far from here. I am really worried, so I wanted to offer Lady Cora to accompany me home until you have done what you have to do here. Would that be okay for you?^^";
ChangeFgColour(clr_emphasis_fg);
print "[You now have the choice to let your wife Cora go with Rosie. Do you support Cora leaving with Rosie? Please answer YES or NO.]^";
ChangeFgColour(clr_default_fg);
if (YesOrNo() == true) {
print "^You: Darling, I think Rosie is right. Something is happening here that is hard to put into words and I want you to be safe. Please trust me.^Cora: Of course I trust you. I'll go with Rosie. When all this is over you better have a pretty good excuse why there's a goddamn hole in the floor of the chapel. I love you!^^Cora waves to you and leaves the manor with Rosie. Now you are on your own in...^";
Choice_Ending_Bad = true;
}
else {
print "You: Thank you, Rosie, but I don't think that's necessary.^Rosie: I understand. You're probably right and I'm most likely just getting carried away.^^Rosie bows and then leaves, noticeably worried.^^Cora: What is this all about?^You: Strictly speaking, Rosie is right. There is something going on here that I can't explain. I want you to be safe but for some reason my gut told me it's not a good idea to go with Rosie. Instead I want you to take your car and drive to your sister in Inverness. Please trust me.^Cora: Of course I trust you. I'll take the car. When all this is over you better have a pretty good excuse why there's a goddamn hole in the floor of the chapel. I love you!^^Cora waves to you and leaves the manor alone. Now you are on your own in...^";
move car to Limbo;
move LordBain to Dovecote;
give Dovecote ~visited;
scope_modified = true;
}
}
];
Include "puny.h"; ! puny library file import
Include ">moonmist.h"; ! Moonmist library file import
Class SaintPlate
with name 'saint' 'St' 'St.' 'plate' 'silver' 'plates',
article "the",
after [;
Take:
self.player_progress = false;
Insert:
if (self == cuthbert && second == lindisfarne) self.player_progress = true;
if (self == kessog && second == inchtavannach) self.player_progress = true;
if (self == adomnan && second == iona) self.player_progress = true;
if (self == nathalan && second == tullich) self.player_progress = true;
StartTimer(self, 0);
],
time_out [;
PlateAllocCheck();
],
time_left,
player_progress false,
has scored;
Class Mural
with name 'painting' 'picture' 'mural' 'murals' 'square' 'recess',
before [;
Touch:
"You touch it very carefully so as not to damage the painting, but you feel nothing unusual.";
Receive:
if (CheckForPlate() == false) rtrue;
if (CheckIfOccupied(self) == false) rtrue;
],
has scenery container open;
! note that flags used in talk_array must have id 32-299
Constant F_ROSIE_TALKED_CORA 32; !1
Constant F_ROSIE_TALKED_HOLIDAYS 33; !2
Constant F_ROSIE_TALKED_SNOWSTORM 34; !3
Constant F_Y_TALKED_FIRE 35; !4
Constant F_Y_TALKED_LIVING 36; !5
Constant F_Y_TALKED_DEAD 37; !6
Constant F_Y_TALKED_BLOOD 38; !7
! talk_menu arrays -- STATUS [ID 300-600] TOPIC PLAYERSAYS NPCSAYS [FLAGREF|UNLOCKREF|ROUTINE]*
! customize: TM_ADD_BEFORE_AND_AFTER, TM_ADD_AFTER, TM_ADD_BEFORE. reaction line after NPC respone
Array talk_Rosie -->
30 "Preparations" "Hey Rosie, how are the preparations going?" "I am finished now, Sir Thomas. The manor is cleaned, I've made bread and biscuits for you and Lady Cora and the fridge is stocked with fresh vegetables and meat. It will be a lovely Christmas." 1 2 3
0 "Cora" "Is Cora back?" "The Lady has not yet returned from her visit to town. She wanted to buy a few things and come back in the afternoon, so she should be home soon." F_ROSIE_TALKED_CORA RosieFinalTopicVestibule
0 "Holidays" "I hope you enjoy your time off." "We are going to take it easy, just like every year. That's what I love about Christmas. The world slows down a bit and you reflect on the essentials. I'll be back for you and the Lady in the new year." F_ROSIE_TALKED_HOLIDAYS RosieFinalTopicVestibule
0 "Snowstorm" "It's quite a heavy snowstorm out there. Can you make it home?" "No worries, Sir Thomas. As you know, our house belongs to the manor. It's only a ten minute walk. It'll be fine." F_ROSIE_TALKED_SNOWSTORM RosieFinalTopicVestibule
0 300 "Blackwood" "Thank you, Rosie. A merry Christmas for you and your loved ones. Since Blackwood is new to us, may I call you in case we have a question?" "Of course, Sir Thomas! I left you my number in the kitchen." RosieLeavesManor
TM_END;
Array talk_Cora -->
30 "Shopping" "Good morning, darling! I hope you slept well. How was the shopping?" "Hi, honey! I don't think I've ever slept better. This bed is so incredibly comfortable. I probably bought too much stuff though. And Inverness hasn't changed at all." 1
0 "Inverness" "Did you enjoy being home again?" "You know I haven't been there since Mum died in 1975. It felt so strange to be walking these streets after more than eleven years. I'll probably get used to it again." 1
0 "Breakfast" "Would you like some breakfast?" "Thank you, sweetie. I am not hungry. I had a coffee and now all I need to be happy is this bed and this book." 1 2
0 "Book" "What are you reading?" "Well, I found this book about the Scottish Witch Hunts lying around. Pretty morbid, isn't it?" IncrementScore
0 "Dream" "I had a strange dream last night. There was a building with holes in the walls where birds were nesting." "Sounds like an old dovecote. You know we have one on the manor grounds, don't you?" IncrementScore
TM_END;
Array talk_Ysabella -->
30 "Graveyard" TM_ADD_AFTER "What's your name? What are you doing here?" "She seems to be filled with infinite sadness. Without knowing her fate, you feel very sorry for her." "My name is Ysabella. I am waiting for my son to return." 1 IncrementScore
0 "Son" "Your son? What happenend?" "Lord Bain's henchmen brought him to the manor after burning down our village. They wanted to purge the evil from him. What evil you may ask yourself? There was no evil in him. He was just a boy and did nothing wrong. When they were done with him, they buried him next to me, here on this forgotten ground. But his spirit seems to be trapped in Blackwood Manor, as if something is preventing him from leaving. And so I wait for him. Desperately. Together we can leave this place and step into the light but I don't want to let go until I have my little boy back. How can people be so cruel? Doesn't the Bible teach you to love your neighbour as yourself?" "She sobs and shakes her head." 1 2 3 IncrementScore
0 "Time" TM_ADD_BEFORE "What you are about to ask breaks your heart." "Are you aware that you have been waiting here for almost 400 years?" "Has it been that long? I don't know. I no longer have any sense of time. Maybe it was that long? Was it? Oh no."
0 "Lord Bain" "So Lord Bain did this to you?" "To do God's will. He said an angel had appeared to him and ordered him to destroy our village, all of us, to prevent the reversal of God's creation. Evil would walk among us and it would open the gates of chaos if he wouldn't prevent this from happening. If you ask me, what appeared to him was certainly no angel. Maybe he was just mad." IncrementScore
0 "Help" "I am so sorry to hear this. What can I do to help you?" "You have access to the manor. There is a secret dungeon in Blackwood where my boy must be trapped. As I already said, something prevents him from leaving. Find out what it is. Look for something unusual in the dungeon itself. You can reach the dungeon from the undercroft underneath the chapel. There is a stone with a signet. When you push it, a secret passage should open. After my son has been freed, we must also perform a ritual here on this graveyard that will lead him the way back to me. It will be his guiding light." 1 IncrementScore RevealSignetStone
0 "Ritual" "What is needed for this ritual?" "For the guiding light ritual you need fire, something for the living, something for the dead and the blood of an innocent." "Ysabella looks at you and notices that you're confused." 1 2 3 4 IncrementScore YsabellaLevelUp
0 "Fire" "What do you mean with ~fire~?" "A few lit candles on my son's gravestone will do." F_Y_TALKED_FIRE
0 "Something for the living" "What do you mean with ~something for the living~?" "You'll need an item that keeps the living alive, a loaf of bread for example." F_Y_TALKED_LIVING
0 "Something for the dead" "What do you mean with ~something for the dead~?" "You are looking for an item that helps the sick and dying transition into the light. It could be oil for the final anointing or frankincense. You should find that somewhere in the chapel." F_Y_TALKED_DEAD
0 "Blood of an innocent" "I hope ~blood of an innocent~ doesn't mean what I think it means." "You need blood from a noble soul. Your wife seems to be a kind-hearted person. Ask her if she can give you a few drops of her blood. No one has to die to fulfil this part of the ritual. It's a ritual of love." F_Y_TALKED_BLOOD
TM_END;
Array talk_TheBoy -->
30 "Dungeon" "Hey, I am Thomas, I am here to help you getting out of this dungeon. Your mother sent me." "Mother? I miss her so much." "He looks sad. But his eyes... you feel cold shivers running down your spine as they follow you." IncrementScore
TM_END;
[ IncrementScore; ! routine to increment score in-game
score = score + 5;
];
[RevealSignetStone;
move sleepingCora to Limbo;
move signetstone to Undercroft;
scope_modified = true;
];
[YsabellaLevelUp;
PROGRESS_LEVEL = 13;
];
[ RosieFinalTopicVestibule;
if (FlagIsSet(F_ROSIE_TALKED_CORA, F_ROSIE_TALKED_HOLIDAYS, F_ROSIE_TALKED_SNOWSTORM)) {
ActivateTopic(Rosie, 300);
}
];
[ RosieLeavesManor;
talk_menu_talking = false;
move Rosie to Limbo;
scope_modified = true;
IncrementScore();
"^Rosie waves goodbye and leaves the manor.^^It will probably take a while for Cora to get back from the city. You wonder how you are going to pass the time until she returns, which reminds you that you wanted to check out the lounge.";
];
! limbo for objects that we don't need anymore, beware of the grues!
Object Limbo;
Object -> signetstone "signet stone",
with name 'signet' 'stone' 'death' 'skeleton' 'cloak' 'bagpipe' 'jester',
initial "You can see the signet stone that Ysabella mentioned.",
description "A ~Danse Macabre~ theme is engraved on it. Death in the form of a skeleton dressed in a long cloak plays a bagpipe while a jester dances to it.",
before [;
Pull:
"It won't move in that direction.";
Touch:
"It's a regular stone. There is nothing special about the way it feels.";
Push:
move entrance to location;
move self to Limbo;
scope_modified = true;
"You push the signet stone and it vanishes into the wall. An entrance to a secret passage opens.";
]
has static;
Object -> -> entrance "entrance",
with name 'entrance' 'secret' 'passage',
article "an",
initial "An entrance to a secret passage is to the east.",
description "You stare at the entrance and think of something that Publius Vergilius Maro once said: ~The gates of hell are open night and day. Smooth the descent, and easy is the way. But to return, and view the cheerful skies, in this the task and mighty labor lies.~",
before [;
Enter:
<<Go FAKE_E_OBJ>>;
],
has static;
Object -> silverplates "silver plates",
with name 'silver' 'plates' 'set' 'of' 'opening',
initial "There is an opening in the wall. Inside lies a set of silver plates that have probably been hidden for centuries.",
description "The plates are square, about 4 inches in diameter, and they appear to have something drawn or engraved on them. You should take them in case you want to examine them more closely.",
before [;
Take:
move silverplates to Limbo;
move cuthbert to player;
move kessog to player;
move adomnan to player;
move nathalan to player;
update_moved = true;
scope_modified = true;
"You take the plates with you.";
]
has pluralname;
Object -> eerievoice "eerie voice",
with name 'eerie' 'voice',
article "an",
initial "An eerie voice echoes through the garden. It seems to be calling you.",
description "How can you describe something you can't even see? You can't even tell where the voice is coming from.",
before [;
Talk, Listen:
if (PROGRESS_LEVEL == 10) {
PROGRESS_LEVEL = 11;
move Cora to Limbo;
move sleepingCora to Solar;
move witchbook to Solar;
scope_modified = true;
IncrementScore();
}
"Voice: Thomas, meet me in the forgotten village in the forest.";
Take:
"You can't be serious.";
Examine:
rfalse;
default:
"It is impossible to have such an interaction with something that hasn't manifested.";
],
has animate static;
! NPCs without starting location
Object Cora "Cora",
with name 'Cora',
initial "Cora has snuggled up in bed and is reading a book.",
description "Your wife Cora is a strikingly beautiful woman with fiery red hair and emerald green eyes. You love her lilting Scottish accent, and her words are always filled with warmth.",
life [;
ThrowAt:
"Cora: Don't you dare!";
],
before [;
Take, Touch, Push, Pull, Turn:
"This is not that kind of game.";
Kiss:
"You kiss Cora. ~What was that for?~ She looks a little surprised, but definitely charmed.";
Attack, Burn:
"What's wrong with you? Just no.";
],
talk_array talk_Cora,
has proper animate female transparent;
Object -> witchbook "witch hunt chronology", ! when the game starts, Cora is reading this book
with name 'witch' 'hunt' 'chronology' 'book',
initial "The book Cora had been reading is now on the bedside table.",
description "Chronology of the Great Scottish Witch Hunts from 1590 to 1662. The book looks quite old and very likely belongs to the manor's library. A rather sombre read.",
before [;
Take:
if (self in Cora) "Cora is currently reading it, you don't want to take it away from her.";
Smell:
"The witch hunt chronology smells like old paper and leather";
Push, Pull, Smell:
if (self in Cora) "Not as long as Cora has it.";
Search, Open:
if (self in Cora) "Maybe when Cora is finished with it. Witch hunts are not high on your list of favourite reads anyway.";
if (self.player_progress == false) {
IncrementScore();
PROGRESS_LEVEL = 12;
self.player_progress = true;
move eerievoice to Limbo;
scope_modified = true;
"Oh, that's interesting. Lord Bain, the man with the scar, was responsible for wiping out an entire settlement near Blackwood Manor during the great Scottish Witch Hunt of 1597. That's in line with what Rosie told you. According to the records, the inhabitants of this settlement were said to have made a pact with the devil himself. This is nonsense, of course, but unfortunately people have done terrible things in the name of the church throughout history. What a sad story. On a map you can even see that the settlement was in the nearby forest. You should now be able to find it if there is anything left of it.";
}
"You look for more clues in the book but find no new insights.";
Burn:
"That's not a good idea. The book could be helpful.";
],
player_progress false,
has scored;
Object sleepingCora "Cora",
with name 'Cora',
initial "Cora lies in bed and sleeps. The last few days have been very exhausting.",
description "Your wife Cora is a strikingly beautiful woman with fiery red hair and emerald green eyes. You could watch her sleep for hours. Oh, how you love her.",
before [;
Examine:
rfalse;
default:
"You should let her sleep.";
],
has proper animate female;
Object Ysabella "Ysabella",
with name 'ghost' 'Ysabella' 'woman' 'presence' 'ethereal' 'medieval' 'wisps' 'mist' 'translucent' 'spectre',
initial "You encounter the ethereal presence of a medieval ghost woman, standing amidst the graves.",
description "She is a spectre shrouded in a tattered, flowing gown that appears to be made of wisps of mist, billowing around her in an otherworldly fashion. Her form is translucent, revealing glimpses of pale skin. Sorrowful, hollow eyes seem to pierce through your very soul. Her long, cascading hair is a lustrous silver, floating gently as if moved by a phantom breeze. It frames her delicate face, accentuating her ethereal beauty, yet there is an undeniable air of melancholy that hangs about her.",
before [;
Talk:
if (Ritual_started == true) "Ysabella: Not now, we need to focus on the ritual!";
if (FlagIsSet(F_Y_TALKED_FIRE, F_Y_TALKED_LIVING, F_Y_TALKED_DEAD) && FlagIsSet(F_Y_TALKED_BLOOD)) {
if (TheBoy in Dungeon) "Ysabella: I feel that my boy is still trapped in the manor's dungeon. Please free him before we can proceed to the ritual. Look for something that prevents him from leaving.";
print "She looks at you expectantly.^Ysabella: Are you ready for the ritual?^";
if (YesOrNo()) {
if (~~ candles in player && frankincense in player && loafbread in player && bloodlinen in player) "^Ysabella's appraising eyes measure you.^Ysabella: You say you are ready for the ritual but I see you're not. Come back when you carry everything I asked for.";
if (~~ lighter in player) "Ysabella: I see you carry everything I asked for but you miss something to light the candles. Come back when you have it.";
Ritual_started = true;
move gravestone to OverGrownCemetery;
scope_modified = true;
"^Ysabella: Come here and put the candles on the gravestone.^Ysabella floats to a gravestone that has no name on it.";
}
"^Ysabella: It's no problem you're not ready yet. Remember what is needed for the ritual. We need fire, which can be candles that you put on my son's gravestone. We need something for the living, which can be a loaf of bread. We need something for the dead, which can be oil for final anointing of a dying person or incense. And we need the blood of an innocent, which can be a few drops of blood gifted from your wife.";
}
Touch, Attack, Kiss, Pull, Push, Turn, Burn:
"Even if that were a good idea, it wouldn't do much with a ghost, would it?";
Smell:
"Ghosts don't smell. At least Ysabella doesn't.";
],
talk_array talk_Ysabella,
has proper animate female;
Object -> gravestone "gravestone",
with parse_name [w n a len;
n = wn;
w = NextWord();
if (w == 'gravestone') {
a = WordAddress(n);
len = WordLength(n);
if (len == 10 && a->9 == 'e')
return 1;
}
if (w == 'grave') return 1;
if (w == 'stone') return 1;
],
describe [;
print "^A gravestone looms ominously. It stands nameless, a foreboding presence in the pale light of the winter sun";
if (parent(candles) == gravestone) {
print ". Some ";
if (candles.player_progress == true) print "burning ";
print "candles are placed on it";
}
".";
],
before [;
Touch:
"It's so cold. You think it's even colder than it actually should be.";
Push, Pull:
"It doesn't move a bit. In fact, it looks like it could easily be knocked over, but the frozen ground holds it firmly in its icy grip.";
Receive:
if (~~ noun == candles) "You shouldn't put random stuff on the gravestone. You already know what needs to be placed on it.";
],
description "Its surface is etched with sinister markings that evoke a sense of unease. The absence of a name adds to the unsettling aura, leaving whispered questions unanswered. Time has not been kind, as cracks and erosion mar the gravestone, reflecting the decay of forgotten memories.",
has static supporter;
Object -> -> bowl "bowl",
with name 'bowl' 'blood',
description "A pretty ordinary bowl which contains lots of blood. A worrying amount of blood.",
before [;
Fill:
if (~~ second == leadcoffin) rfalse;
<<Insert self leadcoffin>>;
Smell:
"The ferrous smell of the blood has a disturbing effect on you.";
],
has scored;
Object -> -> leadcoffin "lead coffin",
with name 'lead' 'coffin' 'metal',
description "You stare at a medieval lead coffin, weathered by time. The metal is now tarnished to a sickly green hue and shows signs of corrosion. The air around it feels even colder, as if an unearthly chill is emanating from the body inside. You notice that the engravings on its sides are not just ornate patterns and symbols, but rather grotesque and macabre scenes. Twisted figures with distorted faces, writhing in agony, adorn the coffin. Their expressions of fear and despair seem to follow you with hollow eyes.",
before [;
Smell:
"Oh god.";
Close:
"That's probably what you should do but on the other hand you're too curious now to see where this is going.";
Receive:
if (~~ noun == loafbread or bloodlinen or frankincense or leatherbag or salt or bowl ) "You shouldn't put things in the coffin that are not meant to be there. Ysabella told you what is needed.";
switch (ObjectCapacity(self)-children(self)) {
4:
if (~~ noun == loafbread) "This object is not what Ysabella considered ~something for the living~. Please choose a different object.";
move loafbread to leadcoffin;
scope_modified = true;
IncrementScore();
"You put the bread in the lead coffin.^Ysabella: Auferte panem a discipulis Nazareni! Transibunt plagae terram suam!^^She raises her hands in an almost threatening gesture. Then she smiles at you. A smile that somehow seems false.^Ysabella: Now something for the dead, Thomas.";
3:
if (~~ noun == frankincense) "This object is not what Ysabella considered ~something for the dead~. Please choose a different object.";
IncrementScore();
move frankincense to leadcoffin;
scope_modified = true;
print "You use the lighter to make the frankincense smoulder, then you place it in the coffin.^Ysabella: Aperi portas inferi mortuorum. Ultimus Saturnus hac nocte fulgebit in firmamento, clarior sidus in odio Bethleem. Adventum tenebrarum incarnati praedicabit!^^Ysabella: And now the blood of an innocent";
if (Choice_Ending_Bad == true) {
print ". Don't use the blood you brought with you. We have something better. Look behind you.^^You turn around and notice a bowl, obviously containing blood.^Ysabella: Pour it into the coffin";
move bowl to OverGrownCemetery;
scope_modified = true;
}
".";
2:
if (Choice_Ending_Bad == true) {
if (~~ noun == bowl) "This is not the right object. Ysabella wants the blood from the bowl to be poured into the coffin.";
print "You pour the blood into the coffin and the boy inside starts to breathe.";
}
else {
if (~~ noun == bloodlinen) "This is not the right object for the ~blood of an innocent~ part of ritual.";
move bloodlinen to leadcoffin;
scope_modified = true;
print "You put the bloody linen fabric into the coffin and the boy inside starts to breathe. New life seems to flow into the dead body. How is that possible?";
Choice_Ending_Neutral = true;
StartDaemon(self);
}
IncrementScore();
new_line;
if (Choice_Ending_Bad == true) EndingSequence();
rtrue;
}
],
capacity 5,
countdown 3,
daemon [;
self.countdown--;
switch (self.countdown) {
2:
print "^Ysabella mumbles something. She still seems to be busy with the ritual.";
ChangeFgColour(clr_emphasis_fg);
print "^^[You can now WAIT for Ysabella to finish the ritual. Alternatively, you can try to intervene, if that is what you want. What will you do?]";
ChangeFgColour(clr_default_fg);
new_line; rtrue;
1:
if (~~ salt in leadcoffin) {
if (lighter has on) print "Ysabella, standing behind you, takes the ligher away from you. It would have been better to distract her with something before you try to disturb the ritual.^";
EndingSequence(); rtrue;
}
ChangeFgColour(clr_emphasis_fg);
print "^[You feel that something is about to happen and your next move has to be a good one.]^";
ChangeFgColour(clr_default_fg);
0:
print "^A strong wind comes up and blows the salt away.^";
EndingSequence(); rtrue;
}
],
has static container open;
Object -> -> -> "body",
with name 'inside' 'body' 'corpse' 'boy',
description "From your point of view, it is impossible that the body of this boy can be so well preserved after hundreds of years. It's either a miracle or a bad omen.",
before [;
Touch, Push, Pull, Smell, Take, Kiss, Remove:
"Um... no. Absolutely not. What's wrong with you?";
];
Object LordBain "Lord Bain"
with name 'ghost' 'lord' 'bain' 'spirit' 'spectral' 'figure' 'medieval' 'scottish' 'visage' 'ghostly' 'face',
initial "In the center of the dovecote, you behold the spectral figure of a medieval Scottish lord, his presence commanding attention even in his ethereal form. It is Lord Bain, slayer in the name of God.",
description "Dressed in regal attire befitting his noble station, the spirit stands tall and proud. His tattered yet ornate tartan kilt drapes around his legs and a weathered sporran hangs from his waist. A faded and moth-eaten velvet doublet adorns his torso, its once vibrant colours now faded with the passing centuries. The Lord's ghostly visage exudes an aura of wisdom and authority. His face, though partially obscured by the veil of time, bears the weathered lines of a life well lived, etched with both hardship and triumph. Deep-set eyes, their piercing gaze still undimmed, survey the dovecote with a mixture of solemnity and longing.",
life [;
Show, Give:
if (noun ~= witchbook) "Lord Bain looks at the object with little interest. It does not seem to jog his memory.";
if (LordBain.player_progress == false) {
LordBain.player_progress = true;
IncrementScore();
}
"You show Lord Bain the chronology. He looks at you thoughtfully, then nods sadly.^Lord Bain: I remember. You probably think I'm pure evil, but I assure you I'm not. I have seen the true evil.^You: The boy?^^Lord Bain: The Lord of Lies speaks with a seductive tongue and appears dressed in the cloak of innocence. Whatever he or his followers want from you, trust no one. He may look like a boy but he is Lucifer's offspring. With the help of a Saint we were able to separate his body from his evil mind and trap him inside Blackwood's dungeon. If you want to ban him from the face of the earth, you need to reunite his dark consciousness with his flesh and then destroy the source of his power.^You: Why didn't you do that back then?^^Lord Bain: The saint was very clear in his instructions about what we have to do. He said there would come a time many moons later when the unholy child would be defeated once and for all. Since then I have been waiting in this limbo for that day to come.^You: I see. And what about his source of power?^^Lord Bain: The villagers used a forbidden book to conceive the child with Lucifer. It is possible that the Light Bearer even lived in this village for a while. We do not know. What we did find out was that the father of the unholy child died during conception. His mother allegedly lived in the village, but we never found her. That's confusing, isn't it?^You: Not if you are open to the theory that Lucifer could be female.^^Lord Bain: That's an interesting theory. We never took that into consideration.^You: I think I know everything I need to know now. I will search for this book and try to destroy it at the right time. Thank you, Lord Bain.^^Lord Bain: Farewell my son. Remember what your eyes can't see in the village, your ears might hear.^You nod and then turn away from him.";
],
before [;
Touch, Attack, Kiss, Pull, Push, Turn, Burn:
"There would be no point in doing that to someone that has no physical form.";
Smell:
"Why would you want to sniff a ghost? That's really disturbing.";
Talk:
if (self.player_progress == false) {
"You: Lord Bain?^Lord Bain: I think that was my name once upon a time. Whatever you want from me, I probably won't be able to help you. I have to admit that my memory has faded. I wish I could remember why I'm still here.";
}
"Lord Bain: You know what to do. Find the source of evil and destroy it when the time is right. What the eyes can't see, your ears might hear. May the Lord be with you.";
],
player_progress false,
has proper animate;
#ifdef EXTENDEDCUT;
Object -> compendium "manor compendium",
with name 'manor' 'compendium' 'book',
description [;
print "A compendium of the manor, given to you by the estate agent who sold you Blackwood. The book, written by a local author, dates back to the 70s. There are many places in and outside of the manor where you can ";
ChangeFgColour(CLR_EMPHASIS_FG);
print "[read compendium]";
ChangeFgColour(CLR_DEFAULT_FG);
print_ret " to learn something about the history of your current location and discover even more surroundings.";
],
before [;
Examine:
if (~~ verb_word == 'read') rfalse;
switch (location) {
GreatHall: "Interesting. This part of the manor is said to date back to the 8th century. Blackwood was built on the remains of an ancient monastery, where the great hall was a multifunctional room, used to receive guests but it was also a place where the monks would dine together. Later, the Lord of Blackwood, his gentleman attendants and at least some of the servants would follow this tradition. At night, some members of the household would sleep on the floor to warm themselves by the fire. Today, the Great Hall is used as a sitting room with a cosy Victorian interior.";
TheChapel: "While you read the compendium, your footsteps echo softly off the cold, rough stone walls, breaking the almost palable silence that adds to the sense of reverence pervading this sacred place. The large wooden crucifix, its once gilded surface now dulled with age, is said to be a remnant from Blackwood's earliest days. Rumour has it that a saint is buried here somewhere. But knowledge of the body's whereabouts has been lost. Perhaps it is just a story that has been told down through the generations until it has become a legend.";
Oratory: "The oratory was used by the Lord and his family for private prayer and contemplation. The wooden cross and the single pew in front of it are said to be elaborately crafted masterpieces, clearly of higher quality than in the chapel.";
Vestibule: "The vestibule is described as a place that causes a sense of awe, and you agree. Especially the high ceiling, supported by grand columns and arches, and the walls, decorated with intricate carvings and tapestries, are particuarly mentioned.";
Sacristy: "The compendium unfortunately does not say much about the sacristy. The only interesting bit of information is that a chalice and a paten from the 15th century are kept here, a gift from King James IV of Scotland. They are made of pure gold. You can probably find them in the chest with iron fittings in front of you.";
Kitchen: "The kitchen has been modernised in the 1970s by a local architect from Inverness, with the goal to retain its old world charm and historic character that reflects its storied past. And indeed, as you look around you are immediately transported back to a bygone era. It is easy to imagine the hustle and bustle of the staff as they worked to create the elaborate dishes that would have been served to the lords and ladies of the manor. The compendium explicitly mentions the sturdy oak cupboards, shelves and drawers, which date back to the 16th century.";
Pantry: "The purpose of the pantry in medieval times was to store food supplies and ensure that the manor had enough provisions to get through the winter months. Pantries are usually located on the east side of a manor house, where they are least exposed to the sun. Blackwood's modernised pantry is described as a juxtaposition of modern appliances and antique stone.";
Buttery: "The buttery was intended for storing and dispensing beverages, especially ale and whisky. One needs to consider that in the early middle ages, water was not safe to drink so an assortment of alcoholic beverages was essential for the manor life. The person who presided over the buttery was called the butler, which explains where the name has its origins. One of the finest collections of whisky in Scotland can be found in Blackwood's buttery. Quite a few sealed bottles here are up to 200 years old and are considered extraordinarily valuable, some even from distilleries closed long ago. There's a sense of history and tradition in the air that's as intoxicating as the booze itself.";
Storeroom: "The compendium does not mention the storeroom, which is not much of a surprise. There are places way more exciting to be talked about in the manor.";
Library: "One can only be impressed by the grandeur of Blackwood's library. It hosts a massive collection of books, many of them very old and certainly invaluable with some of the editions even dating back to the time when Blackwood Manor was a monastery. These handwritten and richly decorated early historical works were curated by monks and scholars in darkened chambers as they preserved their knowledge for posterity with a quill by candlelight. One wonders what secrets they may hold.";
Forecourt: "The forecourt has much to discover, visitors should take their time to explore every single detail of this time-honoured location. Especially the large stone fountain, decorated with carvings of Celtic knots and ancient Gaelic symbols, surrounded by sculptures representing mythical creatures from Scottish folklore is praised for its beauty. Which of the creatures do you recognise? Above the entrance a coat of arms bearing the image of a stag can be seen, a symbol of Scotland's ancient kings. The compendium says it's likely from the 12th century.";
Dovecote: "Dovecotes were a common feature of Scottish manor and castle estates and served a number of purposes. One was to provide a source of fresh meat and eggs for the lord and his family, but it was also a symbol of status and wealth. The first dovecote on the grounds of Blackwood was probably built from wood and replaced with one made of stone in the 14th century.";
Crypt: "While the compendium does not mention the crypt explicitly. It is noted, however, that from the time when Blackwood was a monastery, a vault is rumored to exist where an unspecified saint is said to have found his final resting place.";
Solar: "The solar is a grand chamber that was once the private quarters of the Lord and Lady of the manor. The manor's Solar is filled with the trappings of luxury and refinement, from the rich tapestries that adorn the walls to the antique furniture. The origin of the word solar is not clear. It may derive from the word ~solaris~, which means ~sun~, describing a room with the brightest aspect, but since the solar provided distance from the great hall and thus privacy for the Lord and his family, it could also derive from the word ~solus~, meaning ~alone~.";
default: "The compendium doesn't mention this location.";
}
Drop, Insert, PutOn:
"The compendium provides additional information about Blackwood. You decide to keep it for the time being.";
],
has scored;
#endif;
Room GreatHall "Great Hall" ! -- locations start here
with name 'great' 'hall' 'manor' 'blackwood' 'living' 'room' 'exit' 'white' 'layer',
description [;
print "Flames dance in the fireplace and wood crackles as it burns slowly, giving off a pleasant warmth. Flickering light wanders across the walls, engulfing the shadows and illuminating the room in a melancholy twilight. In one corner, just below the portraits of the ancestors, stands a beautifully decorated Christmas tree. Through the large windows you can see ";
if (PROGRESS_LEVEL == 0) print "a snowstorm raging, the wind is howling as waves of snowflakes streak by.";
else print "the manor's feral garden and the surrounding forest blanketed in a white layer.";
print " The only exit is to the north, leading to the vestibule.";
if (self hasnt visited) {
ChangeFgColour(CLR_EMPHASIS_FG);
print "^^[Welcome to Ghosts of Blackwood Manor. To learn more about how to play the game, type HELP. First time players should also type ABOUT.]";
ChangeFgColour(CLR_DEFAULT_FG);
}
new_line; ],
n_to Vestibule,
#ifdef EXTENDEDCUT;
cheap_scenery
22 'cosy' 'victorian' 'interior' 'furniture' "Just as one would imagine an old country house to be. The lovingly handcrafted pieces of furniture do not seem to be replicas, although you first assumed so because they are in impeccable condition. Witnesses of a bygone era with an inestimable value."
9 'fireplace' 'fire' 'wood' 'flames' 'warmth' 'twilight' 'shadows' 'light' 'flame' "For a second you lose yourself in the flames, immersed in the eternal struggle between darkness and light. How many generations must have warmed themselves here over the centuries? What were their worries, their hardships, as they lingered within these venerable walls? For a brief moment we shine brighter than the morning star, but when the Grim Reaper knocks on our door, he leads us back to the infinite gloom from which we once emerged."
54 'beautifully' 'christmas' 'xmas' 'decorated' 'scottish' 'fir' 'decorations' 'corner' 'tree' "The tree, a Scottish fir, looks wonderful in its red and white Christmas decorations. Cora has really outdone herself this year."
CS_ADD_LIST GreatHall (cheap_scenery_pt2),
#ifnot;
cheap_scenery
8 'fireplace' 'fire' 'wood' 'flames' 'warmth' 'twilight' 'shadows' 'light' "For a second you lose yourself in the flames, immersed in the eternal struggle between darkness and light. How many generations must have warmed themselves here over the centuries? What were their worries, their hardships, as they lingered within these venerable walls? For a brief moment we shine brighter than the morning star, but when the Grim Reaper knocks on our door, he leads us back to the infinite gloom from which we once emerged."
54 'beautifully' 'christmas' 'xmas' 'decorated' 'scottish' 'fir' 'decorations' 'corner' 'tree' "The tree, a Scottish fir, looks wonderful in its red and white Christmas decorations. Cora has really outdone herself this year."
CS_ADD_LIST GreatHall (cheap_scenery_pt2),
#endif;
cheap_scenery_pt2
14 'large' 'windows' 'window' 'pane' 'panes'
[;
Examine:
if (PROGRESS_LEVEL == 0) print_ret (string)MESS_STORM;
"You stand at the window, peering out into the winter landscape beyond. The world outside is covered in a thick blanket of snow.";
]
11 'feral' 'garden' "You definitely have to take care of the garden next spring. It has apparently been neglected a bit in the last few years, but it is not completely overgrown."
11 'surrounding' 'forest' "The adjacent forest surely holds many secrets, some of which may one day be rediscovered, others will remain hidden forever, buried and forgotten witnesses to a dark past.",
has light;
Constant MESS_STORM "The window panes rattle from the force of the storm. Heavy snowflakes swirl in the air and blanket the manor's feral garden and the surrounding forest in a white layer.";
Object -> gallery "portraits of the ancestors",
with name 'portraits' 'of' 'the' 'ancestors' 'portraits' 'lords' 'ladies' 'pictures' 'paintings',
description [;
print "Fascinated, you look at the many portraits of the former Lords and Ladies of Blackwood. There must be some clues in the manor's library to find out who they depict. Judging by their clothes, however, they are all long gone. The way of all flesh.";
if (PROGRESS_LEVEL == 3) {
new_line; new_line;
if (bainportrait in self) <<Search self>>;
}
new_line; rtrue;
],
before [;
Search:
if (bainportrait in self && PROGRESS_LEVEL == 3) {
move bainportrait to location;
scope_modified = true;
PROGRESS_LEVEL = 4;
IncrementScore();
"On closer inspection, you can see the portrait Rosie was talking about. Lord Bain's cold gaze is hard to resist. An icy shiver runs down your spine. Bain is holding a hand to his chest, and on the back of his hand you recognise the same distinctive scar you saw in your dream. How can this be?";
}
else rfalse;
],
has scenery;
Object -> -> bainportrait "portrait of Lord Bain",
with name 'portrait' 'of' 'lord' 'bain' 'archibald' 'picture' 'scar' 'painting',
initial "One of the paintings stands out. The portrait of the man with the scar on his hand, Lord Archibald Bain.",
description "You wonder if what they say about him is true. Did he really wipe out an entire village because its inhabitants had allegedly made a pact with the devil? So much bloodshed, all in the name of God?",
before [;
Touch:
"Your hand touches the portrait. Under your fingers you feel the brushstrokes of the painter who immortalised this moment in time many centuries ago.";
Push:
"You push it to the wall but that's the wrong direction if you want to closer inspect it.";
Pull, Turn, Open, Search:
if (PROGRESS_LEVEL == 4 or 5) {
give self transparent;
scope_modified = true;
if (PROGRESS_LEVEL == 4) IncrementScore();
PROGRESS_LEVEL = 5;
"You turn the portrait and on the back you notice a small elevation under the canvas as if there is something hidden underneath. You cannot open the canvas with your bare hands though. You need something like a small and very sharp knife or a cutter to not destroy the picture.";
}
else "No need to bother with it again.";
Cut, Attack, Unlock:
if (self has transparent) <<Cut canvas>>;
else "Is there any particular reason why you'd want to do that?";
],
has static;
Object -> -> -> canvas "canvas",
with name 'canvas' 'elevation',
description "You wonder what is hidden underneath.",
before [;
Pull, Turn, Open, Search:
<<Open bainportrait>>;
Unlock, Cut, Attack:
if (~~ boxcutter in player or GreatHall) "You don't carry a suitable object.";
if (~~ parchment in self) "No need to cut it again, you already found what was hidden inside the portrait.";
IncrementScore();
PROGRESS_LEVEL = 6;
move parchment to GreatHall;
scope_modified = true;
"You carefully cut the canvas next to the elevation without destroying the picture. A parchment falls from the portrait.";
]
has scenery;
Object -> -> -> -> parchment "parchment",
with name 'parchment' 'writing',
initial "A parchment has fallen from the portrait and is now lying on the floor.",
description "The writing is ornate and looks old-fashioned. There is a kind of riddle on the parchment: Behind the endless knot I was laid to rest. Four, four, two, three, find me and you will see.",
has scored;
Object -> snowstorm,
with name 'snowstorm' 'wind' 'snowflakes' 'streaks' 'storm',
description [;
print_ret (string)MESS_STORM;
],
before [;
Examine:
rfalse;
Smell:
"You can't actually smell the snowstorm from here.";
default:
print_ret (string)MESS_SCENERY;
],
has scenery;
Room TheChapel "The Chapel"
with name 'chapel' 'religious' 'symbols' 'sacred' 'place' 'gilded' 'surface' 'dulled' 'floor',
description "Rows of pews stretch out before you. The occasional creak of old wood can be heard. An ancient altar is the centrepiece of the chapel, drawing your eyes to it with its grandeur and attention to detail. Behind it, you see niches with stained glass windows. One wonders how many prayers and moments of reflection the chapel has witnessed over the centuries. Doors lead to the south, the southwest and to the north.",
n_to Vestibule,
s_to Sacristy,
sw_to Oratory,
d_to [;
if (opening in self) {
print "Slowly you descend until you are completely engulfed in darkness.^";
return Undercroft;
}
"You cannot go that way.";
],
#ifdef EXTENDEDCUT;
cheap_scenery
12 'rough' 'stone' 'walls' "It must have been so much work to carve this stone back in the day. Everything had to be done by hand."
22 'large' 'wooden' 'crucifix' 'cross' "You look at the crucifix in awe. A wonderful piece of craftsmanship."
34 'muted' 'subdued' 'stained' 'niches' 'glass' 'windows' 'colours' "The colours of the glass are muted and subdued, casting a soft, warm light on the floor."
CS_ADD_LIST TheChapel (cheap_scenery_pt2),
cheap_scenery_pt2
21 'soft' 'warm' 'light' "You could watch this play of light for hours."
2 'door' 'doors'
[;
Examine:
"Man, they knew how to build doors back in the day.";
Enter, Open, Go:
"Just go into the desired direction to reach one of the locations behind the doors.";
]
3 'rows' 'of' 'pews' "You wonder what it was like when Blackwood Manor was still a monastery. The pews full of clergymen, devoutly absorbed in prayer, their whispers echoing through the sacred halls, the chapel bathed in candlelight while rain is pouring down outside.",
#ifnot;
cheap_scenery
34 'muted' 'subdued' 'stained' 'niches' 'glass' 'windows' 'colours' "The colours of the glass are muted and subdued, casting a soft, warm light on the floor."
CS_ADD_LIST TheChapel (cheap_scenery_pt2),
cheap_scenery_pt2
21 'soft' 'warm' 'light' "You could watch this play of light for hours."
2 'door' 'doors'
[;
Examine:
"Man, they knew how to build doors back in the day.";
Enter, Open, Go:
"Just go into the desired direction to reach one of the locations behind the doors.";
]
3 'rows' 'of' 'pews' "You wonder what it was like when Blackwood Manor was still a monastery. The pews full of clergymen, devoutly absorbed in prayer, their whispers echoing through the sacred halls, the chapel bathed in candlelight while rain is pouring down outside.",
#endif;
has light scored;
Object -> altar "altar",
with name 'large' 'ancient' 'altar',
description "You approach the ancient altar in awe. The stone structure is weathered and worn, its edges smoothed by countless hands over the centuries. As you get closer, you notice that the altar is decorated with elaborate carvings of biblical scenes and symbols. There is a depiction of the last supper, with Jesus and his disciples gathered around a table, and an image of the crucifixion, with Jesus on the cross and Virgin Mary weeping at his feet. On the back of the altar you notice a bronze panel.",
before [;
Receive:
if (receive_action == ##PutOn) "There's no need to put something on the altar at the moment.";
if (receive_action ~= ##Insert) rfalse;
<<Insert noun panel>>;
Touch:
"You feel the cold stone and wonder how many hands have touched it over the centuries.";
Climb, Enter:
"Hell no, you're too old for that.";
Push, Pull:
"No matter how hard you try, it won't move.";
],
has scenery supporter transparent;
Object -> -> panel "bronze panel",
with name 'bronze' 'panel' 'spot' 'indentation' 'silhouette' 'humanoid',
description [;
print "The panel depicts the chaotic events of the end of the world. The Four Horsemen ride through the sky, their steeds galloping at breakneck speed. This scene is explicitly described in the Book of Revelation. The first horseman rides a white horse, symbolising conquest, while the second rides a red horse, symbolising war. The third horseman rides a black horse, representing famine, and the last horseman rides a pale horse, representing death. A closer look at the panel reveals that the sky behind the horsemen is ablaze with fire and brimstone, and the ground is littered with the bodies of the damned. The scene is filled with vivid detail, from the writhing souls of the damned to the triumphant expressions on the faces of the saved. ";
if (statuette in self) "The panel is now complete. The bronze statuette of the Archangel Gabriel blowing his trumpet to announce the Day of Judgement fitted perfectly into the indentation.";
"There is a spot with an indentation in the panel where something seems to be missing. The indentation has the shape of a humanoid silhouette.";
],
before [;
Receive:
if (~~ receive_action == ##Insert) rfalse;
if (~~ noun == statuette) "That's definitely the wrong object. You are looking for something that fits the spot in the bronze panel.";
move statuette to self;
move opening to TheChapel;
give self transparent;
scope_modified = true;
IncrementScore();
"You put the statuette in the bronze panel and it fits perfectly. The next moment, a hidden mechanism activates and the altar slides backwards, revealing an opening below that leads into the blackest darkness.";
Push, Pull:
<<Push altar>>;
Touch:
"It feels like cold metal. Other than that, there is nothing special about it.";
],
has scenery;
Object -> -> -> opening "opening",
with name 'opening',
article "an",
initial "An opening that was hidden below the altar leads down to a very dark place.",
description "Fascinated you stare at the opening and remember a quote from Edgar Allan Poe: ~Deep into that darkness peering, long I stood there, wondering, fearing, doubting, dreaming dreams no mortal ever dared to dream before.~",
before [;
Enter:
<<Go FAKE_D_OBJ>>;
],
has static;
Room Oratory "Oratory"
with name 'oratory' 'room' 'exit',
description "A stained glass window depicts a scene of a noble woman washing the feet of the poor, with vibrant colours streaming in through the panes and casting colourful shadows across the room. An exit lies to the north.",
n_to TheChapel,
before [;
PutOn:
if (noun == goldenkey && second == hands) {
if (goldenkey in hands) rfalse;
<<Insert goldenkey hands>>;
}
],
#ifdef EXTENDEDCUT;
cheap_scenery
14 'wooden' 'cross' 'pew' 'carvings' 'crucifix' "You agree with what is mentioned in the manor compendium. Both, the cross and the pew here are both decorated with wonderful carvings. Surely they were made by a true master of the carpenters' guild back then."
26 'noble' 'stained' 'glass' 'window' 'scene' 'woman' 'feet' 'poor' "The symbolism behind the motif is very strong. You assume that a saint is depicted here. The vibrant colours make the scene so vivid. Time seems to stand still as the ethereal glow cascades across the sacred space, enchanting all who behold this mesmerising display."
34 'ethereal' 'colourful' 'vibrant' 'glow' 'colours' 'panes' 'shadows' "A breathtaking spectacle of colour unfolds. Vibrant hues dance and mingle, painting the air with a kaleidoscope of brilliance. The reds ignite with passion, the blues whisper tranquillity and the greens breathe life into the scene. Every shard of glass becomes a brushstroke, creating a masterpiece of radiant beauty."
'dried' 'flowers' "You're definitely going to bring new flowers here in spring."
,
#ifnot;
cheap_scenery
26 'noble' 'stained' 'glass' 'window' 'scene' 'woman' 'feet' 'poor' "The symbolism behind the motif is very strong. You assume that a saint is depicted here. The vibrant colours make the scene so vivid. Time seems to stand still as the ethereal glow cascades across the sacred space, enchanting all who behold this mesmerising display."
34 'ethereal' 'colourful' 'vibrant' 'glow' 'colours' 'panes' 'shadows' "A breathtaking spectacle of colour unfolds. Vibrant hues dance and mingle, painting the air with a kaleidoscope of brilliance. The reds ignite with passion, the blues whisper tranquillity and the greens breathe life into the scene. Every shard of glass becomes a brushstroke, creating a masterpiece of radiant beauty."
'dried' 'flowers' "You're definitely going to bring new flowers here in spring."
,
#endif;
has light scored;
Object -> "statue of a saint",
with name 'alcove' 'statue' 'saint' 'St' 'St.' 'Margaret' 'plaque',
describe [;
print "^An alcove to the left catches the eye with a beautifully carved statue of a saint, surrounded by a small collection of dried flowers. The saint is depicted with a serene expression, her hands directed hopefully towards the heavens";
if (parent(goldenkey) == hands) print ", holding a golden key";
print ".";
new_line; rtrue;
],
description "A small plaque beside the statue reads ~Saint Margaret of Scotland.~",
has static transparent;
Object -> hands "hands of Saint Margaret",
with name 'hands' 'hand' 'palm' 'palms',
description [;
print "The way the hands are held suggests that you can place something into them";
if (parent(goldenkey) == hands) print " and the shape of the golden key fitted perfectly into the palms of the hands";
print ".";
new_line; rtrue;
],
before [;
Receive:
if (~~ noun == goldenkey) "This object doesn't fit into the hands. Because of the way Saint Margaret's hands are aligned, only the object that was made for this purpose can be perfectly placed in them, whatever it is.";
],
after [;
Receive:
if (~~ self.player_progress == true) {
self.player_progress = true;
IncrementScore();
move silverplates to Oratory;
scope_modified = true;
"The key fits perfectly. A stone in the wall slides aside and reveals a set of silver plates. It's kind of mysterious. Under normal circumstances, you would never have found them. Someone has spoken to you through your dreams, deliberately leading you to secrets that have been hidden here for so long. But why? There must be a reason for all of this.";
}
else rfalse;
],
player_progress false,
has scenery pluralname open container;
Constant WANDEROFF "You shouldn't wander off while Rosie is here waiting for you.";
Room Vestibule "Vestibule"
with name 'vestibule' 'room',
description "The room is dimly lit by bulbs in sconces, casting long shadows across the cold floor. To the west, you can see an enormous wooden door leading to the outside, its surface polished by centuries of use. The library lies to the north, the great hall to the south and the kitchen to the east. To the southwest, you notice an old hinged door. A stone staircase spirals upwards.",
n_to [;
if (Rosie in Vestibule) print_ret (string)WANDEROFF;
return Library;
],
s_to [;
if (Rosie in Vestibule) print_ret (string)WANDEROFF;
return GreatHall;
],
e_to [;
if (Rosie in Vestibule) print_ret (string)WANDEROFF;
return Kitchen;
],
w_to [;
if (Rosie in Vestibule) print_ret (string)WANDEROFF;
if (PROGRESS_LEVEL == 0) "A snowstorm is raging outside. You decide that it's not a good time to leave the manor now.";
return Forecourt;
],
sw_to [;
if (Rosie in Vestibule) print_ret (string)WANDEROFF;
return TheChapel;
],
u_to [;
if (Rosie in Vestibule) print_ret (string)WANDEROFF;
return Corridor;
],
#ifdef EXTENDEDCUT;
cheap_scenery
23 'high' 'grand' 'columns' 'arches' 'ceiling' "Looking up there almost causes vertigo."
12 'intricate' 'carvings' 'tapestries' "That's quite fancy. So this is how the posh people live."
4 'light' 'bulbs' 'sconces' 'spots' "It looks like spots in the walls were once meant for torches. That was a long time ago. Even the light bulbs seem antiquated by now."
11 'long' 'shadows' "Hello darkness, my old friend."
CS_ADD_LIST Vestibule (cheap_scenery_pt2),
cheap_scenery_pt2
24 'enormous' 'wooden' 'door' 'surface' 'scratches' 'dents'
[;
Examine:
"The door looms before you, exuding an aura of age and history. Scratches and dents bear witness to the door's enduring journey through time. They tell stories of countless hands that have turned iron keys and adventurers who have sought the mysteries that lie beyond, just like you.";
Open, Enter:
<<Go FAKE_W_OBJ>>;
]
2 'stone' 'staircase'
[;
Examine:
"It leads to the upper part of the manor, which was built much later, on the ruins of the monastery.";
Enter, Go:
<<Go FAKE_U_OBJ>>;
]
21 'olden' 'hinged' 'door'
[;
Examine:
"The manor's chapel lies behind this door.";
Open, Enter:
<<Go FAKE_SW_OBJ>>;
]
#ifnot;
cheap_scenery
4 'light' 'bulbs' 'sconces' 'spots' "It looks like spots in the walls were once meant for torches. That was a long time ago. Even the light bulbs seem antiquated by now."
11 'long' 'shadows' "Hello darkness, my old friend."
CS_ADD_LIST Vestibule (cheap_scenery_pt2),
cheap_scenery_pt2
24 'enormous' 'wooden' 'door' 'surface' 'scratches' 'dents'
[;
Examine:
"The door looms before you, exuding an aura of age and history. Scratches and dents bear witness to the door's enduring journey through time. They tell stories of countless hands that have turned iron keys and adventurers who have sought the mysteries that lie beyond, just like you.";
Open, Enter: