Update the library to version 6.12.5
[grue-hunter.git] / grue-hunter.inf
1 ! This file is part of Grue Hunter.
2 !
3 ! Grue Hunter is free software: you can redistribute it and/or modify it 
4 ! under the terms of the GNU Affero General Public License as published 
5 ! by the Free Software Foundation, either version 3 of the License, or 
6 ! (at your option) any later version.
7 !
8 ! Grue Hunter is distributed in the hope that it will be useful, but 
9 ! WITHOUT ANY WARRANTY; without even the implied warranty of 
10 ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
11 ! Affero General Public License for more details.
12 !
13 ! You should have received a copy of the GNU Affero General Public
14 ! License along with Grue Hunter. If not, see
15 ! <https://gnu.org/licenses/>.
16 !===================================================================
17 Global fuel_left = 20;
18 Constant NO_SCORE;
19 Constant DEATH_MENTION_UNDO;
20 Constant Story "Grue Hunter";
21 Constant Headline "^By Jason Self^
22 This game gives you freedom; you can change and share it under the 
23 terms of the GNU Affero General Public License as published by the 
24 Free Software Foundation, either version 3 of the License, or (at your 
25 option) any later version. See the GNU Affero General Public License 
26 for details.^
27 IFID 7521C1FD-B60F-4CA3-BCE6-59A42929BA78^";
28 Include "parser";
29 Include "verblib";
30 Release 0;
31 Serial "160930";
32
33 Include "rooms/bottomofpit.inf";
34 Include "rooms/northend.inf";
35
36 Include "objects/backpack.inf";
37 Include "objects/coppercoin.inf";
38 Include "objects/lantern.inf";
39 Include "objects/lengthofrope.inf";
40
41 [ Initialise;
42         location = bottomofpit;
43         move backpack to player;
44         give backpack worn;
45         StartTimer(lantern, fuel_left);
46         thedark.description = "It is pitch black. You are likely to be eaten by a grue.";
47 "^A ferocious grue has been attacking your village for the past few 
48 weeks, taking a new person each night under cover of darkness. Despite 
49 their best efforts your fellow villagers have been unable to stop it. 
50 Three nights ago the grue came again and took your last parent. After 
51 three days of grief, you decide to try to stop it and enter the cave 
52 where it lives. After filling your trusty backpack with needed 
53 supplies you depart in the early morning. Approaching the large hole 
54 in the ground that serves as an entance to the underground cave you 
55 tie your rope around a large rock and rapel down. About halfway down, 
56 you look up and notice someone standing near that rock. With the sun 
57 shining from behind them you can't make out who it is but they quickly 
58 chop your rope and you fall the rest of the way to the bottom of the 
59 pit. You pass out from the fall and once you wake up the person is 
60 gone. There's no way you'll be able to get back out the way you 
61 came.^";
62
63 ];
64
65 Include "grammar";