mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
0ca9f64573
- town screen is mostly implemented, has some minor issues - factions are now separate from towns, neutrals have faction with id=9 - more constants to GameConstants: town-specific buildings, strings for terrains and resources - replaced most access to builtBuildings with isBuilt() method - replaced id's with enums for town subtype and buildings id's
14 lines
234 B
JSON
14 lines
234 B
JSON
{
|
|
// Movement costs on different terrains
|
|
"dirt" : 100,
|
|
"sand" : 150,
|
|
"grass" : 100,
|
|
"snow" : 150,
|
|
"swamp" : 175,
|
|
"rough" : 125,
|
|
"subterra" : 100,
|
|
"lava" : 100,
|
|
"water" : 100,
|
|
"rock" : -1,
|
|
}
|