1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-23 22:37:55 +02:00

Support for objects from mods as campaign scenario bonuses

This commit is contained in:
Ivan Savenko
2025-05-29 17:24:45 +03:00
parent 87d5347e50
commit 2bf951a4cf
11 changed files with 110 additions and 20 deletions

View File

@@ -46,8 +46,8 @@ In order to make functional artifact you also need:
// Base image for this artifact, used for example in hero screen
"image": "BigSword.png",
// Large image, used for drag-and-drop and popup messages
"large": "BigSword_large.png",
// Large 58x64 image, used for campaign scenario bonus selection
"scenarioBonus": "BigSword_large.png",
//def file for adventure map
"map": "BigSword.def"

View File

@@ -83,6 +83,8 @@ level fields become optional if they equal "base" configuration.
"medium" : "",
// 82x93 skill icon
"large" : "",
// 58x64 skill icon for campaign scenario bonus
"scenarioBonus" : ""
}
}
```