1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/config/terrains.json

133 lines
2.9 KiB
JSON
Raw Normal View History

{
"dirt" :
{
"moveCost" : 100,
"minimapUnblocked" : [ 82, 56, 8 ],
"minimapBlocked" : [ 57, 40, 8 ],
"music" : "Dirt.mp3",
"tiles" : "DIRTTL",
2022-06-22 10:41:02 +02:00
"code" : "dt",
"river" : "rm",
2022-06-22 10:41:02 +02:00
"battleFields" : ["dirt_birches", "dirt_hills", "dirt_pines"],
"terrainViewPatterns" : "dirt",
"horseSoundId" : 0
},
"sand" :
{
"moveCost" : 150,
"minimapUnblocked" : [ 222, 207, 140 ],
"minimapBlocked" : [ 165, 158, 107 ],
"music" : "Sand.mp3",
"tiles" : "SANDTL",
2022-06-22 10:41:02 +02:00
"code" : "sa",
"river" : "rm",
2022-06-22 10:41:02 +02:00
"battleFields" : ["sand_mesas"],
"transitionRequired" : true,
"terrainViewPatterns" : "sand",
"horseSoundId" : 1
},
"grass" :
{
"moveCost" : 100,
"minimapUnblocked" : [ 0, 65, 0 ],
"minimapBlocked" : [ 0, 48, 0 ],
"music" : "Grass.mp3",
"tiles" : "GRASTL",
2022-06-22 10:41:02 +02:00
"code" : "gr",
"river" : "rw",
"battleFields" : ["grass_hills", "grass_pines"],
"horseSoundId" : 2
},
"snow" :
{
"moveCost" : 150,
"minimapUnblocked" : [ 181, 199, 198 ],
"minimapBlocked" : [ 140, 158, 156 ],
"music" : "Snow.mp3",
"tiles" : "SNOWTL",
2022-06-22 10:41:02 +02:00
"code" : "sn",
"river" : "ri",
"battleFields" : ["snow_mountains", "snow_trees"],
"horseSoundId" : 3
},
"swamp" :
{
"moveCost" : 175,
"minimapUnblocked" : [ 74, 134, 107 ],
"minimapBlocked" : [ 33, 89, 66 ],
"music" : "Swamp.mp3",
"tiles" : "SWMPTL",
2022-06-22 10:41:02 +02:00
"code" : "sw",
"river" : "rw",
"battleFields" : ["swamp_trees"],
"horseSoundId" : 4
},
"rough" :
{
"moveCost" : 125,
"minimapUnblocked" : [ 132, 113, 49 ],
"minimapBlocked" : [ 99, 81, 33 ],
"music" : "Rough.mp3",
"tiles" : "ROUGTL",
2022-06-22 10:41:02 +02:00
"code" : "rg",
"river" : "rm",
"battleFields" : ["rough"],
"horseSoundId" : 5
},
"subterra" :
{
"moveCost" : 100,
"minimapUnblocked" : [ 132, 48, 0 ],
"minimapBlocked" : [ 90, 8, 0 ],
"music" : "Underground.mp3",
"tiles" : "SUBBTL",
"type" : "SUB",
2022-06-22 10:41:02 +02:00
"code" : "sb",
"river" : "rw",
"battleFields" : ["subterranean"],
"rockTerrain" : "rock",
"horseSoundId" : 6
},
"lava" :
{
"moveCost" : 100,
"minimapUnblocked" : [ 74, 73, 74 ],
"minimapBlocked" : [ 41, 40, 41 ],
"music" : "Lava.mp3",
"tiles" : "LAVATL",
2022-06-22 10:41:02 +02:00
"code" : "lv",
"river" : "rl",
"battleFields" : ["lava"],
"rockTerrain" : "rock",
"horseSoundId" : 7
},
"water" :
{
"moveCost" : 100,
"minimapUnblocked" : [ 8, 81, 148 ],
"minimapBlocked" : [ 8, 81, 148 ],
"music" : "Water.mp3",
"tiles" : "WATRTL",
"type" : "WATER",
2022-06-22 10:41:02 +02:00
"code" : "wt",
"battleFields" : ["ship"],
"transitionRequired" : true,
"terrainViewPatterns" : "water",
"horseSoundId" : 8
},
"rock" :
{
"moveCost" : -1,
"minimapUnblocked" : [ 0, 0, 0 ],
"minimapBlocked" : [ 0, 0, 0 ],
"music" : "Underground.mp3", // Impossible in H3
"tiles" : "ROCKTL",
"type" : "ROCK",
2022-06-22 10:41:02 +02:00
"code" : "rc",
"battleFields" : ["rocklands"],
"transitionRequired" : true,
"terrainViewPatterns" : "rock",
"horseSoundId" : 9
}
}