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.
27 lines
431 B
TOML
27 lines
431 B
TOML
name = "flower"
|
|
description = "you lie in the heart of a giant flower, warm light filtering through translucent petals"
|
|
width = 7
|
|
height = 7
|
|
toroidal = false
|
|
spawn_x = 3
|
|
spawn_y = 3
|
|
|
|
[terrain]
|
|
rows = [
|
|
"ooooooo",
|
|
"ooo.ooo",
|
|
"oo...oo",
|
|
"o.....o",
|
|
"oo...oo",
|
|
"ooo.ooo",
|
|
"ooo.ooo",
|
|
]
|
|
|
|
[terrain.impassable]
|
|
tiles = ["o"]
|
|
|
|
[[portals]]
|
|
x = 3
|
|
y = 6
|
|
target = "treehouse:10,7"
|
|
label = "an opening in the petals"
|