mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-25 22:42:04 +02:00
25 lines
555 B
Markdown
25 lines
555 B
Markdown
|
|
# Mine
|
||
|
|
|
||
|
|
Currently only one mine per resource allowed.
|
||
|
|
|
||
|
|
Beside the common parameters from [Map Object Format](../Map_Object_Format.md) there are some additional parameters:
|
||
|
|
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
/// produced resource
|
||
|
|
"resource" : "mithril",
|
||
|
|
|
||
|
|
/// amount of resources produced each day
|
||
|
|
"defaultQuantity" : 1,
|
||
|
|
|
||
|
|
/// displayed name of mine
|
||
|
|
"name" : "name text",
|
||
|
|
|
||
|
|
/// displayed description of mine (for popup)
|
||
|
|
"description" : "description text",
|
||
|
|
|
||
|
|
/// Image showed on kingdom overview (animation; only frame 0 displayed)
|
||
|
|
"kingdomOverviewImage" : "image.def"
|
||
|
|
}
|
||
|
|
```
|