21 lines
321 B
TOML
21 lines
321 B
TOML
name = "tavern"
|
|
description = "a cozy tavern with a crackling fireplace"
|
|
width = 8
|
|
height = 6
|
|
toroidal = false
|
|
spawn_x = 1
|
|
spawn_y = 1
|
|
|
|
[terrain]
|
|
# rows as strings, one per line
|
|
rows = [
|
|
"########",
|
|
"#......#",
|
|
"#......#",
|
|
"#......#",
|
|
"#......#",
|
|
"####.###",
|
|
]
|
|
|
|
[terrain.impassable]
|
|
tiles = ["#"]
|