recursive_path.conf

Download raw config

# copperlace-example-max-recursion-depth: 3

landmark = ["old gate", "fallen obelisk", "silver well", "hollow tower"]
direction = ["north", "east", "downhill", "toward the river"]
terrain = ["moss bridge", "ash field", "root tunnel", "stone stair"]
sign = ["blue lanterns", "carved arrows", "echoing bells", "chalk marks"]

start = "Begin at {landmark | article}"
step = [
  "follow the {direction} path",
  "cross {terrain | article}",
  "watch for {sign}",
]

origin = "{start} and {step}{path_tail}."
path_tail = [
  { value = ", then {step}{path_tail}", weight = 2 },
  ""
]