Implements the new player funnel with two tutorial zones: - Flower: 7x7 sealed zone with translucent petals, spawn at center - Treehouse: 20x15 platform zone with rope ladder and branch exits Both zones are bounded (non-toroidal) and include portals for progression.
41 lines
875 B
TOML
41 lines
875 B
TOML
name = "treehouse"
|
|
description = "a sprawling treehouse platform high in an ancient oak, branches creaking in the wind"
|
|
width = 20
|
|
height = 15
|
|
toroidal = false
|
|
spawn_x = 10
|
|
spawn_y = 7
|
|
|
|
[terrain]
|
|
rows = [
|
|
"~TTTTTTTTTTTTTTTTTT~",
|
|
"~TToooooooooooooTTT~",
|
|
"~TToo..........ooTT~",
|
|
"~TTo............oT~~",
|
|
"~TTo............oT~~",
|
|
"~TTo............oT~~",
|
|
"~TTo............oT~~",
|
|
"...o............oT~~",
|
|
"~TTo............oT~~",
|
|
"~TTo............oT~~",
|
|
"~TTo............oT~~",
|
|
"~TTo............oT~~",
|
|
"~TToo..........ooT~~",
|
|
"~TTToooooooooooTTT~~",
|
|
"~TTT...oooo...TTTT~~",
|
|
]
|
|
|
|
[terrain.impassable]
|
|
tiles = ["o", "~"]
|
|
|
|
[[portals]]
|
|
x = 10
|
|
y = 14
|
|
target = "overworld:500,500"
|
|
label = "a rope ladder dangles into the mist below"
|
|
|
|
[[portals]]
|
|
x = 0
|
|
y = 7
|
|
target = "hub:7,14"
|
|
label = "a narrow branch leads to a distant platform"
|