69 lines
1.0 KiB
TOML
Raw Normal View History

2020-09-02 17:50:13 +01:00
[image]
name = "bg"
pixels = [
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
]
[image]
name = "block"
pixels = [
2,2,2,2,2,2,2,2,
2,1,1,1,1,1,1,2,
2,1,1,1,1,1,1,2,
2,1,1,2,2,1,1,2,
2,1,1,2,2,1,1,2,
2,1,1,1,1,1,1,2,
2,1,1,1,1,1,1,2,
2,2,2,2,2,2,2,2,
]
[image]
name = "avatar"
pixels = [
0,0,0,3,3,0,0,0,
0,0,0,3,3,0,0,0,
0,0,0,3,3,0,0,0,
0,0,3,3,3,3,0,0,
0,3,3,3,3,3,3,0,
3,0,3,3,3,3,0,3,
0,0,3,0,0,3,0,0,
0,0,3,0,0,3,0,0,
]
[image]
name = "cat"
pixels = [
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,3,0,3,0,0,0,3,
0,3,3,3,0,0,0,3,
0,3,3,3,0,0,3,0,
0,3,3,3,3,3,0,0,
0,0,3,3,3,3,0,0,
0,0,3,0,0,3,0,0,
]
[thing]
name = "avatar"
image = "avatar"
input = ["movement-wasd", "movement-arrow-keys"]
[thing]
name = "cat"
image = "cat"
bumped = """
say "I'm a cat"
"""
[variable]
name = "a"
type = "int"
default = 42