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
|
{
"mapping":{
"tree": ["T",0,2],
"wall": ["#",7,8],
"rock": ["X",7,8],
"stone": ["o",7],
"pebble": ["*",7],
"player": ["@",15],
"ground": [".",3],
"grass1": [",",2],
"grass2": ["'",2],
"grass3": ["`",10],
"rabbit": ["r",15],
"water": ["~",6,4],
"floor": [".",8],
"portal": ["$", 5],
"stairdown": [">",7],
"stairup": ["<",7],
"dummy": ["d",3],
"spikes": ["^",7],
"goblin": ["g",2],
"seed": [":",10],
"plant": ["Y",10],
"youngplant": ["v",10],
"food": ["8",13],
"troll": ["T",1],
"sword": ["/", 7],
"club": ["!", 3],
" ": " "
},
"default": "?",
"charwidth": 2,
"healthfull": ["#", 7, 2],
"healthemtpy": ["_", 7, 1]
}
|