Update to serial number 200614
[homeland.git] / src / objects / overworld / westofcampsite.inf
index 1cf633b1119c5b7bfceba26faaa453812f7bfcaf..d1e1482ddd8c64f5c4ee6fcbff2dddfc7cc237ce 100644 (file)
@@ -1,4 +1,4 @@
-! Copyright (C) 2019 Jason Self <j@jxself.org>
+! Copyright (C) 2019, 2020 Jason Self <j@jxself.org>
 !
 ! This file is free software: you may copy, redistribute and/or 
 ! modify it under the terms of the GNU Affero General Public License 
 ! License along with this file. If not, see https://gnu.org/licenses/
 
 Object  westofcampsite "West Of Campsite"
-  with  description 
-            "You're in an area of flat grassland just east of a 
-            forest. There is a circle of dead grass near recent 
-            livestock tracks in some mud. A flock of birds fly 
-            overhead and disappear into the forest.",
+  with  description [;
+            print "You're in an area of sweet smelling green ankle 
+high 
+            grassland just east of a forest. Livestock tracks form a 
+            well-worn path next to a creek, both coming from the 
+            northeast, and ending at a small pond. Filled with water 
+            lilies, the pond seems quiet and serene. You look to the 
+            forest edge and see a clear path east and northeast 
+            leading deep into the forest. On both sides there is 
+            dense undergrowth with only a small path through it. The 
+            trees are ancient with thick vines hanging from them and 
+            across the path. All other directions take you to 
+            low-lying hills and grassy fields.";
+            if (westofcampsite hasnt visited)
+                print
+                    " A flock of birds fly overhead and disappear into 
+                    the forest.";
+            new_line;
+        ],
         before [;
           Listen:
             print_ret 
-                "You hear strange whispers but looking around see no 
-                one.^";
+                "You hear strange unintelligible whispers but looking 
+                around see no one.^";
         ],
         e_to campsite,
-        cant_go 
-            "That area has not yet been implemented in this game.",
-  has   light;
\ No newline at end of file
+  has   light;
+
+Object  pond "pond" westofcampsite
+  with  name 'pond' 'water',
+        description 
+            "Filled with water lilies, the pond seems quiet 
+            and serene.",
+        before [;
+          ThrownAt:
+            "Probably not a good idea. You might need that.";
+          Taste, Drink:
+            print_ret "The water tastes dirty.";
+          Touch:
+            print_ret "You touch the water, creating ripples.";
+          Take, Pull, Push, PushDir, Turn:
+            print_ret 
+                "I'm not sure how 
+                you'd do that with a pond.";
+          Blow:
+            print_ret "You huff and you puff but nothing happens.";
+          Burn:
+            print_ret "One can burn water?";
+          Buy:
+            print_ret "The pond is not for sale.";
+          JumpOver:
+            print_ret "The pond is too large to jump over.";
+        ],
+  has   scenery;
+
+Object  vines "vines" westofcampsite
+  with  name 'vine' 'vines',
+  has   scenery;
\ No newline at end of file