- Implemented Map - Partially implemented CLI interaction with map - Added load_map test
26 lines
377 B
TOML
26 lines
377 B
TOML
[[room]]
|
|
id = 0
|
|
children = [ 1, 2 ]
|
|
value = 0
|
|
name = "Entrance"
|
|
description = "Enter the dungeon"
|
|
|
|
[[room]]
|
|
id = 1
|
|
children = [ 0, 3 ]
|
|
value = 100
|
|
name = "Kitchen hall"
|
|
|
|
[[room]]
|
|
id = 2
|
|
children = [ 0 ]
|
|
value = 250
|
|
name = "Room"
|
|
description = "Simple room with no furniture"
|
|
|
|
[[room]]
|
|
id = 3
|
|
children = [ 1 ]
|
|
value = 175
|
|
name = "Kitchen"
|
|
description = "Knives are stored here"
|