118 lines
4.2 KiB
Lua
118 lines
4.2 KiB
Lua
-- Item data (c) Grinding Gear Games
|
|
local itemBases = ...
|
|
|
|
itemBases["Driftwood Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(8 to 12)% increased Spell Damage",
|
|
weapon = { physicalMin = 3, physicalMax = 6, critChanceBase = 8, attackRateBase = 1.4, },
|
|
req = { level = 1, int = 14, },
|
|
}
|
|
itemBases["Goat's Horn"] = {
|
|
type = "Wand",
|
|
implicit = "(9 to 12)% increased Spell Damage",
|
|
weapon = { physicalMin = 5, physicalMax = 10, critChanceBase = 8, attackRateBase = 1.2, },
|
|
req = { level = 6, int = 29, },
|
|
}
|
|
itemBases["Carved Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(9 to 13)% increased Spell Damage",
|
|
weapon = { physicalMin = 6, physicalMax = 11, critChanceBase = 8, attackRateBase = 1.5, },
|
|
req = { level = 12, int = 47, },
|
|
}
|
|
itemBases["Quartz Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(11 to 15)% increased Spell Damage",
|
|
weapon = { physicalMin = 9, physicalMax = 17, critChanceBase = 8, attackRateBase = 1.3, },
|
|
req = { level = 18, int = 65, },
|
|
}
|
|
itemBases["Spiraled Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(10 to 14)% increased Spell Damage",
|
|
weapon = { physicalMin = 8, physicalMax = 24, critChanceBase = 8, attackRateBase = 1.3, },
|
|
req = { level = 24, int = 83, },
|
|
}
|
|
itemBases["Sage Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(11 to 14)% increased Spell Damage",
|
|
weapon = { physicalMin = 15, physicalMax = 28, critChanceBase = 9, attackRateBase = 1.2, },
|
|
req = { level = 30, int = 119, },
|
|
}
|
|
itemBases["Pagan Wand"] = {
|
|
type = "Wand",
|
|
implicit = "4% increased Cast Speed",
|
|
weapon = { physicalMin = 14, physicalMax = 26, critChanceBase = 8, attackRateBase = 1.35, },
|
|
req = { level = 34, int = 118, },
|
|
}
|
|
itemBases["Faun's Horn"] = {
|
|
type = "Wand",
|
|
implicit = "(12 to 15)% increased Spell Damage",
|
|
weapon = { physicalMin = 17, physicalMax = 32, critChanceBase = 8, attackRateBase = 1.2, },
|
|
req = { level = 35, int = 116, },
|
|
}
|
|
itemBases["Engraved Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(12 to 16)% increased Spell Damage",
|
|
weapon = { physicalMin = 14, physicalMax = 27, critChanceBase = 8, attackRateBase = 1.5, },
|
|
req = { level = 40, int = 131, },
|
|
}
|
|
itemBases["Crystal Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(14 to 18)% increased Spell Damage",
|
|
weapon = { physicalMin = 19, physicalMax = 35, critChanceBase = 8, attackRateBase = 1.3, },
|
|
req = { level = 45, int = 146, },
|
|
}
|
|
itemBases["Serpent Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(13 to 17)% increased Spell Damage",
|
|
weapon = { physicalMin = 15, physicalMax = 44, critChanceBase = 8, attackRateBase = 1.3, },
|
|
req = { level = 49, int = 158, },
|
|
}
|
|
itemBases["Omen Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(14 to 17)% increased Spell Damage",
|
|
weapon = { physicalMin = 25, physicalMax = 46, critChanceBase = 9, attackRateBase = 1.2, },
|
|
req = { level = 53, int = 200, },
|
|
}
|
|
itemBases["Heathen Wand"] = {
|
|
type = "Wand",
|
|
implicit = "4% increased Cast Speed",
|
|
weapon = { physicalMin = 21, physicalMax = 40, critChanceBase = 8, attackRateBase = 1.35, },
|
|
req = { level = 55, int = 184, },
|
|
}
|
|
itemBases["Demon's Horn"] = {
|
|
type = "Wand",
|
|
implicit = "(15 to 18)% increased Spell Damage",
|
|
weapon = { physicalMin = 26, physicalMax = 48, critChanceBase = 8, attackRateBase = 1.2, },
|
|
req = { level = 56, int = 179, },
|
|
}
|
|
itemBases["Imbued Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(15 to 19)% increased Spell Damage",
|
|
weapon = { physicalMin = 20, physicalMax = 38, critChanceBase = 8, attackRateBase = 1.5, },
|
|
req = { level = 59, int = 188, },
|
|
}
|
|
itemBases["Opal Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(17 to 20)% increased Spell Damage",
|
|
weapon = { physicalMin = 24, physicalMax = 45, critChanceBase = 8, attackRateBase = 1.3, },
|
|
req = { level = 62, int = 212, },
|
|
}
|
|
itemBases["Tornado Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(16 to 19)% increased Spell Damage",
|
|
weapon = { physicalMin = 17, physicalMax = 52, critChanceBase = 8, attackRateBase = 1.3, },
|
|
req = { level = 65, int = 212, },
|
|
}
|
|
itemBases["Prophecy Wand"] = {
|
|
type = "Wand",
|
|
implicit = "(16 to 20)% increased Spell Damage",
|
|
weapon = { physicalMin = 27, physicalMax = 51, critChanceBase = 9, attackRateBase = 1.2, },
|
|
req = { level = 68, int = 245, },
|
|
}
|
|
itemBases["Profane Wand"] = {
|
|
type = "Wand",
|
|
implicit = "6% increased Cast Speed",
|
|
weapon = { physicalMin = 23, physicalMax = 43, critChanceBase = 8, attackRateBase = 1.35, },
|
|
req = { level = 70, int = 237, },
|
|
}
|