mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-23 22:37:55 +02:00
21 lines
331 B
Markdown
21 lines
331 B
Markdown
|
|
# Resource Format
|
||
|
|
|
||
|
|
```json
|
||
|
|
// Internal field for H3 resources. Do not use for mods
|
||
|
|
"index" : "",
|
||
|
|
|
||
|
|
// displayed name of the resource
|
||
|
|
"name" : "",
|
||
|
|
|
||
|
|
// Resource icons of varying size
|
||
|
|
"images" : {
|
||
|
|
// 20x18 resource icon
|
||
|
|
"small" : "",
|
||
|
|
// 32x32 resource icon
|
||
|
|
"medium" : "",
|
||
|
|
// 82x93 resource icon
|
||
|
|
"large" : ""
|
||
|
|
}
|
||
|
|
|
||
|
|
```
|