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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
{
"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", {"type": "bridge", "kwargs": {"small": true}}],
"o": ["grass", "stone"],
"*": ["grass", "pebble"],
"d": ["ground", "dummy"],
"#": "fence",
";": ["floor", "seed"],
".": "ground",
"+": "floor",
"X": "rock",
"^": "house",
"1": [{
"type": "portal",
"kwargs": {"destination": "right", "destpos": "bridge"}
}, "floor"],
"2": [{
"type": "portal",
"kwargs": {"destination": "town", "destpos": "gate"}
}, "floor"],
"3": [{"type": "homeportal", "kwargs": {"dedup_id": "homeportal"}, "save": true}, "floor", {"type": "img", "kwargs": {"sprite": "portal", "height": 1.0}}],
"4": [{
"type": "portal",
"kwargs": {"destination": "room"}
}, "floor"],
"r": ["grass", "rabbit"],
"/": ["grass", "sword"],
"!": ["grass", "club"],
"]": ["grass", "armour"],
" ": []
}
}
|