1254 lines
51 KiB
Lua
1254 lines
51 KiB
Lua
-- Path of Building
|
|
--
|
|
-- Other active skills
|
|
-- Skill gem data (c) Grinding Gear Games
|
|
--
|
|
local gems = ...
|
|
|
|
gems["_default"] = {
|
|
attack = true,
|
|
melee = true,
|
|
bow = true,
|
|
projectile = true,
|
|
base = {
|
|
},
|
|
quality = {
|
|
},
|
|
levels = {
|
|
[1] = { }
|
|
},
|
|
}
|
|
gems["Detonate Mines"] = {
|
|
spell = true,
|
|
base = {
|
|
spell_castTime = 0.2,
|
|
},
|
|
quality = {
|
|
castSpeedInc = 5,
|
|
},
|
|
levels = {
|
|
[1] = { },
|
|
[2] = { },
|
|
[3] = { },
|
|
[4] = { },
|
|
[5] = { },
|
|
[6] = { },
|
|
[7] = { },
|
|
[8] = { },
|
|
[9] = { },
|
|
[10] = { },
|
|
}
|
|
}
|
|
gems["Portal"] = {
|
|
spell = true,
|
|
base = {
|
|
spell_castTime = 2.5,
|
|
},
|
|
quality = {
|
|
castSpeedInc = 3,
|
|
},
|
|
levels = {
|
|
[1] = { },
|
|
[2] = { },
|
|
[3] = { },
|
|
[4] = { },
|
|
[5] = { },
|
|
[6] = { },
|
|
[7] = { },
|
|
[8] = { },
|
|
[9] = { },
|
|
[10] = { },
|
|
}
|
|
}
|
|
gems["Vaal Arc"] = {
|
|
spell = true,
|
|
lightning = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 0.8,
|
|
skill_damageEff = 0.8,
|
|
skill_critChanceBase = 5,
|
|
shockChance = 100,
|
|
},
|
|
quality = {
|
|
shock_durationInc = 1.5,
|
|
},
|
|
levels = {
|
|
[1] = { skill_lightningMin = 2, skill_lightningMax = 35, },
|
|
[2] = { skill_lightningMin = 2, skill_lightningMax = 44, },
|
|
[3] = { skill_lightningMin = 3, skill_lightningMax = 59, },
|
|
[4] = { skill_lightningMin = 4, skill_lightningMax = 77, },
|
|
[5] = { skill_lightningMin = 5, skill_lightningMax = 99, },
|
|
[6] = { skill_lightningMin = 7, skill_lightningMax = 125, },
|
|
[7] = { skill_lightningMin = 8, skill_lightningMax = 158, },
|
|
[8] = { skill_lightningMin = 10, skill_lightningMax = 187, },
|
|
[9] = { skill_lightningMin = 12, skill_lightningMax = 220, },
|
|
[10] = { skill_lightningMin = 14, skill_lightningMax = 259, },
|
|
[11] = { skill_lightningMin = 16, skill_lightningMax = 303, },
|
|
[12] = { skill_lightningMin = 19, skill_lightningMax = 353, },
|
|
[13] = { skill_lightningMin = 22, skill_lightningMax = 411, },
|
|
[14] = { skill_lightningMin = 25, skill_lightningMax = 478, },
|
|
[15] = { skill_lightningMin = 29, skill_lightningMax = 554, },
|
|
[16] = { skill_lightningMin = 34, skill_lightningMax = 641, },
|
|
[17] = { skill_lightningMin = 37, skill_lightningMax = 706, },
|
|
[18] = { skill_lightningMin = 41, skill_lightningMax = 777, },
|
|
[19] = { skill_lightningMin = 45, skill_lightningMax = 854, },
|
|
[20] = { skill_lightningMin = 49, skill_lightningMax = 938, },
|
|
[21] = { skill_lightningMin = 54, skill_lightningMax = 1030, },
|
|
[22] = { skill_lightningMin = 60, skill_lightningMax = 1131, },
|
|
[23] = { skill_lightningMin = 65, skill_lightningMax = 1240, },
|
|
[24] = { skill_lightningMin = 72, skill_lightningMax = 1359, },
|
|
[25] = { skill_lightningMin = 78, skill_lightningMax = 1489, },
|
|
[26] = { skill_lightningMin = 86, skill_lightningMax = 1631, },
|
|
[27] = { skill_lightningMin = 94, skill_lightningMax = 1785, },
|
|
[28] = { skill_lightningMin = 103, skill_lightningMax = 1953, },
|
|
[29] = { skill_lightningMin = 112, skill_lightningMax = 2136, },
|
|
[30] = { skill_lightningMin = 123, skill_lightningMax = 2335, },
|
|
}
|
|
}
|
|
gems["Vaal Burning Arrow"] = {
|
|
attack = true,
|
|
bow = true,
|
|
projectile = true,
|
|
aoe = true,
|
|
fire = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
igniteChance = 20,
|
|
physicalConvertTofire = 50,
|
|
},
|
|
quality = {
|
|
ignite_durationInc = 3,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 1.6, degen_fireInc = 10, },
|
|
[2] = { attack_damageMore = 1.62, degen_fireInc = 11, },
|
|
[3] = { attack_damageMore = 1.64, degen_fireInc = 12, },
|
|
[4] = { attack_damageMore = 1.66, degen_fireInc = 13, },
|
|
[5] = { attack_damageMore = 1.68, degen_fireInc = 14, },
|
|
[6] = { attack_damageMore = 1.7, degen_fireInc = 15, },
|
|
[7] = { attack_damageMore = 1.72, degen_fireInc = 16, },
|
|
[8] = { attack_damageMore = 1.74, degen_fireInc = 17, },
|
|
[9] = { attack_damageMore = 1.76, degen_fireInc = 18, },
|
|
[10] = { attack_damageMore = 1.78, degen_fireInc = 19, },
|
|
[11] = { attack_damageMore = 1.8, degen_fireInc = 20, },
|
|
[12] = { attack_damageMore = 1.82, degen_fireInc = 21, },
|
|
[13] = { attack_damageMore = 1.84, degen_fireInc = 22, },
|
|
[14] = { attack_damageMore = 1.86, degen_fireInc = 23, },
|
|
[15] = { attack_damageMore = 1.88, degen_fireInc = 24, },
|
|
[16] = { attack_damageMore = 1.9, degen_fireInc = 25, },
|
|
[17] = { attack_damageMore = 1.92, degen_fireInc = 26, },
|
|
[18] = { attack_damageMore = 1.94, degen_fireInc = 27, },
|
|
[19] = { attack_damageMore = 1.96, degen_fireInc = 28, },
|
|
[20] = { attack_damageMore = 1.98, degen_fireInc = 29, },
|
|
[21] = { attack_damageMore = 2, degen_fireInc = 30, },
|
|
[22] = { attack_damageMore = 2.02, degen_fireInc = 31, },
|
|
[23] = { attack_damageMore = 2.04, degen_fireInc = 32, },
|
|
[24] = { attack_damageMore = 2.06, degen_fireInc = 33, },
|
|
[25] = { attack_damageMore = 2.08, degen_fireInc = 34, },
|
|
[26] = { attack_damageMore = 2.1, degen_fireInc = 35, },
|
|
[27] = { attack_damageMore = 2.12, degen_fireInc = 36, },
|
|
[28] = { attack_damageMore = 2.14, degen_fireInc = 37, },
|
|
[29] = { attack_damageMore = 2.16, degen_fireInc = 38, },
|
|
[30] = { attack_damageMore = 2.18, degen_fireInc = 39, },
|
|
}
|
|
}
|
|
gems["Vaal Clarity"] = {
|
|
aura = true,
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
vaal = true,
|
|
base = {
|
|
spell_castTime = 0.6,
|
|
manaCostMore = 0,
|
|
},
|
|
quality = {
|
|
auraRadiusInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { auraRadiusInc = 0, skill_durationBase = 8, },
|
|
[2] = { auraRadiusInc = 3, skill_durationBase = 8.1, },
|
|
[3] = { auraRadiusInc = 6, skill_durationBase = 8.2, },
|
|
[4] = { auraRadiusInc = 9, skill_durationBase = 8.3, },
|
|
[5] = { auraRadiusInc = 12, skill_durationBase = 8.4, },
|
|
[6] = { auraRadiusInc = 15, skill_durationBase = 8.5, },
|
|
[7] = { auraRadiusInc = 18, skill_durationBase = 8.6, },
|
|
[8] = { auraRadiusInc = 21, skill_durationBase = 8.7, },
|
|
[9] = { auraRadiusInc = 23, skill_durationBase = 8.8, },
|
|
[10] = { auraRadiusInc = 25, skill_durationBase = 8.9, },
|
|
[11] = { auraRadiusInc = 27, skill_durationBase = 9, },
|
|
[12] = { auraRadiusInc = 29, skill_durationBase = 9.1, },
|
|
[13] = { auraRadiusInc = 31, skill_durationBase = 9.2, },
|
|
[14] = { auraRadiusInc = 33, skill_durationBase = 9.3, },
|
|
[15] = { auraRadiusInc = 35, skill_durationBase = 9.4, },
|
|
[16] = { auraRadiusInc = 36, skill_durationBase = 9.5, },
|
|
[17] = { auraRadiusInc = 37, skill_durationBase = 9.6, },
|
|
[18] = { auraRadiusInc = 38, skill_durationBase = 9.7, },
|
|
[19] = { auraRadiusInc = 39, skill_durationBase = 9.8, },
|
|
[20] = { auraRadiusInc = 40, skill_durationBase = 9.9, },
|
|
[21] = { auraRadiusInc = 41, skill_durationBase = 10, },
|
|
[22] = { auraRadiusInc = 42, skill_durationBase = 10.1, },
|
|
[23] = { auraRadiusInc = 43, skill_durationBase = 10.2, },
|
|
[24] = { auraRadiusInc = 44, skill_durationBase = 10.3, },
|
|
[25] = { auraRadiusInc = 45, skill_durationBase = 10.4, },
|
|
[26] = { auraRadiusInc = 46, skill_durationBase = 10.5, },
|
|
[27] = { auraRadiusInc = 47, skill_durationBase = 10.6, },
|
|
[28] = { auraRadiusInc = 48, skill_durationBase = 10.7, },
|
|
[29] = { auraRadiusInc = 49, skill_durationBase = 10.8, },
|
|
[30] = { auraRadiusInc = 50, skill_durationBase = 10.9, },
|
|
}
|
|
}
|
|
gems["Vaal Cold Snap"] = {
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
cold = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 0.85,
|
|
skill_damageEff = 1.4,
|
|
skill_critChanceBase = 5,
|
|
skill_durationBase = 10,
|
|
},
|
|
quality = {
|
|
aoeRadiusInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { skill_coldMin = 11, skill_coldMax = 17, },
|
|
[2] = { skill_coldMin = 14, skill_coldMax = 21, },
|
|
[3] = { skill_coldMin = 18, skill_coldMax = 28, },
|
|
[4] = { skill_coldMin = 24, skill_coldMax = 35, },
|
|
[5] = { skill_coldMin = 32, skill_coldMax = 48, },
|
|
[6] = { skill_coldMin = 42, skill_coldMax = 63, },
|
|
[7] = { skill_coldMin = 55, skill_coldMax = 82, },
|
|
[8] = { skill_coldMin = 70, skill_coldMax = 105, },
|
|
[9] = { skill_coldMin = 88, skill_coldMax = 132, },
|
|
[10] = { skill_coldMin = 111, skill_coldMax = 166, },
|
|
[11] = { skill_coldMin = 137, skill_coldMax = 206, },
|
|
[12] = { skill_coldMin = 170, skill_coldMax = 255, },
|
|
[13] = { skill_coldMin = 208, skill_coldMax = 313, },
|
|
[14] = { skill_coldMin = 255, skill_coldMax = 382, },
|
|
[15] = { skill_coldMin = 295, skill_coldMax = 443, },
|
|
[16] = { skill_coldMin = 342, skill_coldMax = 512, },
|
|
[17] = { skill_coldMin = 394, skill_coldMax = 591, },
|
|
[18] = { skill_coldMin = 454, skill_coldMax = 682, },
|
|
[19] = { skill_coldMin = 523, skill_coldMax = 784, },
|
|
[20] = { skill_coldMin = 600, skill_coldMax = 901, },
|
|
[21] = { skill_coldMin = 658, skill_coldMax = 987, },
|
|
[22] = { skill_coldMin = 721, skill_coldMax = 1081, },
|
|
[23] = { skill_coldMin = 789, skill_coldMax = 1184, },
|
|
[24] = { skill_coldMin = 863, skill_coldMax = 1295, },
|
|
[25] = { skill_coldMin = 944, skill_coldMax = 1416, },
|
|
[26] = { skill_coldMin = 1032, skill_coldMax = 1548, },
|
|
[27] = { skill_coldMin = 1127, skill_coldMax = 1691, },
|
|
[28] = { skill_coldMin = 1231, skill_coldMax = 1846, },
|
|
[29] = { skill_coldMin = 1343, skill_coldMax = 2015, },
|
|
[30] = { skill_coldMin = 1466, skill_coldMax = 2199, },
|
|
}
|
|
}
|
|
gems["Vaal Cyclone"] = {
|
|
attack = true,
|
|
melee = true,
|
|
aoe = true,
|
|
duration = true,
|
|
vaal = true,
|
|
base = {
|
|
skill_durationBase = 5,
|
|
aoeRadiusInc = 50,
|
|
attackSpeedMore = 2,
|
|
},
|
|
quality = {
|
|
aoeRadiusInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 0.5, },
|
|
[2] = { attack_damageMore = 0.506, },
|
|
[3] = { attack_damageMore = 0.512, },
|
|
[4] = { attack_damageMore = 0.518, },
|
|
[5] = { attack_damageMore = 0.524, },
|
|
[6] = { attack_damageMore = 0.53, },
|
|
[7] = { attack_damageMore = 0.536, },
|
|
[8] = { attack_damageMore = 0.542, },
|
|
[9] = { attack_damageMore = 0.548, },
|
|
[10] = { attack_damageMore = 0.554, },
|
|
[11] = { attack_damageMore = 0.56, },
|
|
[12] = { attack_damageMore = 0.566, },
|
|
[13] = { attack_damageMore = 0.572, },
|
|
[14] = { attack_damageMore = 0.578, },
|
|
[15] = { attack_damageMore = 0.584, },
|
|
[16] = { attack_damageMore = 0.59, },
|
|
[17] = { attack_damageMore = 0.596, },
|
|
[18] = { attack_damageMore = 0.602, },
|
|
[19] = { attack_damageMore = 0.608, },
|
|
[20] = { attack_damageMore = 0.614, },
|
|
[21] = { attack_damageMore = 0.62, },
|
|
[22] = { attack_damageMore = 0.626, },
|
|
[23] = { attack_damageMore = 0.632, },
|
|
[24] = { attack_damageMore = 0.638, },
|
|
[25] = { attack_damageMore = 0.644, },
|
|
[26] = { attack_damageMore = 0.65, },
|
|
[27] = { attack_damageMore = 0.656, },
|
|
[28] = { attack_damageMore = 0.662, },
|
|
[29] = { attack_damageMore = 0.668, },
|
|
[30] = { attack_damageMore = 0.674, },
|
|
}
|
|
}
|
|
gems["Vaal Discipline"] = {
|
|
aura = true,
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
vaal = true,
|
|
base = {
|
|
skill_castTime = 0.6,
|
|
skill_durationBase = 3,
|
|
},
|
|
quality = {
|
|
auraRadiusInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { auraRadiusInc = 0, energyShieldBase = 181, },
|
|
[2] = { auraRadiusInc = 3, energyShieldBase = 210, },
|
|
[3] = { auraRadiusInc = 6, energyShieldBase = 233, },
|
|
[4] = { auraRadiusInc = 9, energyShieldBase = 268, },
|
|
[5] = { auraRadiusInc = 12, energyShieldBase = 301, },
|
|
[6] = { auraRadiusInc = 15, energyShieldBase = 334, },
|
|
[7] = { auraRadiusInc = 18, energyShieldBase = 376, },
|
|
[8] = { auraRadiusInc = 21, energyShieldBase = 418, },
|
|
[9] = { auraRadiusInc = 23, energyShieldBase = 463, },
|
|
[10] = { auraRadiusInc = 25, energyShieldBase = 496, },
|
|
[11] = { auraRadiusInc = 27, energyShieldBase = 519, },
|
|
[12] = { auraRadiusInc = 29, energyShieldBase = 562, },
|
|
[13] = { auraRadiusInc = 31, energyShieldBase = 602, },
|
|
[14] = { auraRadiusInc = 33, energyShieldBase = 638, },
|
|
[15] = { auraRadiusInc = 35, energyShieldBase = 680, },
|
|
[16] = { auraRadiusInc = 36, energyShieldBase = 716, },
|
|
[17] = { auraRadiusInc = 37, energyShieldBase = 759, },
|
|
[18] = { auraRadiusInc = 38, energyShieldBase = 807, },
|
|
[19] = { auraRadiusInc = 39, energyShieldBase = 842, },
|
|
[20] = { auraRadiusInc = 40, energyShieldBase = 908, },
|
|
[21] = { auraRadiusInc = 41, energyShieldBase = 944, },
|
|
[22] = { auraRadiusInc = 42, energyShieldBase = 991, },
|
|
[23] = { auraRadiusInc = 43, energyShieldBase = 1019, },
|
|
[24] = { auraRadiusInc = 44, energyShieldBase = 1070, },
|
|
[25] = { auraRadiusInc = 45, energyShieldBase = 1123, },
|
|
[26] = { auraRadiusInc = 46, energyShieldBase = 1153, },
|
|
[27] = { auraRadiusInc = 47, energyShieldBase = 1217, },
|
|
[28] = { auraRadiusInc = 48, energyShieldBase = 1276, },
|
|
[29] = { auraRadiusInc = 49, energyShieldBase = 1350, },
|
|
[30] = { auraRadiusInc = 50, energyShieldBase = 1364, },
|
|
}
|
|
}
|
|
gems["Vaal Detonate Dead"] = {
|
|
unsupported = true,
|
|
}
|
|
gems["Vaal Double Strike"] = {
|
|
attack = true,
|
|
melee = true,
|
|
duration = true,
|
|
vaal = true,
|
|
base = {
|
|
},
|
|
quality = {
|
|
attackSpeedInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 0.7, skill_durationBase = 3.6, },
|
|
[2] = { attack_damageMore = 0.708, skill_durationBase = 3.7, },
|
|
[3] = { attack_damageMore = 0.716, skill_durationBase = 3.8, },
|
|
[4] = { attack_damageMore = 0.724, skill_durationBase = 3.9, },
|
|
[5] = { attack_damageMore = 0.732, skill_durationBase = 4, },
|
|
[6] = { attack_damageMore = 0.74, skill_durationBase = 4.1, },
|
|
[7] = { attack_damageMore = 0.748, skill_durationBase = 4.2, },
|
|
[8] = { attack_damageMore = 0.756, skill_durationBase = 4.3, },
|
|
[9] = { attack_damageMore = 0.764, skill_durationBase = 4.4, },
|
|
[10] = { attack_damageMore = 0.772, skill_durationBase = 4.5, },
|
|
[11] = { attack_damageMore = 0.78, skill_durationBase = 4.6, },
|
|
[12] = { attack_damageMore = 0.788, skill_durationBase = 4.7, },
|
|
[13] = { attack_damageMore = 0.796, skill_durationBase = 4.8, },
|
|
[14] = { attack_damageMore = 0.804, skill_durationBase = 4.9, },
|
|
[15] = { attack_damageMore = 0.812, skill_durationBase = 5, },
|
|
[16] = { attack_damageMore = 0.82, skill_durationBase = 5.1, },
|
|
[17] = { attack_damageMore = 0.828, skill_durationBase = 5.2, },
|
|
[18] = { attack_damageMore = 0.836, skill_durationBase = 5.3, },
|
|
[19] = { attack_damageMore = 0.844, skill_durationBase = 5.4, },
|
|
[20] = { attack_damageMore = 0.852, skill_durationBase = 5.5, },
|
|
[21] = { attack_damageMore = 0.86, skill_durationBase = 5.6, },
|
|
[22] = { attack_damageMore = 0.868, skill_durationBase = 5.7, },
|
|
[23] = { attack_damageMore = 0.876, skill_durationBase = 5.8, },
|
|
[24] = { attack_damageMore = 0.884, skill_durationBase = 5.9, },
|
|
[25] = { attack_damageMore = 0.892, skill_durationBase = 6, },
|
|
[26] = { attack_damageMore = 0.9, skill_durationBase = 6.1, },
|
|
[27] = { attack_damageMore = 0.908, skill_durationBase = 6.2, },
|
|
[28] = { attack_damageMore = 0.916, skill_durationBase = 6.3, },
|
|
[29] = { attack_damageMore = 0.924, skill_durationBase = 6.4, },
|
|
[30] = { attack_damageMore = 0.932, skill_durationBase = 6.5, },
|
|
}
|
|
}
|
|
gems["Vaal Fireball"] = {
|
|
spell = true,
|
|
projectile = true,
|
|
aoe = true,
|
|
fire = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 0.85,
|
|
skill_damageEff = 1.25,
|
|
skill_critChanceBase = 6,
|
|
aoeRadiusInc = 50,
|
|
},
|
|
quality = {
|
|
igniteChance = 1.5,
|
|
},
|
|
levels = {
|
|
[1] = { skill_fireMin = 8, skill_fireMax = 11, },
|
|
[2] = { skill_fireMin = 9, skill_fireMax = 13, },
|
|
[3] = { skill_fireMin = 11, skill_fireMax = 16, },
|
|
[4] = { skill_fireMin = 14, skill_fireMax = 22, },
|
|
[5] = { skill_fireMin = 20, skill_fireMax = 30, },
|
|
[6] = { skill_fireMin = 30, skill_fireMax = 45, },
|
|
[7] = { skill_fireMin = 39, skill_fireMax = 59, },
|
|
[8] = { skill_fireMin = 51, skill_fireMax = 76, },
|
|
[9] = { skill_fireMin = 65, skill_fireMax = 98, },
|
|
[10] = { skill_fireMin = 82, skill_fireMax = 124, },
|
|
[11] = { skill_fireMin = 103, skill_fireMax = 155, },
|
|
[12] = { skill_fireMin = 128, skill_fireMax = 192, },
|
|
[13] = { skill_fireMin = 158, skill_fireMax = 238, },
|
|
[14] = { skill_fireMin = 195, skill_fireMax = 292, },
|
|
[15] = { skill_fireMin = 238, skill_fireMax = 357, },
|
|
[16] = { skill_fireMin = 289, skill_fireMax = 434, },
|
|
[17] = { skill_fireMin = 351, skill_fireMax = 526, },
|
|
[18] = { skill_fireMin = 424, skill_fireMax = 636, },
|
|
[19] = { skill_fireMin = 488, skill_fireMax = 732, },
|
|
[20] = { skill_fireMin = 560, skill_fireMax = 841, },
|
|
[21] = { skill_fireMin = 614, skill_fireMax = 921, },
|
|
[22] = { skill_fireMin = 673, skill_fireMax = 1009, },
|
|
[23] = { skill_fireMin = 736, skill_fireMax = 1105, },
|
|
[24] = { skill_fireMin = 806, skill_fireMax = 1209, },
|
|
[25] = { skill_fireMin = 881, skill_fireMax = 1322, },
|
|
[26] = { skill_fireMin = 963, skill_fireMax = 1445, },
|
|
[27] = { skill_fireMin = 1052, skill_fireMax = 1578, },
|
|
[28] = { skill_fireMin = 1149, skill_fireMax = 1723, },
|
|
[29] = { skill_fireMin = 1254, skill_fireMax = 1881, },
|
|
[30] = { skill_fireMin = 1368, skill_fireMax = 2052, },
|
|
}
|
|
}
|
|
gems["Vaal Flameblast"] = {
|
|
spell = true,
|
|
aoe = true,
|
|
fire = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 1,
|
|
skill_damageEff = 0.6,
|
|
skill_critChanceBase = 5,
|
|
spell_damageMore = 12,
|
|
},
|
|
quality = {
|
|
damageInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { skill_fireMin = 39, skill_fireMax = 58, },
|
|
[2] = { skill_fireMin = 46, skill_fireMax = 68, },
|
|
[3] = { skill_fireMin = 53, skill_fireMax = 80, },
|
|
[4] = { skill_fireMin = 62, skill_fireMax = 93, },
|
|
[5] = { skill_fireMin = 71, skill_fireMax = 107, },
|
|
[6] = { skill_fireMin = 78, skill_fireMax = 117, },
|
|
[7] = { skill_fireMin = 86, skill_fireMax = 129, },
|
|
[8] = { skill_fireMin = 94, skill_fireMax = 141, },
|
|
[9] = { skill_fireMin = 103, skill_fireMax = 154, },
|
|
[10] = { skill_fireMin = 113, skill_fireMax = 169, },
|
|
[11] = { skill_fireMin = 123, skill_fireMax = 184, },
|
|
[12] = { skill_fireMin = 134, skill_fireMax = 201, },
|
|
[13] = { skill_fireMin = 146, skill_fireMax = 219, },
|
|
[14] = { skill_fireMin = 159, skill_fireMax = 238, },
|
|
[15] = { skill_fireMin = 173, skill_fireMax = 259, },
|
|
[16] = { skill_fireMin = 188, skill_fireMax = 282, },
|
|
[17] = { skill_fireMin = 204, skill_fireMax = 306, },
|
|
[18] = { skill_fireMin = 221, skill_fireMax = 332, },
|
|
[19] = { skill_fireMin = 240, skill_fireMax = 360, },
|
|
[20] = { skill_fireMin = 260, skill_fireMax = 390, },
|
|
[21] = { skill_fireMin = 281, skill_fireMax = 422, },
|
|
[22] = { skill_fireMin = 305, skill_fireMax = 457, },
|
|
[23] = { skill_fireMin = 329, skill_fireMax = 494, },
|
|
[24] = { skill_fireMin = 356, skill_fireMax = 534, },
|
|
[25] = { skill_fireMin = 385, skill_fireMax = 577, },
|
|
[26] = { skill_fireMin = 416, skill_fireMax = 623, },
|
|
[27] = { skill_fireMin = 449, skill_fireMax = 673, },
|
|
[28] = { skill_fireMin = 484, skill_fireMax = 726, },
|
|
[29] = { skill_fireMin = 522, skill_fireMax = 783, },
|
|
[30] = { skill_fireMin = 563, skill_fireMax = 844, },
|
|
}
|
|
}
|
|
gems["Vaal Glacial Hammer"] = {
|
|
attack = true,
|
|
melee = true,
|
|
aoe = true,
|
|
duration = true,
|
|
cold = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
physicalConvertTocold = 50,
|
|
chill_durationInc = 35,
|
|
},
|
|
quality = {
|
|
chill_durationInc = 2,
|
|
freeze_durationInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 1.5, skill_durationBase = 3.4, },
|
|
[2] = { attack_damageMore = 1.518, skill_durationBase = 3.45 },
|
|
[3] = { attack_damageMore = 1.536, skill_durationBase = 3.5, },
|
|
[4] = { attack_damageMore = 1.554, skill_durationBase = 3.55, },
|
|
[5] = { attack_damageMore = 1.572, skill_durationBase = 3.6, },
|
|
[6] = { attack_damageMore = 1.59, skill_durationBase = 3.65, },
|
|
[7] = { attack_damageMore = 1.608, skill_durationBase = 3.7, },
|
|
[8] = { attack_damageMore = 1.626, skill_durationBase = 3.75, },
|
|
[9] = { attack_damageMore = 1.644, skill_durationBase = 3.8, },
|
|
[10] = { attack_damageMore = 1.662, skill_durationBase = 3.85, },
|
|
[11] = { attack_damageMore = 1.68, skill_durationBase = 3.9, },
|
|
[12] = { attack_damageMore = 1.698, skill_durationBase = 3.95, },
|
|
[13] = { attack_damageMore = 1.716, skill_durationBase = 4, },
|
|
[14] = { attack_damageMore = 1.734, skill_durationBase = 4.05, },
|
|
[15] = { attack_damageMore = 1.752, skill_durationBase = 4.1, },
|
|
[16] = { attack_damageMore = 1.77, skill_durationBase = 4.15, },
|
|
[17] = { attack_damageMore = 1.788, skill_durationBase = 4.2, },
|
|
[18] = { attack_damageMore = 1.806, skill_durationBase = 4.25, },
|
|
[19] = { attack_damageMore = 1.824, skill_durationBase = 4.3, },
|
|
[20] = { attack_damageMore = 1.842, skill_durationBase = 4.35, },
|
|
[21] = { attack_damageMore = 1.86, skill_durationBase = 4.4, },
|
|
[22] = { attack_damageMore = 1.878, skill_durationBase = 4.45, },
|
|
[23] = { attack_damageMore = 1.896, skill_durationBase = 4.5, },
|
|
[24] = { attack_damageMore = 1.914, skill_durationBase = 4.55, },
|
|
[25] = { attack_damageMore = 1.932, skill_durationBase = 4.6, },
|
|
[26] = { attack_damageMore = 1.95, skill_durationBase = 4.65, },
|
|
[27] = { attack_damageMore = 1.968, skill_durationBase = 4.7, },
|
|
[28] = { attack_damageMore = 1.986, skill_durationBase = 4.75, },
|
|
[29] = { attack_damageMore = 2.004, skill_durationBase = 4.8, },
|
|
[30] = { attack_damageMore = 2.022, skill_durationBase = 4.85, },
|
|
}
|
|
}
|
|
gems["Vaal Grace"] = {
|
|
aura = true,
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
vaal = true,
|
|
base = {
|
|
skill_castTime = 0.6,
|
|
skill_durationBase = 6,
|
|
},
|
|
quality = {
|
|
auraRadiusInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { auraRadiusInc = 0, dodgeAttack = 24, dodgeSpell = 24, },
|
|
[2] = { auraRadiusInc = 3, dodgeAttack = 25, dodgeSpell = 25, },
|
|
[3] = { auraRadiusInc = 6, dodgeAttack = 25, dodgeSpell = 25, },
|
|
[4] = { auraRadiusInc = 9, dodgeAttack = 26, dodgeSpell = 26, },
|
|
[5] = { auraRadiusInc = 12, dodgeAttack = 26, dodgeSpell = 26, },
|
|
[6] = { auraRadiusInc = 15, dodgeAttack = 27, dodgeSpell = 27, },
|
|
[7] = { auraRadiusInc = 18, dodgeAttack = 27, dodgeSpell = 27, },
|
|
[8] = { auraRadiusInc = 21, dodgeAttack = 28, dodgeSpell = 28, },
|
|
[9] = { auraRadiusInc = 23, dodgeAttack = 28, dodgeSpell = 28, },
|
|
[10] = { auraRadiusInc = 25, dodgeAttack = 29, dodgeSpell = 29, },
|
|
[11] = { auraRadiusInc = 27, dodgeAttack = 29, dodgeSpell = 29, },
|
|
[12] = { auraRadiusInc = 29, dodgeAttack = 30, dodgeSpell = 30, },
|
|
[13] = { auraRadiusInc = 31, dodgeAttack = 30, dodgeSpell = 30, },
|
|
[14] = { auraRadiusInc = 33, dodgeAttack = 31, dodgeSpell = 31, },
|
|
[15] = { auraRadiusInc = 35, dodgeAttack = 31, dodgeSpell = 31, },
|
|
[16] = { auraRadiusInc = 36, dodgeAttack = 32, dodgeSpell = 32, },
|
|
[17] = { auraRadiusInc = 37, dodgeAttack = 32, dodgeSpell = 32, },
|
|
[18] = { auraRadiusInc = 38, dodgeAttack = 33, dodgeSpell = 33, },
|
|
[19] = { auraRadiusInc = 39, dodgeAttack = 33, dodgeSpell = 33, },
|
|
[20] = { auraRadiusInc = 40, dodgeAttack = 34, dodgeSpell = 34, },
|
|
[21] = { auraRadiusInc = 41, dodgeAttack = 34, dodgeSpell = 34, },
|
|
[22] = { auraRadiusInc = 42, dodgeAttack = 35, dodgeSpell = 35, },
|
|
[23] = { auraRadiusInc = 43, dodgeAttack = 35, dodgeSpell = 35, },
|
|
[24] = { auraRadiusInc = 44, dodgeAttack = 36, dodgeSpell = 36, },
|
|
[25] = { auraRadiusInc = 45, dodgeAttack = 36, dodgeSpell = 36, },
|
|
[26] = { auraRadiusInc = 46, dodgeAttack = 37, dodgeSpell = 37, },
|
|
[27] = { auraRadiusInc = 47, dodgeAttack = 37, dodgeSpell = 37, },
|
|
[28] = { auraRadiusInc = 48, dodgeAttack = 38, dodgeSpell = 38, },
|
|
[29] = { auraRadiusInc = 49, dodgeAttack = 38, dodgeSpell = 38, },
|
|
[30] = { auraRadiusInc = 50, dodgeAttack = 39, dodgeSpell = 39, },
|
|
}
|
|
}
|
|
gems["Vaal Ground Slam"] = {
|
|
attack = true,
|
|
melee = true,
|
|
aoe = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
aoeRadiusInc = 20,
|
|
},
|
|
quality = {
|
|
stunEnemyDurationInc = 1.5,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 1.6, },
|
|
[2] = { attack_damageMore = 1.62, },
|
|
[3] = { attack_damageMore = 1.64, },
|
|
[4] = { attack_damageMore = 1.66, },
|
|
[5] = { attack_damageMore = 1.68, },
|
|
[6] = { attack_damageMore = 1.7, },
|
|
[7] = { attack_damageMore = 1.72, },
|
|
[8] = { attack_damageMore = 1.74, },
|
|
[9] = { attack_damageMore = 1.76, },
|
|
[10] = { attack_damageMore = 1.78, },
|
|
[11] = { attack_damageMore = 1.8, },
|
|
[12] = { attack_damageMore = 1.82, },
|
|
[13] = { attack_damageMore = 1.84, },
|
|
[14] = { attack_damageMore = 1.86, },
|
|
[15] = { attack_damageMore = 1.88, },
|
|
[16] = { attack_damageMore = 1.9, },
|
|
[17] = { attack_damageMore = 1.92, },
|
|
[18] = { attack_damageMore = 1.94, },
|
|
[19] = { attack_damageMore = 1.96, },
|
|
[20] = { attack_damageMore = 1.98, },
|
|
[21] = { attack_damageMore = 2, },
|
|
[22] = { attack_damageMore = 2.02, },
|
|
[23] = { attack_damageMore = 2.04, },
|
|
[24] = { attack_damageMore = 2.06, },
|
|
[25] = { attack_damageMore = 2.08, },
|
|
[26] = { attack_damageMore = 2.1, },
|
|
[27] = { attack_damageMore = 2.12, },
|
|
[28] = { attack_damageMore = 2.14, },
|
|
[29] = { attack_damageMore = 2.16, },
|
|
[30] = { attack_damageMore = 2.18, },
|
|
}
|
|
}
|
|
gems["Vaal Haste"] = {
|
|
aura = true,
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
vaal = true,
|
|
base = {
|
|
skill_castTime = 0.6,
|
|
skill_durationBase = 6,
|
|
},
|
|
quality = {
|
|
auraRadiusInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { auraRadiusInc = 0, attackSpeedInc = 30, castSpeedInc = 29, movementSpeedInc = 14, },
|
|
[2] = { auraRadiusInc = 3, attackSpeedInc = 30, castSpeedInc = 30, movementSpeedInc = 14, },
|
|
[3] = { auraRadiusInc = 6, attackSpeedInc = 30, castSpeedInc = 30, movementSpeedInc = 15, },
|
|
[4] = { auraRadiusInc = 9, attackSpeedInc = 31, castSpeedInc = 30, movementSpeedInc = 15, },
|
|
[5] = { auraRadiusInc = 12, attackSpeedInc = 31, castSpeedInc = 31, movementSpeedInc = 15, },
|
|
[6] = { auraRadiusInc = 15, attackSpeedInc = 31, castSpeedInc = 31, movementSpeedInc = 16, },
|
|
[7] = { auraRadiusInc = 18, attackSpeedInc = 32, castSpeedInc = 31, movementSpeedInc = 16, },
|
|
[8] = { auraRadiusInc = 21, attackSpeedInc = 32, castSpeedInc = 32, movementSpeedInc = 16, },
|
|
[9] = { auraRadiusInc = 23, attackSpeedInc = 32, castSpeedInc = 32, movementSpeedInc = 17, },
|
|
[10] = { auraRadiusInc = 25, attackSpeedInc = 33, castSpeedInc = 32, movementSpeedInc = 17, },
|
|
[11] = { auraRadiusInc = 27, attackSpeedInc = 33, castSpeedInc = 33, movementSpeedInc = 17, },
|
|
[12] = { auraRadiusInc = 29, attackSpeedInc = 33, castSpeedInc = 33, movementSpeedInc = 18, },
|
|
[13] = { auraRadiusInc = 31, attackSpeedInc = 34, castSpeedInc = 33, movementSpeedInc = 18, },
|
|
[14] = { auraRadiusInc = 33, attackSpeedInc = 34, castSpeedInc = 34, movementSpeedInc = 18, },
|
|
[15] = { auraRadiusInc = 35, attackSpeedInc = 34, castSpeedInc = 34, movementSpeedInc = 19, },
|
|
[16] = { auraRadiusInc = 36, attackSpeedInc = 35, castSpeedInc = 34, movementSpeedInc = 19, },
|
|
[17] = { auraRadiusInc = 37, attackSpeedInc = 35, castSpeedInc = 35, movementSpeedInc = 19, },
|
|
[18] = { auraRadiusInc = 38, attackSpeedInc = 35, castSpeedInc = 35, movementSpeedInc = 20, },
|
|
[19] = { auraRadiusInc = 39, attackSpeedInc = 36, castSpeedInc = 35, movementSpeedInc = 20, },
|
|
[20] = { auraRadiusInc = 40, attackSpeedInc = 36, castSpeedInc = 36, movementSpeedInc = 20, },
|
|
[21] = { auraRadiusInc = 41, attackSpeedInc = 36, castSpeedInc = 36, movementSpeedInc = 21, },
|
|
[22] = { auraRadiusInc = 42, attackSpeedInc = 37, castSpeedInc = 36, movementSpeedInc = 21, },
|
|
[23] = { auraRadiusInc = 43, attackSpeedInc = 37, castSpeedInc = 37, movementSpeedInc = 21, },
|
|
[24] = { auraRadiusInc = 44, attackSpeedInc = 37, castSpeedInc = 37, movementSpeedInc = 22, },
|
|
[25] = { auraRadiusInc = 45, attackSpeedInc = 38, castSpeedInc = 37, movementSpeedInc = 22, },
|
|
[26] = { auraRadiusInc = 46, attackSpeedInc = 38, castSpeedInc = 38, movementSpeedInc = 22, },
|
|
[27] = { auraRadiusInc = 47, attackSpeedInc = 38, castSpeedInc = 38, movementSpeedInc = 23, },
|
|
[28] = { auraRadiusInc = 48, attackSpeedInc = 39, castSpeedInc = 38, movementSpeedInc = 23, },
|
|
[29] = { auraRadiusInc = 49, attackSpeedInc = 39, castSpeedInc = 39, movementSpeedInc = 23, },
|
|
[30] = { auraRadiusInc = 50, attackSpeedInc = 39, castSpeedInc = 39, movementSpeedInc = 24, },
|
|
}
|
|
}
|
|
gems["Vaal Ice Nova"] = {
|
|
spell = true,
|
|
aoe = true,
|
|
cold = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 0.9,
|
|
skill_damageEff = 0.7,
|
|
skill_critChanceBase = 6,
|
|
},
|
|
quality = {
|
|
aoeRadiusInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { skill_coldMin = 11, skill_coldMax = 17, },
|
|
[2] = { skill_coldMin = 14, skill_coldMax = 22, },
|
|
[3] = { skill_coldMin = 18, skill_coldMax = 29, },
|
|
[4] = { skill_coldMin = 24, skill_coldMax = 37, },
|
|
[5] = { skill_coldMin = 31, skill_coldMax = 48, },
|
|
[6] = { skill_coldMin = 39, skill_coldMax = 61, },
|
|
[7] = { skill_coldMin = 49, skill_coldMax = 76, },
|
|
[8] = { skill_coldMin = 57, skill_coldMax = 89, },
|
|
[9] = { skill_coldMin = 67, skill_coldMax = 105, },
|
|
[10] = { skill_coldMin = 78, skill_coldMax = 123, },
|
|
[11] = { skill_coldMin = 91, skill_coldMax = 143, },
|
|
[12] = { skill_coldMin = 106, skill_coldMax = 166, },
|
|
[13] = { skill_coldMin = 123, skill_coldMax = 193, },
|
|
[14] = { skill_coldMin = 143, skill_coldMax = 223, },
|
|
[15] = { skill_coldMin = 164, skill_coldMax = 257, },
|
|
[16] = { skill_coldMin = 189, skill_coldMax = 296, },
|
|
[17] = { skill_coldMin = 208, skill_coldMax = 325, },
|
|
[18] = { skill_coldMin = 228, skill_coldMax = 357, },
|
|
[19] = { skill_coldMin = 250, skill_coldMax = 391, },
|
|
[20] = { skill_coldMin = 274, skill_coldMax = 428, },
|
|
[21] = { skill_coldMin = 300, skill_coldMax = 469, },
|
|
[22] = { skill_coldMin = 328, skill_coldMax = 513, },
|
|
[23] = { skill_coldMin = 359, skill_coldMax = 561, },
|
|
[24] = { skill_coldMin = 393, skill_coldMax = 613, },
|
|
[25] = { skill_coldMin = 429, skill_coldMax = 670, },
|
|
[26] = { skill_coldMin = 468, skill_coldMax = 732, },
|
|
[27] = { skill_coldMin = 511, skill_coldMax = 799, },
|
|
[28] = { skill_coldMin = 558, skill_coldMax = 871, },
|
|
[29] = { skill_coldMin = 608, skill_coldMax = 950, },
|
|
[30] = { skill_coldMin = 663, skill_coldMax = 1035, },
|
|
}
|
|
}
|
|
gems["Vaal Immortal Call"] = {
|
|
unsupported = true
|
|
}
|
|
gems["Vaal Lightning Strike"] = {
|
|
attack = true,
|
|
melee = true,
|
|
duration = true,
|
|
lightning = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
parts = {
|
|
{
|
|
name = "Strike",
|
|
},
|
|
{
|
|
name = "Beams",
|
|
damageMore = 0.5,
|
|
},
|
|
},
|
|
base = {
|
|
physicalConvertTolightning = 50,
|
|
},
|
|
quality = {
|
|
durationInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 1, skill_durationBase = 5, },
|
|
[2] = { attack_damageMore = 1.012, skill_durationBase = 5.2, },
|
|
[3] = { attack_damageMore = 1.024, skill_durationBase = 5.4, },
|
|
[4] = { attack_damageMore = 1.036, skill_durationBase = 5.6, },
|
|
[5] = { attack_damageMore = 1.048, skill_durationBase = 5.8, },
|
|
[6] = { attack_damageMore = 1.06, skill_durationBase = 6, },
|
|
[7] = { attack_damageMore = 1.072, skill_durationBase = 6.2, },
|
|
[8] = { attack_damageMore = 1.084, skill_durationBase = 6.4, },
|
|
[9] = { attack_damageMore = 1.096, skill_durationBase = 6.6, },
|
|
[10] = { attack_damageMore = 1.108, skill_durationBase = 6.8, },
|
|
[11] = { attack_damageMore = 1.12, skill_durationBase = 7, },
|
|
[12] = { attack_damageMore = 1.132, skill_durationBase = 7.2, },
|
|
[13] = { attack_damageMore = 1.144, skill_durationBase = 7.4, },
|
|
[14] = { attack_damageMore = 1.156, skill_durationBase = 7.6, },
|
|
[15] = { attack_damageMore = 1.168, skill_durationBase = 7.8, },
|
|
[16] = { attack_damageMore = 1.18, skill_durationBase = 8, },
|
|
[17] = { attack_damageMore = 1.192, skill_durationBase = 8.2, },
|
|
[18] = { attack_damageMore = 1.204, skill_durationBase = 8.4, },
|
|
[19] = { attack_damageMore = 1.216, skill_durationBase = 8.6, },
|
|
[20] = { attack_damageMore = 1.228, skill_durationBase = 8.8, },
|
|
[21] = { attack_damageMore = 1.24, skill_durationBase = 9, },
|
|
[22] = { attack_damageMore = 1.252, skill_durationBase = 9.2, },
|
|
[23] = { attack_damageMore = 1.264, skill_durationBase = 9.4, },
|
|
[24] = { attack_damageMore = 1.276, skill_durationBase = 9.6, },
|
|
[25] = { attack_damageMore = 1.288, skill_durationBase = 9.8, },
|
|
[26] = { attack_damageMore = 1.3, skill_durationBase = 10, },
|
|
[27] = { attack_damageMore = 1.312, skill_durationBase = 10.2, },
|
|
[28] = { attack_damageMore = 1.324, skill_durationBase = 10.4, },
|
|
[29] = { attack_damageMore = 1.336, skill_durationBase = 10.6, },
|
|
[30] = { attack_damageMore = 1.348, skill_durationBase = 10.8, },
|
|
}
|
|
}
|
|
gems["Vaal Lightning Trap"] = {
|
|
spell = true,
|
|
trap = true,
|
|
projectile = true,
|
|
duration = true,
|
|
lightning = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 1,
|
|
skill_damageEff = 0.9,
|
|
skill_critChanceBase = 5,
|
|
skill_durationBase = 4,
|
|
pierceChance = 100,
|
|
},
|
|
quality = {
|
|
trapThrowingSpeedInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { skill_lightningMin = 3, skill_lightningMax = 62, },
|
|
[2] = { skill_lightningMin = 4, skill_lightningMax = 77, },
|
|
[3] = { skill_lightningMin = 5, skill_lightningMax = 98, },
|
|
[4] = { skill_lightningMin = 7, skill_lightningMax = 124, },
|
|
[5] = { skill_lightningMin = 8, skill_lightningMax = 153, },
|
|
[6] = { skill_lightningMin = 10, skill_lightningMax = 188, },
|
|
[7] = { skill_lightningMin = 12, skill_lightningMax = 228, },
|
|
[8] = { skill_lightningMin = 14, skill_lightningMax = 263, },
|
|
[9] = { skill_lightningMin = 16, skill_lightningMax = 301, },
|
|
[10] = { skill_lightningMin = 18, skill_lightningMax = 344, },
|
|
[11] = { skill_lightningMin = 21, skill_lightningMax = 391, },
|
|
[12] = { skill_lightningMin = 23, skill_lightningMax = 444, },
|
|
[13] = { skill_lightningMin = 26, skill_lightningMax = 503, },
|
|
[14] = { skill_lightningMin = 30, skill_lightningMax = 568, },
|
|
[15] = { skill_lightningMin = 34, skill_lightningMax = 640, },
|
|
[16] = { skill_lightningMin = 38, skill_lightningMax = 720, },
|
|
[17] = { skill_lightningMin = 41, skill_lightningMax = 779, },
|
|
[18] = { skill_lightningMin = 44, skill_lightningMax = 841, },
|
|
[19] = { skill_lightningMin = 48, skill_lightningMax = 907, },
|
|
[20] = { skill_lightningMin = 52, skill_lightningMax = 979, },
|
|
[21] = { skill_lightningMin = 56, skill_lightningMax = 1055, },
|
|
[22] = { skill_lightningMin = 60, skill_lightningMax = 1136, },
|
|
[23] = { skill_lightningMin = 64, skill_lightningMax = 1223, },
|
|
[24] = { skill_lightningMin = 69, skill_lightningMax = 1316, },
|
|
[25] = { skill_lightningMin = 74, skill_lightningMax = 1415, },
|
|
[26] = { skill_lightningMin = 80, skill_lightningMax = 1521, },
|
|
[27] = { skill_lightningMin = 86, skill_lightningMax = 1634, },
|
|
[28] = { skill_lightningMin = 92, skill_lightningMax = 1755, },
|
|
[29] = { skill_lightningMin = 99, skill_lightningMax = 1884, },
|
|
[30] = { skill_lightningMin = 106, skill_lightningMax = 2021, },
|
|
}
|
|
}
|
|
gems["Vaal Lightning Warp"] = {
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
lightning = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 1,
|
|
skill_damageEff = 0.5,
|
|
skill_critChanceBase = 5,
|
|
},
|
|
quality = {
|
|
castSpeedInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { skill_lightningMin = 1, skill_lightningMax = 18, durationInc = -0, },
|
|
[2] = { skill_lightningMin = 1, skill_lightningMax = 24, durationInc = -2, },
|
|
[3] = { skill_lightningMin = 2, skill_lightningMax = 32, durationInc = -4, },
|
|
[4] = { skill_lightningMin = 2, skill_lightningMax = 42, durationInc = -6, },
|
|
[5] = { skill_lightningMin = 3, skill_lightningMax = 54, durationInc = -8, },
|
|
[6] = { skill_lightningMin = 4, skill_lightningMax = 70, durationInc = -10, },
|
|
[7] = { skill_lightningMin = 5, skill_lightningMax = 88, durationInc = -12, },
|
|
[8] = { skill_lightningMin = 5, skill_lightningMax = 104, durationInc = -14, },
|
|
[9] = { skill_lightningMin = 6, skill_lightningMax = 123, durationInc = -16, },
|
|
[10] = { skill_lightningMin = 8, skill_lightningMax = 145, durationInc = -18, },
|
|
[11] = { skill_lightningMin = 9, skill_lightningMax = 170, durationInc = -20, },
|
|
[12] = { skill_lightningMin = 10, skill_lightningMax = 199, durationInc = -22, },
|
|
[13] = { skill_lightningMin = 12, skill_lightningMax = 232, durationInc = -24, },
|
|
[14] = { skill_lightningMin = 14, skill_lightningMax = 270, durationInc = -26, },
|
|
[15] = { skill_lightningMin = 17, skill_lightningMax = 314, durationInc = -28, },
|
|
[16] = { skill_lightningMin = 19, skill_lightningMax = 364, durationInc = -30, },
|
|
[17] = { skill_lightningMin = 22, skill_lightningMax = 420, durationInc = -32, },
|
|
[18] = { skill_lightningMin = 26, skill_lightningMax = 485, durationInc = -34, },
|
|
[19] = { skill_lightningMin = 28, skill_lightningMax = 534, durationInc = -36, },
|
|
[20] = { skill_lightningMin = 31, skill_lightningMax = 586, durationInc = -38, },
|
|
[21] = { skill_lightningMin = 34, skill_lightningMax = 644, durationInc = -40, },
|
|
[22] = { skill_lightningMin = 37, skill_lightningMax = 707, durationInc = -42, },
|
|
[23] = { skill_lightningMin = 41, skill_lightningMax = 775, durationInc = -44, },
|
|
[24] = { skill_lightningMin = 45, skill_lightningMax = 850, durationInc = -46, },
|
|
[25] = { skill_lightningMin = 49, skill_lightningMax = 931, durationInc = -48, },
|
|
[26] = { skill_lightningMin = 54, skill_lightningMax = 1019, durationInc = -50, },
|
|
[27] = { skill_lightningMin = 59, skill_lightningMax = 1116, durationInc = -52, },
|
|
[28] = { skill_lightningMin = 64, skill_lightningMax = 1221, durationInc = -54, },
|
|
[29] = { skill_lightningMin = 70, skill_lightningMax = 1335, durationInc = -56, },
|
|
[30] = { skill_lightningMin = 77, skill_lightningMax = 1459, durationInc = -58, },
|
|
}
|
|
}
|
|
gems["Vaal Molten Shell"] = {
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
fire = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 0.5,
|
|
skill_damageEff = 2,
|
|
skill_critChanceBase = 5,
|
|
skill_durationBase = 10,
|
|
},
|
|
quality = {
|
|
igniteChance = 1,
|
|
},
|
|
levels = {
|
|
[1] = { skill_fireMin = 9, skill_fireMax = 14, buff_armourBase = 17, },
|
|
[2] = { skill_fireMin = 12, skill_fireMax = 18, buff_armourBase = 20, },
|
|
[3] = { skill_fireMin = 16, skill_fireMax = 25, buff_armourBase = 26, },
|
|
[4] = { skill_fireMin = 22, skill_fireMax = 33, buff_armourBase = 33, },
|
|
[5] = { skill_fireMin = 32, skill_fireMax = 48, buff_armourBase = 44, },
|
|
[6] = { skill_fireMin = 45, skill_fireMax = 67, buff_armourBase = 58, },
|
|
[7] = { skill_fireMin = 62, skill_fireMax = 92, buff_armourBase = 75, },
|
|
[8] = { skill_fireMin = 84, skill_fireMax = 126, buff_armourBase = 97, },
|
|
[9] = { skill_fireMin = 113, skill_fireMax = 169, buff_armourBase = 123, },
|
|
[10] = { skill_fireMin = 150, skill_fireMax = 225, buff_armourBase = 156, },
|
|
[11] = { skill_fireMin = 198, skill_fireMax = 297, buff_armourBase = 196, },
|
|
[12] = { skill_fireMin = 260, skill_fireMax = 391, buff_armourBase = 245, },
|
|
[13] = { skill_fireMin = 340, skill_fireMax = 510, buff_armourBase = 304, },
|
|
[14] = { skill_fireMin = 442, skill_fireMax = 663, buff_armourBase = 376, },
|
|
[15] = { skill_fireMin = 536, skill_fireMax = 805, buff_armourBase = 440, },
|
|
[16] = { skill_fireMin = 650, skill_fireMax = 975, buff_armourBase = 515, },
|
|
[17] = { skill_fireMin = 785, skill_fireMax = 1178, buff_armourBase = 600, },
|
|
[18] = { skill_fireMin = 948, skill_fireMax = 1422, buff_armourBase = 698, },
|
|
[19] = { skill_fireMin = 1142, skill_fireMax = 1713, buff_armourBase = 812, },
|
|
[20] = { skill_fireMin = 1373, skill_fireMax = 2060, buff_armourBase = 943, },
|
|
[21] = { skill_fireMin = 1552, skill_fireMax = 2328, buff_armourBase = 1040, },
|
|
[22] = { skill_fireMin = 1753, skill_fireMax = 2629, buff_armourBase = 1148, },
|
|
[23] = { skill_fireMin = 1979, skill_fireMax = 2968, buff_armourBase = 1265, },
|
|
[24] = { skill_fireMin = 2232, skill_fireMax = 3349, buff_armourBase = 1394, },
|
|
[25] = { skill_fireMin = 2517, skill_fireMax = 3776, buff_armourBase = 1536, },
|
|
[26] = { skill_fireMin = 2837, skill_fireMax = 4256, buff_armourBase = 1691, },
|
|
[27] = { skill_fireMin = 3196, skill_fireMax = 4794, buff_armourBase = 1861, },
|
|
[28] = { skill_fireMin = 3599, skill_fireMax = 5398, buff_armourBase = 2047, },
|
|
[29] = { skill_fireMin = 4051, skill_fireMax = 6076, buff_armourBase = 2251, },
|
|
[30] = { skill_fireMin = 4557, skill_fireMax = 6836, buff_armourBase = 2474, },
|
|
}
|
|
}
|
|
gems["Vaal Power Siphon"] = {
|
|
attack = true,
|
|
projectile = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
},
|
|
quality = {
|
|
damageInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 1.25, },
|
|
[2] = { attack_damageMore = 1.266, },
|
|
[3] = { attack_damageMore = 1.282, },
|
|
[4] = { attack_damageMore = 1.298, },
|
|
[5] = { attack_damageMore = 1.314, },
|
|
[6] = { attack_damageMore = 1.33, },
|
|
[7] = { attack_damageMore = 1.346, },
|
|
[8] = { attack_damageMore = 1.362, },
|
|
[9] = { attack_damageMore = 1.378, },
|
|
[10] = { attack_damageMore = 1.394, },
|
|
[11] = { attack_damageMore = 1.41, },
|
|
[12] = { attack_damageMore = 1.426, },
|
|
[13] = { attack_damageMore = 1.442, },
|
|
[14] = { attack_damageMore = 1.458, },
|
|
[15] = { attack_damageMore = 1.474, },
|
|
[16] = { attack_damageMore = 1.49, },
|
|
[17] = { attack_damageMore = 1.506, },
|
|
[18] = { attack_damageMore = 1.522, },
|
|
[19] = { attack_damageMore = 1.538, },
|
|
[20] = { attack_damageMore = 1.554, },
|
|
[21] = { attack_damageMore = 1.57, },
|
|
[22] = { attack_damageMore = 1.586, },
|
|
[23] = { attack_damageMore = 1.602, },
|
|
[24] = { attack_damageMore = 1.618, },
|
|
[25] = { attack_damageMore = 1.634, },
|
|
[26] = { attack_damageMore = 1.65, },
|
|
[27] = { attack_damageMore = 1.666, },
|
|
[28] = { attack_damageMore = 1.682, },
|
|
[29] = { attack_damageMore = 1.698, },
|
|
[30] = { attack_damageMore = 1.714, },
|
|
}
|
|
}
|
|
gems["Vaal Rain of Arrows"] = {
|
|
attack = true,
|
|
bow = true,
|
|
projectile = true,
|
|
aoe = true,
|
|
duration = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
},
|
|
quality = {
|
|
aoeRadiusInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 1.4, skill_durationBase = 3.4, aoeRadiusInc = 0, },
|
|
[2] = { attack_damageMore = 1.415, skill_durationBase = 3.45, aoeRadiusInc = 1, },
|
|
[3] = { attack_damageMore = 1.43, skill_durationBase = 3.5, aoeRadiusInc = 2, },
|
|
[4] = { attack_damageMore = 1.445, skill_durationBase = 3.55, aoeRadiusInc = 3, },
|
|
[5] = { attack_damageMore = 1.46, skill_durationBase = 3.6, aoeRadiusInc = 4, },
|
|
[6] = { attack_damageMore = 1.475, skill_durationBase = 3.65, aoeRadiusInc = 5, },
|
|
[7] = { attack_damageMore = 1.49, skill_durationBase = 3.7, aoeRadiusInc = 6, },
|
|
[8] = { attack_damageMore = 1.505, skill_durationBase = 3.75, aoeRadiusInc = 7, },
|
|
[9] = { attack_damageMore = 1.52, skill_durationBase = 3.8, aoeRadiusInc = 8, },
|
|
[10] = { attack_damageMore = 1.535, skill_durationBase = 3.85, aoeRadiusInc = 9, },
|
|
[11] = { attack_damageMore = 1.55, skill_durationBase = 3.9, aoeRadiusInc = 10, },
|
|
[12] = { attack_damageMore = 1.565, skill_durationBase = 3.95, aoeRadiusInc = 11, },
|
|
[13] = { attack_damageMore = 1.58, skill_durationBase = 4, aoeRadiusInc = 12, },
|
|
[14] = { attack_damageMore = 1.595, skill_durationBase = 4.05, aoeRadiusInc = 13, },
|
|
[15] = { attack_damageMore = 1.61, skill_durationBase = 4.1, aoeRadiusInc = 14, },
|
|
[16] = { attack_damageMore = 1.625, skill_durationBase = 4.15, aoeRadiusInc = 15, },
|
|
[17] = { attack_damageMore = 1.64, skill_durationBase = 4.2, aoeRadiusInc = 16, },
|
|
[18] = { attack_damageMore = 1.655, skill_durationBase = 4.25, aoeRadiusInc = 17, },
|
|
[19] = { attack_damageMore = 1.67, skill_durationBase = 4.3, aoeRadiusInc = 18, },
|
|
[20] = { attack_damageMore = 1.685, skill_durationBase = 4.35, aoeRadiusInc = 19, },
|
|
[21] = { attack_damageMore = 1.7, skill_durationBase = 4.4, aoeRadiusInc = 20, },
|
|
[22] = { attack_damageMore = 1.715, skill_durationBase = 4.45, aoeRadiusInc = 21, },
|
|
[23] = { attack_damageMore = 1.73, skill_durationBase = 4.5, aoeRadiusInc = 22, },
|
|
[24] = { attack_damageMore = 1.745, skill_durationBase = 4.55, aoeRadiusInc = 23, },
|
|
[25] = { attack_damageMore = 1.76, skill_durationBase = 4.6, aoeRadiusInc = 24, },
|
|
[26] = { attack_damageMore = 1.775, skill_durationBase = 4.65, aoeRadiusInc = 25, },
|
|
[27] = { attack_damageMore = 1.79, skill_durationBase = 4.7, aoeRadiusInc = 26, },
|
|
[28] = { attack_damageMore = 1.805, skill_durationBase = 4.75, aoeRadiusInc = 27, },
|
|
[29] = { attack_damageMore = 1.82, skill_durationBase = 4.8, aoeRadiusInc = 28, },
|
|
[30] = { attack_damageMore = 1.835, skill_durationBase = 4.85, aoeRadiusInc = 29, },
|
|
}
|
|
}
|
|
gems["Vaal Reave"] = {
|
|
attack = true,
|
|
melee = true,
|
|
aoe = true,
|
|
vaal = true,
|
|
base = {
|
|
attackSpeedMore = 2.5,
|
|
},
|
|
quality = {
|
|
attackSpeedInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 1, },
|
|
[2] = { attack_damageMore = 1.012, },
|
|
[3] = { attack_damageMore = 1.024, },
|
|
[4] = { attack_damageMore = 1.036, },
|
|
[5] = { attack_damageMore = 1.048, },
|
|
[6] = { attack_damageMore = 1.06, },
|
|
[7] = { attack_damageMore = 1.072, },
|
|
[8] = { attack_damageMore = 1.084, },
|
|
[9] = { attack_damageMore = 1.096, },
|
|
[10] = { attack_damageMore = 1.108, },
|
|
[11] = { attack_damageMore = 1.12, },
|
|
[12] = { attack_damageMore = 1.132, },
|
|
[13] = { attack_damageMore = 1.144, },
|
|
[14] = { attack_damageMore = 1.156, },
|
|
[15] = { attack_damageMore = 1.168, },
|
|
[16] = { attack_damageMore = 1.18, },
|
|
[17] = { attack_damageMore = 1.192, },
|
|
[18] = { attack_damageMore = 1.204, },
|
|
[19] = { attack_damageMore = 1.216, },
|
|
[20] = { attack_damageMore = 1.228, },
|
|
[21] = { attack_damageMore = 1.24, },
|
|
[22] = { attack_damageMore = 1.252, },
|
|
[23] = { attack_damageMore = 1.264, },
|
|
[24] = { attack_damageMore = 1.276, },
|
|
[25] = { attack_damageMore = 1.288, },
|
|
[26] = { attack_damageMore = 1.3, },
|
|
[27] = { attack_damageMore = 1.312, },
|
|
[28] = { attack_damageMore = 1.324, },
|
|
[29] = { attack_damageMore = 1.336, },
|
|
[30] = { attack_damageMore = 1.348, },
|
|
}
|
|
}
|
|
gems["Vaal Righteous Fire"] = {
|
|
spell = true,
|
|
aoe = true,
|
|
fire = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
setupFunc = function(mergeMod, output)
|
|
mergeMod("skill_fireMin", output.total_energyShield + output.total_life - 1)
|
|
mergeMod("skill_fireMax", output.total_energyShield + output.total_life - 1)
|
|
end,
|
|
base = {
|
|
skill_castTime = 1,
|
|
skill_critChanceBase = 5,
|
|
},
|
|
quality = {
|
|
spell_damageInc = 1,
|
|
},
|
|
levels = {
|
|
[1] = { spell_damageMore = 0.2, },
|
|
[2] = { spell_damageMore = 0.21, },
|
|
[3] = { spell_damageMore = 0.22, },
|
|
[4] = { spell_damageMore = 0.23, },
|
|
[5] = { spell_damageMore = 0.24, },
|
|
[6] = { spell_damageMore = 0.25, },
|
|
[7] = { spell_damageMore = 0.26, },
|
|
[8] = { spell_damageMore = 0.27, },
|
|
[9] = { spell_damageMore = 0.28, },
|
|
[10] = { spell_damageMore = 0.29, },
|
|
[11] = { spell_damageMore = 0.3, },
|
|
[12] = { spell_damageMore = 0.31, },
|
|
[13] = { spell_damageMore = 0.32, },
|
|
[14] = { spell_damageMore = 0.33, },
|
|
[15] = { spell_damageMore = 0.34, },
|
|
[16] = { spell_damageMore = 0.35, },
|
|
[17] = { spell_damageMore = 0.36, },
|
|
[18] = { spell_damageMore = 0.37, },
|
|
[19] = { spell_damageMore = 0.38, },
|
|
[20] = { spell_damageMore = 0.39, },
|
|
[21] = { spell_damageMore = 0.4, },
|
|
[22] = { spell_damageMore = 0.41, },
|
|
[23] = { spell_damageMore = 0.42, },
|
|
[24] = { spell_damageMore = 0.43, },
|
|
[25] = { spell_damageMore = 0.44, },
|
|
[26] = { spell_damageMore = 0.45, },
|
|
[27] = { spell_damageMore = 0.46, },
|
|
[28] = { spell_damageMore = 0.47, },
|
|
[29] = { spell_damageMore = 0.48, },
|
|
[30] = { spell_damageMore = 0.49, },
|
|
}
|
|
}
|
|
gems["Vaal Spark"] = {
|
|
spell = true,
|
|
projectile = true,
|
|
duration = true,
|
|
lightning = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 0.65,
|
|
skill_damageEff = 0.4,
|
|
skill_critChanceBase = 5,
|
|
skill_durationBase = 2,
|
|
},
|
|
quality = {
|
|
projectileSpeedInc = 2,
|
|
},
|
|
levels = {
|
|
[1] = { skill_lightningMin = 1, skill_lightningMax = 11, },
|
|
[2] = { skill_lightningMin = 1, skill_lightningMax = 12, },
|
|
[3] = { skill_lightningMin = 1, skill_lightningMax = 15, },
|
|
[4] = { skill_lightningMin = 1, skill_lightningMax = 19, },
|
|
[5] = { skill_lightningMin = 1, skill_lightningMax = 27, },
|
|
[6] = { skill_lightningMin = 2, skill_lightningMax = 37, },
|
|
[7] = { skill_lightningMin = 3, skill_lightningMax = 48, },
|
|
[8] = { skill_lightningMin = 3, skill_lightningMax = 60, },
|
|
[9] = { skill_lightningMin = 4, skill_lightningMax = 74, },
|
|
[10] = { skill_lightningMin = 5, skill_lightningMax = 91, },
|
|
[11] = { skill_lightningMin = 6, skill_lightningMax = 110, },
|
|
[12] = { skill_lightningMin = 7, skill_lightningMax = 133, },
|
|
[13] = { skill_lightningMin = 8, skill_lightningMax = 159, },
|
|
[14] = { skill_lightningMin = 10, skill_lightningMax = 188, },
|
|
[15] = { skill_lightningMin = 12, skill_lightningMax = 223, },
|
|
[16] = { skill_lightningMin = 14, skill_lightningMax = 263, },
|
|
[17] = { skill_lightningMin = 16, skill_lightningMax = 308, },
|
|
[18] = { skill_lightningMin = 19, skill_lightningMax = 361, },
|
|
[19] = { skill_lightningMin = 21, skill_lightningMax = 405, },
|
|
[20] = { skill_lightningMin = 24, skill_lightningMax = 454, },
|
|
[21] = { skill_lightningMin = 26, skill_lightningMax = 489, },
|
|
[22] = { skill_lightningMin = 28, skill_lightningMax = 527, },
|
|
[23] = { skill_lightningMin = 30, skill_lightningMax = 568, },
|
|
[24] = { skill_lightningMin = 32, skill_lightningMax = 611, },
|
|
[25] = { skill_lightningMin = 35, skill_lightningMax = 658, },
|
|
[26] = { skill_lightningMin = 37, skill_lightningMax = 707, },
|
|
[27] = { skill_lightningMin = 40, skill_lightningMax = 760, },
|
|
[28] = { skill_lightningMin = 43, skill_lightningMax = 816, },
|
|
[29] = { skill_lightningMin = 46, skill_lightningMax = 877, },
|
|
[30] = { skill_lightningMin = 50, skill_lightningMax = 941, },
|
|
}
|
|
}
|
|
gems["Vaal Spectral Throw"] = {
|
|
attack = true,
|
|
projectile = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
},
|
|
quality = {
|
|
attackSpeedInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { attack_damageMore = 0.7, },
|
|
[2] = { attack_damageMore = 0.718, },
|
|
[3] = { attack_damageMore = 0.736, },
|
|
[4] = { attack_damageMore = 0.754, },
|
|
[5] = { attack_damageMore = 0.772, },
|
|
[6] = { attack_damageMore = 0.79, },
|
|
[7] = { attack_damageMore = 0.808, },
|
|
[8] = { attack_damageMore = 0.826, },
|
|
[9] = { attack_damageMore = 0.844, },
|
|
[10] = { attack_damageMore = 0.862, },
|
|
[11] = { attack_damageMore = 0.88, },
|
|
[12] = { attack_damageMore = 0.898, },
|
|
[13] = { attack_damageMore = 0.916, },
|
|
[14] = { attack_damageMore = 0.934, },
|
|
[15] = { attack_damageMore = 0.952, },
|
|
[16] = { attack_damageMore = 0.97, },
|
|
[17] = { attack_damageMore = 0.988, },
|
|
[18] = { attack_damageMore = 1.006, },
|
|
[19] = { attack_damageMore = 1.024, },
|
|
[20] = { attack_damageMore = 1.042, },
|
|
[21] = { attack_damageMore = 1.06, },
|
|
[22] = { attack_damageMore = 1.078, },
|
|
[23] = { attack_damageMore = 1.096, },
|
|
[24] = { attack_damageMore = 1.114, },
|
|
[25] = { attack_damageMore = 1.132, },
|
|
[26] = { attack_damageMore = 1.15, },
|
|
[27] = { attack_damageMore = 1.168, },
|
|
[28] = { attack_damageMore = 1.186, },
|
|
[29] = { attack_damageMore = 1.204, },
|
|
[30] = { attack_damageMore = 1.222, },
|
|
}
|
|
}
|
|
gems["Vaal Storm Call"] = {
|
|
spell = true,
|
|
aoe = true,
|
|
duration = true,
|
|
lightning = true,
|
|
vaal = true,
|
|
showAverage = true,
|
|
base = {
|
|
skill_castTime = 0.5,
|
|
skill_damageEff = 0.8,
|
|
skill_critChanceBase = 6,
|
|
skill_durationBase = 3,
|
|
},
|
|
quality = {
|
|
aoeRadiusInc = 0.5,
|
|
},
|
|
levels = {
|
|
[1] = { skill_lightningMin = 13, skill_lightningMax = 25, },
|
|
[2] = { skill_lightningMin = 17, skill_lightningMax = 31, },
|
|
[3] = { skill_lightningMin = 22, skill_lightningMax = 41, },
|
|
[4] = { skill_lightningMin = 29, skill_lightningMax = 53, },
|
|
[5] = { skill_lightningMin = 36, skill_lightningMax = 67, },
|
|
[6] = { skill_lightningMin = 46, skill_lightningMax = 85, },
|
|
[7] = { skill_lightningMin = 57, skill_lightningMax = 105, },
|
|
[8] = { skill_lightningMin = 67, skill_lightningMax = 124, },
|
|
[9] = { skill_lightningMin = 78, skill_lightningMax = 144, },
|
|
[10] = { skill_lightningMin = 90, skill_lightningMax = 168, },
|
|
[11] = { skill_lightningMin = 105, skill_lightningMax = 194, },
|
|
[12] = { skill_lightningMin = 121, skill_lightningMax = 225, },
|
|
[13] = { skill_lightningMin = 140, skill_lightningMax = 259, },
|
|
[14] = { skill_lightningMin = 161, skill_lightningMax = 298, },
|
|
[15] = { skill_lightningMin = 184, skill_lightningMax = 343, },
|
|
[16] = { skill_lightningMin = 211, skill_lightningMax = 393, },
|
|
[17] = { skill_lightningMin = 231, skill_lightningMax = 429, },
|
|
[18] = { skill_lightningMin = 253, skill_lightningMax = 470, },
|
|
[19] = { skill_lightningMin = 276, skill_lightningMax = 513, },
|
|
[20] = { skill_lightningMin = 302, skill_lightningMax = 560, },
|
|
[21] = { skill_lightningMin = 329, skill_lightningMax = 611, },
|
|
[22] = { skill_lightningMin = 359, skill_lightningMax = 666, },
|
|
[23] = { skill_lightningMin = 391, skill_lightningMax = 726, },
|
|
[24] = { skill_lightningMin = 426, skill_lightningMax = 791, },
|
|
[25] = { skill_lightningMin = 464, skill_lightningMax = 861, },
|
|
[26] = { skill_lightningMin = 504, skill_lightningMax = 937, },
|
|
[27] = { skill_lightningMin = 549, skill_lightningMax = 1019, },
|
|
[28] = { skill_lightningMin = 596, skill_lightningMax = 1108, },
|
|
[29] = { skill_lightningMin = 648, skill_lightningMax = 1204, },
|
|
[30] = { skill_lightningMin = 704, skill_lightningMax = 1307, },
|
|
}
|
|
}
|
|
gems["Vaal Summon Skeletons"] = {
|
|
unsupported = true,
|
|
} |