Files
kiln/maps/start.toml
T
2026-06-04 20:11:55 -05:00

55 lines
2.0 KiB
TOML

[map]
name = "Starting Room"
width = 60
height = 25
player_start = [30, 12]
[palette]
" " = { archetype = "empty", tile = " ", fg = "#000000", bg = "#000000" }
"#" = { archetype = "wall", tile = "#", fg = "#808080", bg = "#606060" }
"+" = { archetype = "banana", tile = "#", fg = "#808080", bg = "#606060" }
[grid]
content = """
############################################################
# #
# #
# #
# #
# #
# ###### #
# # #
# +++ # #
# # #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
############################################################
"""
[[objects]]
fg = "#aa3333"
bg = "#000000"
x = 10
y = 10
tile = "#"
passable = true
script_name = "greeter"
[scripts]
greeter = """
fn init() {
log("hello world");
}
"""