Update to serial 200604
authorJason Self <j@jxself.org>
Fri, 5 Jun 2020 04:09:37 +0000 (21:09 -0700)
committerJason Self <j@jxself.org>
Fri, 5 Jun 2020 04:09:37 +0000 (21:09 -0700)
src/homeland.inf
src/objects/intro/backyard.inf
src/objects/overworld/campsite.inf
src/objects/overworld/westofcampsite.inf

index 324963827439c498838c0ca4e992755602ff6a9e..abae58d7a7c5daaec2f03cbb46d0e953e064575f 100644 (file)
@@ -34,7 +34,7 @@ Constant Headline
 Include "parser";
 Include "verblib";
 Release 0;
-Serial "200524";
+Serial "200604";
 Include "src/objects/intro/kitchen.inf";
 Include "src/objects/intro/livingroom.inf";
 Include "src/objects/intro/bedroom.inf";
index 6b007a62bb94ef6273a689f91137ddfb035c4de3..c82291f971acf4dd2bed69bc913f87a1cd77b289 100644 (file)
@@ -41,7 +41,7 @@ Object  backyard "Back Yard"
 
 Object  grass "grass" backyard
   with  name 'green' 'grass' 'meadow' 'sod' 'turf' 'lawn',
-        found_in backyard campsite,
+        found_in backyard campsite westofcampsite,
   has   scenery;
 
 Object  sky "sky" backyard
index 5c1a6044dc3a07909bb0800a4043b399dd2197b1..d49c33aade32fe101830c83e3f11b4e91663bd1e 100644 (file)
 
 Object  campsite "Campsite"
   with  description 
-            "You are at an old campsite set among some low-lying 
-            hills. Healthy, dark green grass carpets the ground 
-            except around an old fire pit.",
+            "You are at an old campsite set among some low-lying hills 
+            and grassy fields. The sun shines brightly from above, 
+            casting its golden glow in all directions to illuminate 
+            the camping area. The healthy, dark green grass carpets 
+            the field except around an old fire pit. The fire pit 
+            appears to have been used recently and you smell smoke in 
+            the air. It is still intact and there are no ashes. The 
+            hills and grassy fields appears to continue on in all 
+            directions, leading to some trees in the distance in an 
+            area that appears to be heavily wooded.",
         w_to westofcampsite,
         before [;
           Listen:
@@ -41,11 +48,13 @@ Object  firepit "firepit" campsite
 Object  log "log" campsite
   with  name 'log' 'wood',
         description 
-            "It's the remnant of a tree uprooted by a storm. Someone 
-            has taken the time to shape it flat and square for 
-            sitting. Slightly recessed into the ground, it's a 
-            combination of cinnamon and caramel brown. Deep scratches 
-            and ominous stains mar the surface.",
+            "It's the remnant of a tree trunk uprooted by a storm. 
+            About 6 feet long and 2 feet thick, someone has taken the 
+            time to shape it flat and square for sitting. The log is 
+            dry but heavy for its size and would be difficult to move 
+            without some kind of vehicle. Slightly recessed into the 
+            ground, it's a combination of cinnamon and caramel brown. 
+            Deep scratches and ominous stains mar the surface.",
   has   supporter enterable static;
 
 Object  diary "diary"
index 1cf633b1119c5b7bfceba26faaa453812f7bfcaf..a1830ca28517e063edca8d63d47cf13aebd2b92a 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 
 
 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.",
+            "You're in an area of sweet smelling green ankle high 
+            grassland just east of a forest. Livestock tracks form a 
+            well-worn path coming from the northeast, ending at a 
+            small pond. Filled with water lilies, the pond seems 
+            quiet and serene. You look to forest edge and see a clear 
+            path east and northeast leading deep into the forest. On 
+            both sides there is dense undergrowth with only small 
+            paths 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. 
+            A flock of birds fly overhead and disappear into the 
+            forest.",
         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  livestocktracks "livestock tracks" westofcampsite
+  with  name 'livestock' 'track' 'tracks',
+        found_in westofcampsite,
+  has   scenery;
+
+Object  vines "vines" westofcampsite
+  with  name 'vine' 'vines',
+  has   scenery;
\ No newline at end of file