1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-28 23:06:24 +02:00
vcmi/docs/modders/Entities_Format/Road_Format.md

20 lines
426 B
Markdown
Raw Normal View History

< [Documentation](../../Readme.md) / [Modding](../Readme.md) / Entities Format / Road Format
## Format
```jsonc
"newRoad" :
{
// Two-letters unique indentifier for this road. Used in map format
"shortIdentifier" : "mr",
// Human-readable name of the road
"text" : "My Road",
// Name of file with road graphics
"tilesFilename" : "myRoad.def"
// How many movement points needed to move hero
"moveCost" : 66
}
```