Пусть маги предстанут в бою одним отрядом по центру.
Code:
// Mages appear as the only stack in slot 3
"mon34": { // Mage
"custom": "1",
"slot3": {
"type": "MIX_MON_TYPE_BASE"
}
},
Маги одним отрядом по центру, но есть 20% вероятность, что это будут Архимаги.
Code:
// Mages appear as the only stack in slot 3
// 20% chance to appear as upgraded stack (Archmages)
"mon34": { // Mage
"custom": "1",
"slot3": {
"type": "MON_ARCH_MAGE",
"probability": "20"
},
"slot3_alt1": {
"type": "MIX_MON_TYPE_BASE"
},
},
Маги в слотах 0 и 6. В слоте 3 80% маги, 20% архимаги.
Code:
// Mages appear at slot 0 and 6.
// Slot 3 is 80% Mages, 20% Archmages
"mon34": { // Mage
"custom": "1",
"slot0": {
"type": "MIX_MON_TYPE_BASE"
},
"slot3": {
"type": "MON_ARCH_MAGE",
"probability": "20"
},
"slot3_alt1": {
"type": "MIX_MON_TYPE_BASE"
},
"slot6": {
"type": "MIX_MON_TYPE_BASE"
},
},
Слоты 1-2 и 4-5 заняты случайными отрядами Башни или союзных Башне фракций.
Слот 3 — это Маги с силой 2X относительно любого другого отряда.
Code:
// Slots 1-2 and 4-5 are random Tower faction or Tower allied faction monsters.
// Slot 3 is Mages with 2X power, relative to any other stack.
"mon34": { // Mage
"custom": "1",
"slot1": {
"type": "MIX_MON_TYPE_ALLY",
},
"slot2": {
"type": "MIX_MON_TYPE_ALLY",
},
"slot3": {
"type": "MIX_MON_TYPE_BASE",
"power": "200",
},
"slot4": {
"type": "MIX_MON_TYPE_ALLY",
},
"slot5": {
"type": "MIX_MON_TYPE_ALLY",
},
},
Маги и обсидиановые гаргулии чередуются, формируя 7 отрядов равной силы.
Code:
// Mages and obsidian gargoyles occupy all slots alternating
"mon34": { // Mage
"custom": "1",
"slot1": {
"type": "MIX_MON_TYPE_BASE",
"spread": "MIX_SPREAD_SPACE_BETWEEN",
},
"slot5": {
"type": "MON_OBSIDIAN_GARGOYLE",
"spread": "MIX_SPREAD_SPACE_BETWEEN",
},
},
Более сложный конфиг из двух альтернативных конфигураций для циклопов. По 50% вероятности каждая.
Конфиг 1.
Слот 3 — Циклопы. Слоты 2 и 4 — Огры-маги с силой 50%.
Конфиг 2.
Слоты 0, 3, 6 — Циклопы. Слоты 1, 2, 4, 5 — случайные союзники.
Code:
// The first alternative config for cyclops
// Slot 3 - Cyclops. Slots 2, 4 - Ogre-mages of 50% power.
"mon94": { // Cyclopes
"custom": "1",
"probability": "50",
"slot2": {
"type": "MON_OGRE_MAGE",
"power": "50",
"copy_to": "4",
},
"slot3": {
"type": "MIX_MON_TYPE_BASE",
},
},
// The second alternative config for cyclops
// Slot 0, 3, 6 - Cyclops. Slots 1, 2, 4, 5 - random allies.
"mon94_alt1": { // Cyclopes
"custom": "1",
"probability": "50",
"slot0": {
"type": "MIX_MON_TYPE_BASE",
"copy_to": "3 6",
},
"slot1": {
"type": "MIX_MON_TYPE_ALLY",
},
"slot2": {
"type": "MIX_MON_TYPE_ALLY",
},
"slot4": {
"type": "MIX_MON_TYPE_ALLY",
},
"slot5": {
"type": "MIX_MON_TYPE_ALLY",
},
},
Скачать Герои 3 Эра и всё, что с ней связано / ERA 2.46f для старых модов
Поддержать проект
|