1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-10 23:48:04 +02:00

Add docs for new options

This commit is contained in:
Tomasz Zieliński 2024-09-14 13:20:24 +02:00
parent 2fe54504ab
commit 54e47c20b0

View File

@ -99,10 +99,13 @@
"minesLikeZone" : 1, "minesLikeZone" : 1,
// Treasures will have same configuration as in linked zone // Treasures will have same configuration as in linked zone
"treasureLikeZone" : 1 "treasureLikeZone" : 1,
// Terrain type will have same configuration as in linked zone // Terrain type will have same configuration as in linked zone
"terrainTypeLikeZone" : 3 "terrainTypeLikeZone" : 3,
// Custom objects will have same configuration as in linked zone
"customObjectsLikeZone" : 1,
// factions of monsters allowed on this zone // factions of monsters allowed on this zone
"allowedMonsters" : ["inferno", "necropolis"] "allowedMonsters" : ["inferno", "necropolis"]
@ -130,6 +133,28 @@
"density" : 5 "density" : 5
} }
... ...
],
// Objects with different configuration than default / set by mods
"customObjects" :
{
// All of objects of this kind will be removed from zone
// Possible values: "all", "none", "creatureBank", "bonus", "dwelling", "resource", "resourceGenerator", "spellScroll", "randomArtifact", "pandorasBox", "questArtifact", "seerHut", "other
"bannedCategories" : ["all", "dwelling", "creatureBank", "other"],
// Specify object types and subtypes
"bannedObjects" :["core:object.randomArtifactRelic"],
// Configure individual common objects - overrides banned objects
"commonObjects":
[
{
"id" : "core:object.creatureBank.dragonFlyHive",
"rmg" : {
"value" : 9000,
"rarity" : 500,
"zoneLimit" : 2
}
}
] ]
}
} }
``` ```