69 lines
1.0 KiB
TOML
69 lines
1.0 KiB
TOML
|
|
[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
|