mud/content/zones/flower.toml
Jared Miller 56c82700b0
Add tutorial zones (flower and treehouse)
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.
2026-02-11 22:38:14 -05:00

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"