blob: 38ca6bf9ee4616df531319b660dcecc59a7e75a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
local locations = require("locations")
local world = require("world")
local location = {
name = "Fields",
goto_txt = [[
You take the path out of the city towards the open fields to the east. You
pass over rolling hills and sparse farmland. There's nothing around here!
]],
desc = [[
The fields are an rural area. Small farmhouses and toolsheds dot the
landscape. The occasional crop plot is planted in neat rows. You see cows
grazing on a nearby hills. There are small saplings growing out of the ground
at random intervals.
There is a path to the City of Beginnings to the west
]],
settle_txt = [[
You keep walking through the rolling hills until you can barely see the closest
houses to you, and mark out a plot in the mud with sticks.
]],
houses = {},
go = {
{"west", function() return world.locations["City"] end},
}
}
locations.add_location(location)
|