36 lines
650 B
TOML
36 lines
650 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 = ["#"]
|
|
|
|
[[portals]]
|
|
x = 4
|
|
y = 5
|
|
target = "hub:14,7"
|
|
label = "the tavern door"
|
|
|
|
[ambient]
|
|
interval = 60
|
|
messages = [
|
|
"the fire crackles and pops in the hearth",
|
|
"a draft of cold air blows through the room",
|
|
"you hear muffled conversation from patrons in the corner",
|
|
"the smell of roasting meat and ale fills the air",
|
|
]
|