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
|
{
"width": 43,
"height": 23,
"spawn": [6, 19],
"field": [
" ~~~~~XXXXXXXXXXXX~~~XXXXXXXXXXXXXXXXXXXXXX",
" ~~~~~,,,,,,,,,,,,~~~,,,,,,,,,,,,,,,,,,,,,X",
" ~~~~,,,,,,,,,,,,,~~~,,,,,,,,,,,,,,,,,,,,,X",
" ~~~~,,,,,,,,,,r,,~~~~,,,,,,,,,,,,,,,,,,,,X",
" ~bbbb..,,,,,,,,,,,~~~,,,,,,,,,,,,,,,,,,,,X",
" ~~~~,,.,,,,,,,,,,,~~~,,,,,,,,,,,,,,,,,,,,X",
" ~~~,,,.,,,,,,,,,,,~~~,,,,,,,,,,,,,,,,,,,,X",
" ~~,,,,.,,,,,,,,,,,~~~,,,,,,,,,,,,,,,,,,,,X",
" X,,,,,.,,,,,,,,,,,~~~~,,,,,,T,,,,,,,,,,,,X",
" X,,,,,.,,,,,,,,,,,,~~~,,,,,,,,,,,,,,,,,,,X",
" X,,,,,.,u,,,,,,,,,,~~~,,,,,T,,,,######,,,X",
" X,,,,,.,,,,,,,,,,,,bbb,,,,,,,,,,#++++#,,,X",
" X,,,...............bbb..........D++++#,,,X",
" X,,,,,.,,,,,,,,,,,,bbb,,,,,,,,,,#++++#,,,X",
" X,,,,,.,,,,,,,,,,,,~~~,,,T,,,T,,#++++#,,,X",
" X,,,,,.,,,,,,,,,,,,~~~,,,,,,,,,,######,,,X",
" X,,,,,.,s,d,,,,,,,~~~~,,,,,,,,,,f,,,,f,,,X",
" X,,,,,.,,,,,,,,,,,~~~''''''''''''''''f'''X",
" X,,,,,.,,,d,,,,,,,~~~'''''''''''f''''f'''X",
"1.......,,,,,,,,,,,~~~'''''''''''ffffff'''X",
" X,,,,,.,,,Q,,,,,,,~~~''''''''''''''''''''X",
" XXXXX,.,XXXXXXXXXX~~~XXXXXXXXXXXXXXXXXXXXX",
" %%% "
],
"mapping": {
"#": "wall",
",": "grass",
".": "ground",
"~": "water",
"b": "bridge",
"+": "floor",
"'": "greengrass",
"T": ["grass", "tree"],
"f": ["grass", "fence"],
"X": "rock",
"*": ["grass", {":template": "spawner", "template": {":template": "pebble"}, "delay": 1200, "initial_spawn": false}],
"o": ["grass", {":template": "spawner", "template": {":template": "stone"}, "delay": 1200, "initial_spawn": false}],
"%": {":template": "portal", "destination": "broom", "destpos": "northentry"},
"1": {":template": "portal", "destination": "smallview"},
"^": ["grass", "spiketrap"],
"d": ["grass", {":template": "spawner", "template": {":template": "dummy"}, "delay": 100, "initial_spawn": true}],
"r": ["grass", {":template": "spawner", "template": {":template": "rat"}, "amount": 3, "clan": "rats", "delay": 200, "initial_spawn": true}],
"D": ["ground", "closeddoor"],
"s": ["ground", "sign"],
"u": ["ground", "dude"],
"t": ["ground", "trader"],
"Q": "quarry",
" ": []
}
}
|