Adding initial work on Grue Hunter 2.0
[grue-hunter.git] / grue-hunter.inf
diff --git a/grue-hunter.inf b/grue-hunter.inf
new file mode 100644 (file)
index 0000000..76136e7
--- /dev/null
@@ -0,0 +1,65 @@
+! This file is part of Grue Hunter.
+!
+! Grue Hunter is free software: you can redistribute it and/or modify it 
+! under the terms of the GNU Affero General Public License as published 
+! by the Free Software Foundation, either version 3 of the License, or 
+! (at your option) any later version.
+!
+! Grue Hunter is distributed in the hope that it will be useful, but 
+! WITHOUT ANY WARRANTY; without even the implied warranty of 
+! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
+! Affero General Public License for more details.
+!
+! You should have received a copy of the GNU Affero General Public
+! License along with Grue Hunter. If not, see
+! <https://gnu.org/licenses/>.
+!===================================================================
+Global fuel_left = 20;
+Constant NO_SCORE;
+Constant DEATH_MENTION_UNDO;
+Constant Story "Grue Hunter";
+Constant Headline "^By Jason Self^
+This game gives you freedom; you can change and share it under the 
+terms of the GNU Affero General Public License as published by the 
+Free Software Foundation, either version 3 of the License, or (at your 
+option) any later version. See the GNU Affero General Public License 
+for details.^
+IFID 7521C1FD-B60F-4CA3-BCE6-59A42929BA78^";
+Include "parser";
+Include "verblib";
+Release 0;
+Serial "160930";
+
+Include "rooms/bottomofpit.inf";
+Include "rooms/northend.inf";
+
+Include "objects/backpack.inf";
+Include "objects/coppercoin.inf";
+Include "objects/lantern.inf";
+Include "objects/lengthofrope.inf";
+
+[ Initialise;
+       location = bottomofpit;
+       move backpack to player;
+       give backpack worn;
+       StartTimer(lantern, fuel_left);
+       thedark.description = "It is pitch black. You are likely to be eaten by a grue.";
+"^A ferocious grue has been attacking your village for the past few 
+weeks, taking a new person each night under cover of darkness. Despite 
+their best efforts your fellow villagers have been unable to stop it. 
+Three nights ago the grue came again and took your last parent. After 
+three days of grief, you decide to try to stop it and enter the cave 
+where it lives. After filling your trusty backpack with needed 
+supplies you depart in the early morning. Approaching the large hole 
+in the ground that serves as an entance to the underground cave you 
+tie your rope around a large rock and rapel down. About halfway down, 
+you look up and notice someone standing near that rock. With the sun 
+shining from behind them you can't make out who it is but they quickly 
+chop your rope and you fall the rest of the way to the bottom of the 
+pit. You pass out from the fall and once you wake up the person is 
+gone. There's no way you'll be able to get back out the way you 
+came.^";
+
+];
+
+Include "grammar";