47 lines
801 B
TOML
47 lines
801 B
TOML
name = "hub"
|
|
description = "a crossroads where paths converge beneath a weathered signpost"
|
|
width = 15
|
|
height = 15
|
|
toroidal = false
|
|
spawn_x = 7
|
|
spawn_y = 7
|
|
|
|
[terrain]
|
|
rows = [
|
|
"#######.#######",
|
|
"#######.#######",
|
|
"#######.#######",
|
|
"#######.#######",
|
|
"#......+......#",
|
|
"#......+......#",
|
|
"#......+......#",
|
|
"..............+",
|
|
"#......+......#",
|
|
"#......+......#",
|
|
"#......+......#",
|
|
"#######.#######",
|
|
"#######.#######",
|
|
"#######.#######",
|
|
"#######.#######",
|
|
]
|
|
|
|
[terrain.impassable]
|
|
tiles = ["#"]
|
|
|
|
[[portals]]
|
|
x = 7
|
|
y = 0
|
|
target = "overworld:500,500"
|
|
label = "a wide dirt path"
|
|
|
|
[[portals]]
|
|
x = 14
|
|
y = 7
|
|
target = "tavern:4,5"
|
|
label = "a weathered oak door"
|
|
|
|
[[portals]]
|
|
x = 7
|
|
y = 14
|
|
target = "treehouse:0,7"
|
|
label = "a mossy forest trail"
|