1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{
"width": 33,
"height": 33,
"spawn": [24, 24],
"places": {
"begin": [21, 24],
"towneast": [24, 13],
"home": [24, 26]
},
"field": [
"#################################",
"#,,,,,,#.#,,,,,,#~~~,~,#.#,,,,^,#",
"#,,,,,,#.#,,,,,,#~~~~~~#.#,,,,,,#",
"#,,,,,,#.#,,,,,,#~~~~~~#.#,,,,,,#",
"#,,,,,,#.#,,,,,,#~~~~~,#.#,,^^,,#",
"#,,,^^,#.#,,,,^,#,~~~~,#.#,,,,,,#",
"#,,,,,,#.#,,,,,,#,~~,,,#.#,,,,,,#",
"########.#########~#####.########",
"#.................=.............#",
"########.#########~#####.########",
"#,,,,,,#.#,,,,,,#^~^..^#.#,^,,,,#",
"#,,,,,,#.#,,,,,,#^~^..^#.#,,,,,,#",
"#,,,,,,#.#,,,,,,#.=..^^#.#,,,,,,#",
"#,,,,,,#.#,,,,,,#^~^...2.#,,,,,,#",
"#,,,,,,#.#,,,,,,#.~~=~.#.#,,,,,,#",
"#,,,,,,#.#,,,,,,#.^^.~~#.#,,,,,,#",
"########.#############~#.########",
"#,,,,,,#.,,T,,T,T,,T,~~,.#,,,,,,#",
"#,,,^^,#.,T,T,T,T,,TT~,,.#,,,,,,#",
"#,,,,,,#.,T,T,,T,,TT,~~,.#,,,,,,#",
"#,,,,,,#.,TT,,TTT,,,T,~,.#,,,,,,#",
"#,,,,,,#.T,,,TT,TT,T,T~,.#,,^,,,#",
"#,,,,,,#.,TT,T,,T,,,T,~~.#,,,,,,#",
"########.T,,TTTT,TTT,TT~.########",
"#......................=........4",
"########.,,~~~~~~~~~~1~~.########",
"#,,,,,,#.~~~,,,T,,,,,,,~.3,,,,,,#",
"#,,,,,,#.~,,,,,,,,,,,,,~,#,^,,,,#",
"#,,,,,,#.~,,,,,,,,,,T,,~,#,,,,,,#",
"#,,,,,,#.~,,^^,,,,,,,,,~,#,,,,,,#",
"#,,,,,,#.~,,,T,,,,T,,,,~,#,,,,,,#",
"#,,,,,,#.~,,X,,,X,,,,XX~,#,,,,,,#",
"######XX+~XXXXXXXXXXXXX~+XXX#####"
],
"mapping": {
",": "greengrass",
"Y": ["grass", "plant"],
"T": ["grass", "tree"],
"~": "water",
"=": ["water", {":template": "bridge", "small": true}],
"#": "fence",
".": "ground",
"+": "floor",
"X": "rock",
"^": "house",
"1": [{":template": "portal", "destination": "begin", "destpos": "bridge"}, "floor"],
"2": [{":template": "portal", "destination": "town", "destpos": "gate"}, "floor"],
"3": ["homeportal", "floor", {":template": "img", "sprite": "portal", "height": 1.0}],
"4": [{":template": "portal", "destination": "room"}, "floor"],
"r": ["grass", "rabbit"],
" ": []
}
}
|