davedotluebke / old-skool-text-game

Coding project used to learn Python
5 stars 4 forks source link

Hidden orc camp (sub-quest to #129) #131

Closed davedotluebke closed 3 years ago

davedotluebke commented 4 years ago

Part of the "rid the village of orcs" quest (#129) is to find the orc camp. To make this more interesting, we will hide the camp in a large (10x10 or larger) prairie created using the "endless terrain" functionality. The camp will be located in a random location (seeded by the time the gameserver was started, and thus different every day as the server reboots daily) and difficult to find by random exploration. Fortunately for the player, the orcs leave occasional footprints leading to or away from the camp. Some number of paths (maybe 4?) are randomly generated from the camp to the corners or edges of the prairie, and along the path there is a chance (perhaps 60%) that the orcs have left footprints. Once the player comes across a path, they can follow the footprints (occasionally losing the trail and needing to cast about to pick it up again) until it leads them to the orc camp.

davedotluebke commented 3 years ago

Closing this issue. Can add useful items and grinding targets to prairie later.