|
@@ -99,10 +99,13 @@
|
|
|
"minesLikeZone" : 1,
|
|
|
|
|
|
// Treasures will have same configuration as in linked zone
|
|
|
- "treasureLikeZone" : 1
|
|
|
+ "treasureLikeZone" : 1,
|
|
|
|
|
|
// 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
|
|
|
"allowedMonsters" : ["inferno", "necropolis"]
|
|
@@ -130,6 +133,28 @@
|
|
|
"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
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
}
|
|
|
```
|