Files
heros/data/defs/terrain.json

59 lines
1.3 KiB
JSON

{
"G": {
"id": "plain",
"name": "평원",
"color": "#6d9e4f",
"defense": 0,
"avoid": 0,
"move_cost": { "foot": 1, "mounted": 1, "archer": 1, "water": 99 }
},
"F": {
"id": "forest",
"name": "숲",
"color": "#33733a",
"defense": 2,
"avoid": 10,
"move_cost": { "foot": 2, "mounted": 3, "archer": 2, "water": 99 }
},
"H": {
"id": "hill",
"name": "산지",
"color": "#8c8057",
"defense": 1,
"avoid": 5,
"move_cost": { "foot": 2, "mounted": 3, "archer": 2, "water": 99 }
},
"D": {
"id": "wasteland",
"name": "황무지",
"color": "#96734a",
"defense": 0,
"avoid": 0,
"move_cost": { "foot": 1, "mounted": 2, "archer": 1, "water": 99 }
},
"R": {
"id": "road",
"name": "관도",
"color": "#a38c6b",
"defense": 0,
"avoid": 0,
"move_cost": { "foot": 1, "mounted": 1, "archer": 1, "water": 99 }
},
"W": {
"id": "water",
"name": "하천",
"color": "#2e5c9e",
"defense": 0,
"avoid": 0,
"move_cost": { "foot": 99, "mounted": 99, "archer": 99, "water": 1 }
},
"C": {
"id": "castle",
"name": "성채",
"color": "#7f7a70",
"defense": 3,
"avoid": 0,
"move_cost": { "foot": 1, "mounted": 2, "archer": 1, "water": 99 }
}
}