Module:Enchantment/data
Jump to navigation
Jump to search
As this module includes functions, it has to be imported into other modules with require(), instead of using mw.loadData()
When adding new enchantments getTooltip() has to be manually transpiled and added to the final data.
https://github.com/Roblox/js-to-lua might help, but probably not worth the time and hassle for a few edits/additions.
Keep round() and toFixed() when updating the file as they're used by some of the getTooltip functions.
JS code to copy into browser console to get JSON:
var enchants = Idlescape.data.enchantments
for (var id in enchants) {
enchants[id].desc = enchants[id].getTooltip(1, enchants[id].strengthPerLevel)
}
JSON.stringify(enchants)
return {
["0"] = {
id = 0,
name = "Unknown",
strengthPerLevel = 0,
relatedSkills = { "total" },
ignoredByMadness = true,
buffIcon = "/images/misc/unknown_buff.png"
},
["1"] = {
id = 1,
name = "Embers",
strengthPerLevel = 0.1,
relatedSkills = { "foraging" },
scrollID = 1601,
buffIcon = "/images/magic/buffs/embers_icon.png"
},
["2"] = {
id = 2,
name = "Prospecting",
strengthPerLevel = 0.5,
relatedSkills = { "mining" },
scrollID = 1602,
buffIcon = "/images/magic/buffs/prospector_icon.png"
},
["3"] = {
id = 3,
name = "Scholar",
strengthPerLevel = 0.2,
relatedSkills = { "gathering", "production" },
ignoredByMadness = true,
scrollID = 1603,
buffIcon = "/images/magic/buffs/scholar_icon.png"
},
["4"] = {
id = 4,
name = "Gathering",
strengthPerLevel = 0.1,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
scrollID = 1604,
buffIcon = "/images/magic/buffs/gathering_icon.png"
},
["5"] = {
id = 5,
name = "Superheating",
strengthPerLevel = 0.01,
relatedSkills = { "mining" },
scrollID = 1605,
buffIcon = "/images/magic/buffs/superheated_icon.png"
},
["6"] = {
id = 6,
name = "Pyromancy",
strengthPerLevel = 0.05,
strengthCap = 0.8,
relatedSkills = { "production", "cooking", "smithing" },
scrollID = 1606,
buffIcon = "/images/magic/buffs/pyromancy.png"
},
["7"] = {
id = 7,
name = "Wealth",
strengthPerLevel = 0.2,
relatedSkills = { "production", "gathering" },
ignoredByMadness = true,
scrollID = 1607,
buffIcon = "/images/magic/buffs/wealth_icon.png"
},
["8"] = {
id = 8,
name = "Haste",
strengthPerLevel = 0.04,
strengthCap = 1,
relatedSkills = { "skilling" },
scrollID = 1608,
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["9"] = {
id = 9,
name = "Naturalist",
strengthPerLevel = 0.2,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
scrollID = 1609,
buffIcon = "/images/magic/buffs/naturalist_icon.png"
},
["10"] = {
id = 10,
name = "Acrobatics",
strengthPerLevel = 0.03,
relatedSkills = { "combat", "attack" },
scrollID = 1610,
buffIcon = "/images/magic/buffs/patience_icon.png"
},
["11"] = {
id = 11,
name = "Critical Strike",
strengthPerLevel = 0.025,
relatedSkills = { "attack" },
statBuffs = { {
path = "offensiveCritical.chance",
additivePerLevel = 0.025,
multiplicativePerLevel = 0
}, {
path = "offensiveCritical.damageMultiplier",
additivePerLevel = 0.025,
multiplicativePerLevel = 0
} },
scrollID = 1611,
buffIcon = "/images/magic/buffs/critical_strike_icon.png"
},
["12"] = {
id = 12,
name = "Poisoning",
strengthPerLevel = 1,
relatedSkills = { "attack" },
scrollID = 1612,
isDebuff = true,
buffIcon = "/images/misc/unknown_buff.png"
},
["13"] = {
id = 13,
name = "Accuracy",
strengthPerLevel = 0.025,
relatedSkills = { "attack" },
scrollID = 1613,
statBuffs = { {
path = "offensiveAccuracyAffinityRating.Melee",
additivePerLevel = 0,
multiplicativePerLevel = 0.025
}, {
path = "offensiveAccuracyAffinityRating.Magic",
additivePerLevel = 0,
multiplicativePerLevel = 0.025
}, {
path = "offensiveAccuracyAffinityRating.Range",
additivePerLevel = 0,
multiplicativePerLevel = 0.025
} },
buffIcon = "/images/magic/buffs/accuracy_icon.png"
},
["14"] = {
id = 14,
name = "Deflect",
strengthPerLevel = 0.1,
relatedSkills = { "defense" },
scrollID = 1614,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["15"] = {
id = 15,
name = "Force",
strengthPerLevel = 0.01,
relatedSkills = { "strength" },
scrollID = 1615,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["16"] = {
id = 16,
name = "Healing",
strengthPerLevel = 0.2,
relatedSkills = { "constitution" },
scrollID = 1616,
buffIcon = "/images/magic/buffs/healing_icon.png"
},
["17"] = {
id = 17,
name = "Weakening",
strengthPerLevel = 1,
relatedSkills = { "total" },
ignoredByMadness = true,
scrollID = 1617,
buffIcon = "/images/magic/buffs/weakening_icon.png"
},
["18"] = {
id = 18,
name = "Reinforcement",
strengthPerLevel = 12,
relatedSkills = { "defense", "range" },
scrollID = 1618,
statBuffs = { {
path = "armor.agility",
additivePerLevel = 12,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["19"] = {
id = 19,
name = "Protection",
strengthPerLevel = 10,
relatedSkills = { "defense", "strength" },
scrollID = 1619,
statBuffs = { {
path = "armor.protection",
additivePerLevel = 10,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["20"] = {
id = 20,
name = "Parry",
strengthPerLevel = 0.01,
relatedSkills = { "combat", "defense", "attack" },
scrollID = 1620,
buffIcon = "/images/magic/buffs/recklessness_icon.png"
},
["21"] = {
id = 21,
name = "False Equilibrium",
strengthPerLevel = 0.015,
relatedSkills = { "attack" },
scrollID = 1621,
buffIcon = "/images/magic/buffs/recklessness_icon.png"
},
["22"] = {
id = 22,
name = "Efficiency",
strengthPerLevel = 0.01,
relatedSkills = { "production" },
scrollID = 1622,
buffIcon = "/images/magic/buffs/efficiency_icon.png"
},
["23"] = {
id = 23,
name = "Fishing",
strengthPerLevel = 0.025,
relatedSkills = { "fishing" },
scrollID = 1623,
buffIcon = "/images/magic/buffs/fishing.png"
},
["24"] = {
id = 24,
name = "Cooking",
strengthPerLevel = 0.04,
relatedSkills = { "cooking" },
scrollID = 1624,
buffIcon = "/images/magic/buffs/cooking_icon.png"
},
["25"] = {
id = 25,
name = "Crafting",
strengthPerLevel = 0.02,
relatedSkills = { "crafting" },
scrollID = 1625,
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["26"] = {
id = 26,
name = "Refining",
strengthPerLevel = 2,
relatedSkills = { "smithing" },
scrollID = 1626,
buffIcon = "/images/magic/buffs/refining_icon.png"
},
["27"] = {
id = 27,
name = "Runecrafting",
strengthPerLevel = 0.05,
relatedSkills = { "runecrafting" },
scrollID = 1627,
buffIcon = "/images/magic/buffs/runecrafting_icon.png"
},
["28"] = {
id = 28,
name = "Chances",
strengthPerLevel = 0.01,
relatedSkills = { "enchanting" },
scrollID = 1628,
buffIcon = "/images/magic/buffs/chances-icon.png"
},
["29"] = {
id = 29,
name = "Shrimp Lord",
strengthPerLevel = 0.05,
relatedSkills = { "cooking" },
scrollID = 1629,
buffIcon = "/images/magic/buffs/shrimlord_icon.png"
},
["30"] = {
id = 30,
name = "Enlightenment",
strengthPerLevel = 1,
relatedSkills = { "total", "skilling" },
scrollID = 1630,
buffIcon = "/images/magic/buffs/enlightenment_icon.png"
},
["31"] = {
id = 31,
name = "Prolonging",
strengthPerLevel = 0.25,
relatedSkills = { "total" },
scrollID = 1631,
buffIcon = "/images/magic/buffs/prolonging_icon.png"
},
["32"] = {
id = 32,
name = "Treasure Hunter",
strengthPerLevel = 1,
relatedSkills = { "combat" },
scrollID = 1632,
buffIcon = "/images/magic/buffs/treasurehunter_icon.png"
},
["33"] = {
id = 33,
name = "Inferno",
strengthPerLevel = 0.04,
strengthCap = 0.8,
relatedSkills = { "production", "smithing", "cooking" },
scrollID = 1633,
buffIcon = "/images/magic/buffs/inferno_icon.png"
},
["34"] = {
id = 34,
name = "Destructive Testing",
strengthPerLevel = 5,
relatedSkills = { "mining" },
scrollID = 1634,
buffIcon = "/images/magic/buffs/destructivetesting_icon.png"
},
["35"] = {
id = 35,
name = "Nature",
strengthPerLevel = 1,
relatedSkills = { "foraging" },
scrollID = 1635,
buffIcon = "/images/magic/buffs/nature_icon.png"
},
["36"] = {
id = 36,
name = "Root Digging",
strengthPerLevel = 0.5,
relatedSkills = { "foraging" },
scrollID = 1636,
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["37"] = {
id = 37,
name = "Patience",
strengthPerLevel = 3,
relatedSkills = { "attack" },
scrollID = 1637,
buffIcon = "/images/magic/buffs/patience_icon.png"
},
["38"] = {
id = 38,
name = "Overhealing",
strengthPerLevel = 0.01,
relatedSkills = { "combat", "constitution" },
scrollID = 1638,
buffIcon = "/images/magic/buffs/overhealing_icon.png"
},
["39"] = {
id = 39,
name = "Farming",
strengthPerLevel = 0.02,
relatedSkills = { "farming" },
scrollID = 1639,
buffIcon = "/images/magic/buffs/farming_icon.png"
},
["40"] = {
id = 40,
name = "Gold Digger",
strengthPerLevel = 2000,
relatedSkills = { "farming" },
scrollID = 1640,
buffIcon = "/images/magic/buffs/golddigger_icon.png"
},
["41"] = {
id = 41,
name = "Fertilizing",
strengthPerLevel = 0.06,
relatedSkills = { "farming" },
scrollID = 1641,
buffIcon = "/images/magic/buffs/fertilizing_icon.png"
},
["42"] = {
id = 42,
name = "Cultivation",
strengthPerLevel = 0.02,
relatedSkills = { "farming" },
scrollID = 1642,
buffIcon = "/images/magic/buffs/cultivation_icon.png"
},
["43"] = {
id = 43,
name = "Corruption",
strengthPerLevel = 40,
relatedSkills = { "constitution" },
buffIcon = "/images/magic/buffs/cultivation_icon.png"
},
["44"] = {
id = 44,
name = "Fortitude",
strengthPerLevel = 10,
scrollID = 1643,
relatedSkills = { "constitution" },
statBuffs = { {
path = "armor.stamina",
additivePerLevel = 10,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/overhealing_icon.png"
},
["45"] = {
id = 45,
name = "Aspect of Flame",
strengthPerLevel = 0.05,
relatedSkills = { "magic" },
damageConversion = "Fire",
buffIcon = "/images/magic/buffs/embers_icon.png"
},
["46"] = {
id = 46,
name = "Aspect of Lightning",
strengthPerLevel = 0.05,
relatedSkills = { "strength" },
damageConversion = "Lightning",
buffIcon = "/images/magic/buffs/embers_icon.png"
},
["47"] = {
id = 47,
name = "Aspect of Chaos",
strengthPerLevel = 0.05,
relatedSkills = { "strength", "magic" },
damageConversion = "Chaos",
buffIcon = "/images/magic/buffs/embers_icon.png"
},
["48"] = {
id = 48,
name = "Fishing Magnetism",
strengthPerLevel = 2,
relatedSkills = { "fishing" },
scrollID = 1646,
buffIcon = "/images/magic/buffs/fishingmagnetism_icon.png"
},
["49"] = {
id = 49,
name = "Pungent Bait",
strengthPerLevel = 3,
relatedSkills = { "fishing" },
scrollID = 1644,
buffIcon = "/images/magic/buffs/pungentbait_icon.png"
},
["50"] = {
id = 50,
name = "Reinforced Line",
strengthPerLevel = 3,
scrollID = 1645,
relatedSkills = { "fishing" },
buffIcon = "/images/magic/buffs/reinforcedline_icon.png"
},
["51"] = {
id = 51,
name = "Bait Preservation",
strengthPerLevel = 0.04,
scrollID = 1647,
relatedSkills = { "fishing" },
buffIcon = "/images/magic/buffs/preservation_icon.png"
},
["52"] = {
id = 52,
name = "Oil Spill",
strengthPerLevel = 0.075,
scrollID = 1648,
relatedSkills = { "fishing" },
buffIcon = "/images/magic/buffs/oilspill_icon.png"
},
["53"] = {
id = 53,
name = "Deadliest Catch",
strengthPerLevel = 0.05,
scrollID = 1649,
relatedSkills = { "fishing" },
buffIcon = "/images/magic/buffs/deadliestcatch_icon.png"
},
["54"] = {
id = 54,
name = "Master Chef",
strengthPerLevel = 0.04,
scrollID = 1650,
relatedSkills = { "cooking" },
buffIcon = "/images/magic/buffs/masterchef_icon.png"
},
["55"] = {
id = 55,
name = "Herbalist",
strengthPerLevel = 1,
scrollID = 1651,
relatedSkills = { "foraging" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["56"] = {
id = 56,
name = "Seed Harvesting",
strengthPerLevel = 1,
scrollID = 1652,
relatedSkills = { "foraging" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["57"] = {
id = 57,
name = "Metallurgy",
strengthPerLevel = 0.5,
scrollID = 1653,
relatedSkills = { "smithing" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["58"] = {
id = 58,
name = "Pure Metals",
strengthPerLevel = 0.02,
scrollID = 1654,
relatedSkills = { "smithing" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["59"] = {
id = 59,
name = "Essence Concentration",
strengthPerLevel = 1,
scrollID = 1655,
relatedSkills = { "runecrafting" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["60"] = {
id = 60,
name = "Endless Ammo",
strengthPerLevel = 0.2,
scrollID = 1658,
relatedSkills = { "attack", "strength", "range", "magic" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["61"] = {
id = 61,
name = "Rune Reserves",
strengthPerLevel = 0.5,
scrollID = 1659,
relatedSkills = { "magic" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["62"] = {
id = 62,
name = "Fiber Finder",
strengthPerLevel = 0.25,
scrollID = 1656,
relatedSkills = { "fishing" },
buffIcon = "/images/magic/buffs/fishing.png"
},
["63"] = {
id = 63,
name = "Quiver",
strengthPerLevel = 0.05,
relatedSkills = { "range" },
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["64"] = {
id = 64,
name = "Alacrity",
strengthPerLevel = 15,
relatedSkills = { "defense" },
statBuffs = { {
path = "armor.agility",
additivePerLevel = 15,
multiplicativePerLevel = 0
}, {
path = "offensiveAccuracyAffinityRating.Melee",
additivePerLevel = -15,
multiplicativePerLevel = 0
}, {
path = "offensiveAccuracyAffinityRating.Magic",
additivePerLevel = -15,
multiplicativePerLevel = 0
}, {
path = "offensiveAccuracyAffinityRating.Range",
additivePerLevel = -15,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["65"] = {
id = 65,
name = "Hold the Line",
strengthPerLevel = 15,
relatedSkills = { "defense" },
statBuffs = { {
path = "armor.protection",
additivePerLevel = 15,
multiplicativePerLevel = 0
}, {
path = "armor.resistance",
additivePerLevel = 15,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Melee",
additivePerLevel = -0.05,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Magic",
additivePerLevel = -0.05,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Range",
additivePerLevel = -0.05,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["66"] = {
id = 66,
name = "Taxing",
strengthPerLevel = 0.25,
relatedSkills = { "combat" },
buffIcon = "/images/magic/buffs/wealth_icon.png"
},
["67"] = {
id = 67,
name = "Archaeology",
strengthPerLevel = 1,
scrollID = 1657,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
buffIcon = "/images/magic/buffs/wealth_icon.png"
},
["68"] = {
id = 68,
name = "Empowered Prospecting",
strengthPerLevel = 0.5,
relatedSkills = { "mining" },
buffIcon = "/images/magic/buffs/prospector_icon.png"
},
["69"] = {
id = 69,
name = "Empowered Gathering",
strengthPerLevel = 0.1,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
buffIcon = "/images/magic/buffs/gathering_icon.png"
},
["70"] = {
id = 70,
name = "Aspect of Ice",
strengthPerLevel = 0.05,
relatedSkills = { "magic" },
damageConversion = "Ice",
buffIcon = "/images/magic/buffs/embers_icon.png"
},
["71"] = {
id = 71,
name = "Soul Wisdom",
strengthPerLevel = 0.06,
relatedSkills = { "total" },
ignoredByMadness = true,
scrollID = 1660,
buffIcon = "/images/magic/buffs/embers_icon.png"
},
["72"] = {
id = 72,
name = "Overly Well Done",
strengthPerLevel = 0.2,
scrollID = 1661,
relatedSkills = { "cooking" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/masterchef_icon.png"
},
["73"] = {
id = 73,
name = "Loot Goblin",
strengthPerLevel = 2,
relatedSkills = { "combat" },
buffIcon = "/images/magic/buffs/masterchef_icon.png"
},
["74"] = {
id = 74,
name = "Recklessness",
strengthPerLevel = 0.02,
relatedSkills = { "attack" },
scrollID = 1662,
statBuffs = { {
path = "offensiveDamageAffinity.Melee",
additivePerLevel = 0.02,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Magic",
additivePerLevel = 0.02,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Range",
additivePerLevel = 0.02,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Melee",
additivePerLevel = -0.02,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Magic",
additivePerLevel = -0.02,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Range",
additivePerLevel = -0.02,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/recklessness_icon.png"
},
["75"] = {
id = 75,
name = "Elemental Stabilization",
strengthPerLevel = 0.02,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/recklessness_icon.png"
},
["76"] = {
id = 76,
name = "Empowered Haste",
strengthPerLevel = 0.02,
strengthCap = 1,
relatedSkills = { "skilling" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["77"] = {
id = 77,
name = "Researcher's Boon",
strengthPerLevel = 0.1,
strengthCap = 1,
relatedSkills = { "skilling" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["78"] = {
id = 78,
name = "Gatherer's Boon",
strengthPerLevel = 0.1,
strengthCap = 1,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["79"] = {
id = 79,
name = "Adventurer's Boon",
strengthPerLevel = 0.1,
strengthCap = 1,
relatedSkills = { "skilling" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["80"] = {
id = 80,
name = "Bag of Holding",
strengthPerLevel = 0.3333333333333333,
strengthCap = 1,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["81"] = {
id = 81,
name = "Engraving",
strengthPerLevel = 0.02,
scrollID = 1663,
strengthCap = 0.8,
relatedSkills = { "runecrafting" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["82"] = {
id = 82,
name = "Supercooling",
strengthPerLevel = 0.01,
scrollID = 1665,
relatedSkills = { "mining" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["83"] = {
id = 83,
name = "Dwarven Engineering",
strengthPerLevel = 0.002,
strengthCap = 0.8,
scrollID = 1666,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["84"] = {
id = 84,
name = "Dwarven Manufacturing",
strengthPerLevel = 1,
relatedSkills = { "production" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["85"] = {
id = 85,
name = "Elven Logistics",
strengthPerLevel = 1,
relatedSkills = { "production" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["86"] = {
id = 86,
name = "Resistance",
strengthPerLevel = 10,
relatedSkills = { "defense", "magic" },
scrollID = 1664,
statBuffs = { {
path = "armor.resistance",
additivePerLevel = 10,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["87"] = {
id = 87,
name = "Convergence",
strengthPerLevel = 0.01,
relatedSkills = { "magic" },
scrollID = 1668,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["88"] = {
id = 88,
name = "Finesse",
strengthPerLevel = 0.01,
relatedSkills = { "range" },
scrollID = 1669,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["89"] = {
id = 89,
name = "Crucible",
strengthPerLevel = 0.02,
relatedSkills = { "smithing" },
scrollID = 1671,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["90"] = {
id = 90,
name = "Forge Enhancement",
strengthPerLevel = 0.01,
relatedSkills = { "smithing" },
scrollID = 1672,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["91"] = {
id = 91,
name = "Forge Maintenance",
strengthPerLevel = 0.01,
relatedSkills = { "smithing" },
scrollID = 1673,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["92"] = {
id = 92,
name = "Fibrous Fabrication",
strengthPerLevel = 0.02,
relatedSkills = { "runecrafting" },
scrollID = 1670,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["93"] = {
id = 93,
name = "Key Hunter",
strengthPerLevel = 0.005,
relatedSkills = { "combat" },
ignoredByMadness = true,
scrollID = 1669,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["94"] = {
id = 94,
name = "Soul Trade",
strengthPerLevel = 0.03,
relatedSkills = { "total" },
ignoredByMadness = true,
scrollID = 1669,
buffIcon = "/images/magic/buffs/force_icon.png"
},
["95"] = {
id = 95,
name = "Deep Fry",
strengthPerLevel = 0.04,
strengthCap = 1,
relatedSkills = { "cooking" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["96"] = {
id = 96,
name = "Leftovers",
strengthPerLevel = 0.01,
relatedSkills = { "cooking" },
scrollID = 1674,
buffIcon = "/images/magic/buffs/rootdigging_icon.png"
},
["97"] = {
id = 97,
name = "Blitzing",
strengthPerLevel = 5.0E-4,
relatedSkills = { "cooking" },
scrollID = 1675,
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["98"] = {
id = 98,
name = "Swift Agony",
strengthPerLevel = 1,
relatedSkills = { "magic" },
buffIcon = "/images/magic/buffs/haste_icon.png"
},
["99"] = {
id = 99,
name = "Duster",
strengthPerLevel = 0.01,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["100"] = {
id = 100,
name = "Scrapper",
strengthPerLevel = 0.1,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["101"] = {
id = 101,
name = "Immunity",
strengthPerLevel = 0.1,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["500"] = {
id = 500,
name = "Crafting Talent",
strengthPerLevel = 0.02,
relatedSkills = { "crafting" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["501"] = {
id = 501,
name = "Dwarven Student",
strengthPerLevel = 1,
relatedSkills = { "mining" },
ignoredByMadness = true,
statBuffs = { {
path = "mining",
additivePerLevel = 30,
multiplicativePerLevel = 0
}, {
path = "foraging",
additivePerLevel = -10,
multiplicativePerLevel = 0
}, {
path = "fishing",
additivePerLevel = -10,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["502"] = {
id = 502,
name = "Elven Student",
strengthPerLevel = 1,
relatedSkills = { "foraging" },
ignoredByMadness = true,
statBuffs = { {
path = "mining",
additivePerLevel = -10,
multiplicativePerLevel = 0
}, {
path = "foraging",
additivePerLevel = 30,
multiplicativePerLevel = 0
}, {
path = "fishing",
additivePerLevel = 30,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["503"] = {
id = 503,
name = "Shrimp Student",
strengthPerLevel = 1,
relatedSkills = { "fishing" },
ignoredByMadness = true,
statBuffs = { {
path = "mining",
additivePerLevel = -10,
multiplicativePerLevel = 0
}, {
path = "foraging",
additivePerLevel = -10,
multiplicativePerLevel = 0
}, {
path = "fishing",
additivePerLevel = 30,
multiplicativePerLevel = 0
}, {
path = "fishingBaitPower",
additivePerLevel = 30,
multiplicativePerLevel = 0
}, {
path = "fishingRarityPower",
additivePerLevel = 30,
multiplicativePerLevel = 0
}, {
path = "fishingReelPower",
additivePerLevel = 30,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["504"] = {
id = 504,
name = "Hamster Hunter",
strengthPerLevel = 0.05,
relatedSkills = { "mining" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["505"] = {
id = 505,
name = "Melter Smelter",
strengthPerLevel = 0.005,
relatedSkills = { "mining" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["506"] = {
id = 506,
name = "Fresh Forager",
strengthPerLevel = 0.005,
relatedSkills = { "foraging" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["507"] = {
id = 507,
name = "Mining Prodigy",
strengthPerLevel = 10,
relatedSkills = { "mining" },
statBuffs = { {
path = "mining",
additivePerLevel = 10,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["508"] = {
id = 508,
name = "Foraging Prodigy",
strengthPerLevel = 10,
relatedSkills = { "foraging" },
statBuffs = { {
path = "foraging",
additivePerLevel = 10,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["509"] = {
id = 509,
name = "Fishing Prodigy",
strengthPerLevel = 10,
relatedSkills = { "fishing" },
statBuffs = { {
path = "fishing",
additivePerLevel = 10,
multiplicativePerLevel = 0
}, {
path = "fishingBaitPower",
additivePerLevel = 10,
multiplicativePerLevel = 0
}, {
path = "fishingRarityPower",
additivePerLevel = 10,
multiplicativePerLevel = 0
}, {
path = "fishingReelPower",
additivePerLevel = 10,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["510"] = {
id = 510,
name = "Mining Grandmaster",
strengthPerLevel = 0.05,
relatedSkills = { "mining" },
statBuffs = { {
path = "mining",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["511"] = {
id = 511,
name = "Foraging Grandmaster",
strengthPerLevel = 0.05,
relatedSkills = { "foraging" },
statBuffs = { {
path = "foraging",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["512"] = {
id = 512,
name = "Fishing Grandmaster",
strengthPerLevel = 0.05,
relatedSkills = { "fishing" },
statBuffs = { {
path = "fishing",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
}, {
path = "fishingBaitPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
}, {
path = "fishingRarityPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
}, {
path = "fishingReelPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["513"] = {
id = 513,
name = "Bound Anger",
strengthPerLevel = 0.05,
relatedSkills = { "strength" },
buffIcon = "/images/magic/buffs/fishing.png"
},
["514"] = {
id = 514,
name = "Lucky Looter",
strengthPerLevel = 0.005,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["515"] = {
id = 515,
name = "Critical Weakpoint",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["516"] = {
id = 516,
name = "Careful Criticals",
strengthPerLevel = 0.25,
relatedSkills = { "attack" },
ignoredByMadness = true,
statBuffs = { {
path = "offensiveCritical.chance",
additivePerLevel = 0,
multiplicativePerLevel = -0.25
}, {
path = "offensiveCritical.damageMultiplier",
additivePerLevel = 0,
multiplicativePerLevel = 0.5
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["517"] = {
id = 517,
name = "Unbound Rage",
strengthPerLevel = 0.05,
relatedSkills = { "strength" },
ignoredByMadness = true,
statBuffs = { {
path = "defensiveDamageAffinity.Melee",
additivePerLevel = -0.05,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Magic",
additivePerLevel = -0.05,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Range",
additivePerLevel = -0.05,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["518"] = {
id = 518,
name = "Arsonist",
strengthPerLevel = 0.25,
relatedSkills = { "attack" },
ignoredByMadness = true,
statBuffs = { {
path = "offensiveDamageAffinity.Fire",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Fire",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Melee",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Magic",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Range",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["519"] = {
id = 519,
name = "Giant's Blood",
strengthPerLevel = 0.1,
relatedSkills = { "constitution" },
ignoredByMadness = true,
statBuffs = { {
path = "weapon.strength",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
}, {
path = "armor.stamina",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
}, {
path = "armor.agility",
additivePerLevel = 0,
multiplicativePerLevel = -0.1
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["520"] = {
id = 520,
name = "Cold-Blooded",
strengthPerLevel = 0.25,
relatedSkills = { "magic" },
ignoredByMadness = true,
statBuffs = { {
path = "offensiveDamageAffinity.Ice",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Ice",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Melee",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Magic",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Range",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["521"] = {
id = 521,
name = "Molten Metal",
strengthPerLevel = 1,
relatedSkills = { "smithing" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["522"] = {
id = 522,
name = "Slag Refinement",
strengthPerLevel = 0.025,
relatedSkills = { "smithing" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["523"] = {
id = 523,
name = "Seed Sifter",
strengthPerLevel = 0.01,
relatedSkills = { "cooking" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["524"] = {
id = 524,
name = "Goblin Slayer",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["525"] = {
id = 525,
name = "Exorcist",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["526"] = {
id = 526,
name = "Vigilante",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["527"] = {
id = 527,
name = "Purifier",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["528"] = {
id = 528,
name = "Big Game Hunter",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["529"] = {
id = 529,
name = "Crusader",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["530"] = {
id = 530,
name = "Elf Exterminator",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["531"] = {
id = 531,
name = "Giant Slayer",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["532"] = {
id = 532,
name = "Order from Chaos",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["533"] = {
id = 533,
name = "Shrimpbane",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["534"] = {
id = 534,
name = "Arboreal Annihilator",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["535"] = {
id = 535,
name = "Technophobe",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["536"] = {
id = 536,
name = "Luddite",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["537"] = {
id = 537,
name = "Greenest Thumb",
strengthPerLevel = 0.05,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["538"] = {
id = 538,
name = "Totemic Wisdom",
strengthPerLevel = 0.05,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["539"] = {
id = 539,
name = "Mysterious Harvest",
strengthPerLevel = 0.01,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["540"] = {
id = 540,
name = "Trapper",
strengthPerLevel = 0.05,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["541"] = {
id = 541,
name = "Farm Blitz",
strengthPerLevel = 1,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["542"] = {
id = 542,
name = "Sympathetic Growth",
strengthPerLevel = 0.01,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["543"] = {
id = 543,
name = "Crop Rotation",
strengthPerLevel = 0.05,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["544"] = {
id = 544,
name = "Tree Hugger",
strengthPerLevel = 0.05,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["545"] = {
id = 545,
name = "Heart of the Forest",
strengthPerLevel = 1,
relatedSkills = { "farming" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["546"] = {
id = 546,
name = "Unadorned Agility",
strengthPerLevel = 25,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["547"] = {
id = 547,
name = "Featherweight Fighter",
strengthPerLevel = 1,
relatedSkills = { "defense", "attack" },
ignoredByMadness = true,
statBuffs = { {
path = "armor.agility",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["548"] = {
id = 548,
name = "Nine-Lives",
strengthPerLevel = 1,
relatedSkills = { "defense", "constitution" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["549"] = {
id = 549,
name = "Featherweight Champion",
strengthPerLevel = 0.05,
relatedSkills = { "attack", "strength", "magic", "range" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["550"] = {
id = 550,
name = "Augmentation Afficionado",
strengthPerLevel = 0.025,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["551"] = {
id = 551,
name = "Research Ready",
strengthPerLevel = 0.025,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["552"] = {
id = 552,
name = "Mad Scientist",
strengthPerLevel = 0.025,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["553"] = {
id = 553,
name = "Lingering Enlightenment",
strengthPerLevel = 1,
relatedSkills = { "enchanting" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["554"] = {
id = 554,
name = "Spiraling out of Control",
strengthPerLevel = 0.0025,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["555"] = {
id = 555,
name = "Affix Affinity",
strengthPerLevel = 1,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["556"] = {
id = 556,
name = "Talisman Talent",
strengthPerLevel = 0.2,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["557"] = {
id = 557,
name = "Essence Concentration Expert",
strengthPerLevel = 0.1,
relatedSkills = { "enchanting" },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["558"] = {
id = 558,
name = "Silent Fury",
strengthPerLevel = 0.05,
relatedSkills = { "constitution" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/fishing.png"
},
["559"] = {
id = 559,
name = "Arrow Expenditure",
strengthPerLevel = 1,
relatedSkills = { "range" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/fishing.png"
},
["560"] = {
id = 560,
name = "Ammunition Overload",
strengthPerLevel = 0.05,
relatedSkills = { "attack" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/fishing.png"
},
["561"] = {
id = 561,
name = "Poisoner",
strengthPerLevel = 0.25,
relatedSkills = { "magic" },
ignoredByMadness = true,
statBuffs = { {
path = "offensiveDamageAffinity.Poison",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Poison",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Melee",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Magic",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Range",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["562"] = {
id = 562,
name = "Druidism",
strengthPerLevel = 0.25,
relatedSkills = { "magic" },
ignoredByMadness = true,
statBuffs = { {
path = "offensiveDamageAffinity.Nature",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "defensiveDamageAffinity.Nature",
additivePerLevel = 0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Melee",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Magic",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
}, {
path = "offensiveDamageAffinity.Range",
additivePerLevel = -0.25,
multiplicativePerLevel = 0
} },
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["563"] = {
id = 563,
name = "Consistent Chef",
strengthPerLevel = 1,
relatedSkills = { "cooking" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/crafting_icon.png"
},
["1000"] = {
id = 1000,
name = "Impenetrable Defense",
strengthPerLevel = 1,
relatedSkills = { "defense" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/impenetrabledefence_icon.png"
},
["2000"] = {
id = 2000,
name = "Nimble",
strengthPerLevel = 0.1,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/nimble.png"
},
["2001"] = {
id = 2001,
name = "Demon Skin",
strengthPerLevel = 9,
setRequirements = { {
count = 3,
strength = 2
}, {
count = 4,
strength = 4
}, {
count = 5,
strength = 6
} },
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/demon_skin.png"
},
["2002"] = {
id = 2002,
name = "Intuition",
strengthPerLevel = 0.05,
relatedSkills = { "total" },
buffIcon = "/images/magic/buffs/xp_increased.png"
},
["5000"] = {
id = 5000,
name = "schfftph fzzz",
strengthPerLevel = 5.0E-4,
relatedSkills = { "total" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/shrimlord_icon.png"
},
["7000"] = {
id = 7000,
name = "Christmas Spirit",
strengthPerLevel = 1,
relatedSkills = { "total" },
ignoredByMadness = true,
buffIcon = "/images/christmas/snow.png"
},
["7001"] = {
id = 7001,
name = "Easter",
strengthPerLevel = 1,
relatedSkills = { "total" },
ignoredByMadness = true,
buffIcon = "/images/cooking/34573r_3gg.png"
},
["8000"] = {
id = 8000,
name = "Weakness",
strengthPerLevel = 0.1,
relatedSkills = { "attack" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/weakening_icon.png"
},
["8001"] = {
id = 8001,
name = "Corrosion",
strengthPerLevel = 0.1,
relatedSkills = { "defense" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8002"] = {
id = 8002,
name = "Sick",
strengthPerLevel = 0.1,
relatedSkills = { "constitution" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/prolonging_icon.png"
},
["8003"] = {
id = 8003,
name = "Blind",
strengthPerLevel = 0.1,
relatedSkills = { "attack" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/accuracy_icon.png"
},
["8004"] = {
id = 8004,
name = "Stunned",
strengthPerLevel = 0.1,
relatedSkills = { "combat", "attack" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/patience_icon.png"
},
["8005"] = {
id = 8005,
name = "Resurrection Sickness",
strengthPerLevel = 0.33,
relatedSkills = { "constitution", "attack" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/debuffs/resurrection_sickness.png"
},
["8006"] = {
id = 8006,
name = "Overheating",
strengthPerLevel = 0.1,
relatedSkills = { "constitution", "magic" },
ignoreProlonging = true,
isDebuff = true,
hideStacks = true,
buffIcon = "/images/magic/debuffs/overheating.png"
},
["8007"] = {
id = 8007,
name = "Flame Resistance",
strengthPerLevel = 0.1,
relatedSkills = { "constitution", "magic" },
stackMult = 2,
buffIcon = "/images/magic/buffs/flame_resistance.png"
},
["8008"] = {
id = 8008,
name = "Soul Stealing",
strengthPerLevel = 0.01,
relatedSkills = { "attack", "constitution" },
buffIcon = "/images/magic/buffs/overhealing_icon.png"
},
["8009"] = {
id = 8009,
name = "Nature's Sanctuary",
strengthPerLevel = 20,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8010"] = {
id = 8010,
name = "Regal Might",
strengthPerLevel = 50,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8011"] = {
id = 8011,
name = "Wide Open",
strengthPerLevel = 20,
relatedSkills = { "defense" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8012"] = {
id = 8012,
name = "Guarded",
strengthPerLevel = 20,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8013"] = {
id = 8013,
name = "Taunting",
strengthPerLevel = 0.2,
relatedSkills = { "constitution" },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["8014"] = {
id = 8014,
name = "Camouflage",
strengthPerLevel = 0.1,
relatedSkills = { "constitution" },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["8015"] = {
id = 8015,
name = "Hard to Hit",
strengthPerLevel = 0.1,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["8016"] = {
id = 8016,
name = "Ice Armor",
strengthPerLevel = 10,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["8017"] = {
id = 8017,
name = "Rooted",
strengthPerLevel = 0.1,
relatedSkills = { "defense" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["8018"] = {
id = 8018,
name = "Tank Taunting",
strengthPerLevel = 2,
relatedSkills = { "constitution", "defense" },
buffIcon = "/images/magic/buffs/reinforcement_icon.png"
},
["8019"] = {
id = 8019,
name = "Cleanse",
strengthPerLevel = 0.1,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8020"] = {
id = 8020,
name = "Skirmishing Stance",
strengthPerLevel = 15,
relatedSkills = { "defense", "range" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8021"] = {
id = 8021,
name = "Sniping Stance",
strengthPerLevel = 25,
relatedSkills = { "range" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8022"] = {
id = 8022,
name = "Enraged",
strengthPerLevel = 0.15,
relatedSkills = { "combat" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8023"] = {
id = 8023,
name = "Warded",
strengthPerLevel = 15,
relatedSkills = { "defense" },
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8024"] = {
id = 8024,
name = "Pending Resurrection",
strengthPerLevel = 1,
relatedSkills = { "combat", "constitution" },
ignoreProlonging = true,
buffIcon = "/images/magic/buffs/protection_icon.png"
},
["8025"] = {
id = 8025,
name = "Enhanced Stun",
strengthPerLevel = 1,
relatedSkills = { "attack" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/accuracy_icon.png"
},
["8026"] = {
id = 8026,
name = "Enhanced Silence",
strengthPerLevel = 1,
relatedSkills = { "combat", "attack" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/accuracy_icon.png"
},
["8027"] = {
id = 8027,
name = "Enhanced Vulnerability",
strengthPerLevel = 0.1,
relatedSkills = { "constitution" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/accuracy_icon.png"
},
["8028"] = {
id = 8028,
name = "Marked",
strengthPerLevel = 0.5,
relatedSkills = { "constitution" },
ignoreProlonging = true,
isDebuff = true,
buffIcon = "/images/magic/buffs/accuracy_icon.png"
},
["9000"] = {
id = 9000,
name = "Regeneration",
strengthPerLevel = 1,
relatedSkills = { "constitution" },
ignoreProlonging = true,
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/overhealing_icon.png"
},
["9001"] = {
id = 9001,
name = "Poisoned",
strengthPerLevel = 1,
relatedSkills = { "constitution" },
ignoreProlonging = true,
isDebuff = true,
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/overhealing_icon.png"
},
["9500"] = {
id = 9500,
name = "Danger Zone",
strengthPerLevel = 0.5,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
buffIcon = "/images/magic/buffs/weakening_icon.png"
},
["9501"] = {
id = 9501,
name = "Calming Aura",
strengthPerLevel = 0.5,
relatedSkills = { "gathering", "mining", "foraging", "fishing" },
buffIcon = "/images/magic/buffs/weakening_icon.png"
},
["10001"] = {
id = 10001,
name = "Master Fisherman",
strengthPerLevel = 0.15,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 0
} },
relatedSkills = { "fishing" },
statBuffs = { {
path = "fishing",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
}, {
path = "fishingBaitPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
}, {
path = "fishingRarityPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
}, {
path = "fishingReelPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10002"] = {
id = 10002,
name = "Legendary Angler",
strengthPerLevel = 0.3,
setRequirements = { {
count = 4,
strength = 1
} },
relatedSkills = { "fishing" },
statBuffs = { {
path = "fishing",
additivePerLevel = 0,
multiplicativePerLevel = 0.3
}, {
path = "fishingBaitPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.3
}, {
path = "fishingRarityPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.3
}, {
path = "fishingReelPower",
additivePerLevel = 0,
multiplicativePerLevel = 0.3
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10003"] = {
id = 10003,
name = "Jolly",
strengthPerLevel = 1,
relatedSkills = { "total" },
ignoredByMadness = true,
buffIcon = "/images/magic/buffs/fishing.png"
},
["10004"] = {
id = 10004,
name = "Phoenix's Flame",
strengthPerLevel = 0.25,
relatedSkills = { "combat", "constitution" },
setRequirements = { {
count = 1,
strength = 1
} },
buffIcon = "/images/magic/buffs/pyromancy.png"
},
["10005"] = {
id = 10005,
name = "Master Forager",
strengthPerLevel = 0.2,
relatedSkills = { "foraging" },
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 0
} },
statBuffs = { {
path = "foraging",
additivePerLevel = 0,
multiplicativePerLevel = 0.2
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10006"] = {
id = 10006,
name = "Legendary Lumberjack",
strengthPerLevel = 0.4,
setRequirements = { {
count = 4,
strength = 1
} },
relatedSkills = { "foraging" },
statBuffs = { {
path = "foraging",
additivePerLevel = 0,
multiplicativePerLevel = 0.4
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10007"] = {
id = 10007,
name = "Master Miner",
strengthPerLevel = 0.2,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 0
} },
relatedSkills = { "mining" },
statBuffs = { {
path = "mining",
additivePerLevel = 0,
multiplicativePerLevel = 0.2
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10008"] = {
id = 10008,
name = "Legendary Rockbreaker",
strengthPerLevel = 0.4,
setRequirements = { {
count = 4,
strength = 1
} },
relatedSkills = { "mining" },
statBuffs = { {
path = "mining",
additivePerLevel = 0,
multiplicativePerLevel = 0.4
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10009"] = {
id = 10009,
name = "Protective Plates",
strengthPerLevel = 0.075,
setRequirements = { {
count = 2,
strength = 1
}, {
count = 3,
strength = 2
}, {
count = 4,
strength = 3
} },
relatedSkills = { "defense" },
statBuffs = { {
path = "armor.protection",
additivePerLevel = 0,
multiplicativePerLevel = 0.075
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10010"] = {
id = 10010,
name = "Ranger's Grace",
strengthPerLevel = 0.1,
setRequirements = { {
count = 2,
strength = 1
}, {
count = 4,
strength = 2
} },
relatedSkills = { "defense", "range" },
statBuffs = { {
path = "armor.agility",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10011"] = {
id = 10011,
name = "Magical Barriers",
strengthPerLevel = 0.1,
setRequirements = { {
count = 2,
strength = 1
}, {
count = 4,
strength = 2
} },
relatedSkills = { "defense", "magic" },
statBuffs = { {
path = "armor.resistance",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10012"] = {
id = 10012,
name = "Dextrous Shot",
strengthPerLevel = 0.025,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 2
} },
relatedSkills = { "range" },
statBuffs = { {
path = "weapon.dexterity",
additivePerLevel = 0,
multiplicativePerLevel = 0.025
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10013"] = {
id = 10013,
name = "Wizard's Wisdom",
strengthPerLevel = 0.025,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 2
} },
relatedSkills = { "magic" },
statBuffs = { {
path = "weapon.intellect",
additivePerLevel = 0,
multiplicativePerLevel = 0.025
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10014"] = {
id = 10014,
name = "Elder's Elegance",
strengthPerLevel = 0.15,
setRequirements = { {
count = 4,
strength = 2
}, {
count = 5,
strength = 3
} },
relatedSkills = { "magic", "range", "defense" },
statBuffs = { {
path = "defensiveDamageAffinity.Nature",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
}, {
path = "offensiveDamageAffinity.Nature",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
}, {
path = "offensiveAccuracyAffinityRating.Range",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
}, {
path = "offensiveAccuracyAffinityRating.Magic",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
}, {
path = "offensiveAccuracyAffinityRating.Range",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
}, {
path = "armor.agility",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10015"] = {
id = 10015,
name = "Valley's Vigor",
strengthPerLevel = 0.15,
setRequirements = { {
count = 2,
strength = 1
} },
relatedSkills = { "constitution", "defense" },
statBuffs = { {
path = "armor.stamina",
additivePerLevel = 0,
multiplicativePerLevel = 0.15
}, {
path = "defensiveDamageAffinity.Ice",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
}, {
path = "defensiveDamageAffinity.Fire",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
}, {
path = "defensiveDamageAffinity.Nature",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10016"] = {
id = 10016,
name = "Nigh-Invincibility",
strengthPerLevel = 0.1,
setRequirements = { {
count = 6,
strength = 1
} },
relatedSkills = { "constitution", "defense" },
statBuffs = { {
path = "armor.stamina",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
}, {
path = "armor.resistance",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
}, {
path = "armor.protection",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10017"] = {
id = 10017,
name = "Bestial Fury",
strengthPerLevel = 0.1,
setRequirements = { {
count = 2,
strength = 1
}, {
count = 3,
strength = 2
} },
relatedSkills = { "combat", "defense", "strength" },
statBuffs = { {
path = "armor.agility",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10018"] = {
id = 10018,
name = "Gargoyle's Gift",
strengthPerLevel = 0.03,
setRequirements = { {
count = 2,
strength = 1
}, {
count = 3,
strength = 2
}, {
count = 4,
strength = 3
}, {
count = 5,
strength = 4
}, {
count = 6,
strength = 5
}, {
count = 7,
strength = 6
} },
relatedSkills = { "strength" },
statBuffs = { {
path = "weapon.strength",
additivePerLevel = 0,
multiplicativePerLevel = 0.03
}, {
path = "offensiveDamageAffinity.Melee",
additivePerLevel = 0,
multiplicativePerLevel = 0.02
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10019"] = {
id = 10019,
name = "Nature's Blessing",
strengthPerLevel = 0.25,
setRequirements = { {
count = 3,
strength = 1
} },
relatedSkills = { "magic", "constitution" },
statBuffs = { {
path = "defensiveDamageAffinity.Nature",
additivePerLevel = 0,
multiplicativePerLevel = 0.25
}, {
path = "offensiveDamageAffinity.Nature",
additivePerLevel = 0,
multiplicativePerLevel = 0.25
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10020"] = {
id = 10020,
name = "Living Death",
strengthPerLevel = 0.33,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 5,
strength = 2
} },
relatedSkills = { "magic" },
statBuffs = { {
path = "defensiveDamageAffinity.Poison",
additivePerLevel = 0,
multiplicativePerLevel = 0.33
}, {
path = "offensiveDamageAffinity.Poison",
additivePerLevel = 0,
multiplicativePerLevel = 0.33
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10021"] = {
id = 10021,
name = "Royal Reverence",
strengthPerLevel = 0.025,
setRequirements = { {
count = 2,
strength = 4
}, {
count = 3,
strength = 6
} },
relatedSkills = { "range", "defense" },
statBuffs = { {
path = "armor.agility",
additivePerLevel = 0,
multiplicativePerLevel = 0.05
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10022"] = {
id = 10022,
name = "Infernal Strength",
strengthPerLevel = 0.1,
setRequirements = { {
count = 3,
strength = 1
} },
relatedSkills = { "strength" },
statBuffs = { {
path = "weapon.strength",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
}, {
path = "offensiveDamageAffinity.Fire",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
}, {
path = "defensiveDamageAffinity.Fire",
additivePerLevel = 0,
multiplicativePerLevel = 0.1
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10023"] = {
id = 10023,
name = "Master Smith",
strengthPerLevel = 0.2,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 0
} },
relatedSkills = { "smithing" },
statBuffs = { {
path = "smithing",
additivePerLevel = 0,
multiplicativePerLevel = 0.2
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10024"] = {
id = 10024,
name = "Legendary Smith",
strengthPerLevel = 0.4,
setRequirements = { {
count = 4,
strength = 1
} },
relatedSkills = { "smithing" },
statBuffs = { {
path = "smithing",
additivePerLevel = 0,
multiplicativePerLevel = 0.4
} },
buffIcon = "/images/magic/buffs/fishing.png"
},
["10025"] = {
id = 10025,
name = "Master Chef (Set)",
strengthPerLevel = 0.2,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 0
} },
relatedSkills = { "cooking" },
statBuffs = { {
path = "cooking",
additivePerLevel = 0,
multiplicativePerLevel = 0.2
} },
buffIcon = "/images/magic/buffs/cooking_icon.png"
},
["10026"] = {
id = 10026,
name = "Legendary Chef",
strengthPerLevel = 0.4,
setRequirements = { {
count = 4,
strength = 1
} },
relatedSkills = { "cooking" },
statBuffs = { {
path = "cooking",
additivePerLevel = 0,
multiplicativePerLevel = 0.4
} },
buffIcon = "/images/magic/buffs/cooking_icon.png"
},
["10027"] = {
id = 10027,
name = "Master Runecrafter",
strengthPerLevel = 0.2,
setRequirements = { {
count = 3,
strength = 1
}, {
count = 4,
strength = 0
} },
relatedSkills = { "runecrafting" },
statBuffs = { {
path = "runecrafting",
additivePerLevel = 0,
multiplicativePerLevel = 0.2
} },
buffIcon = "/images/magic/buffs/runecrafting_icon.png"
},
["10028"] = {
id = 10028,
name = "Legendary Runecrafter",
strengthPerLevel = 0.4,
setRequirements = { {
count = 4,
strength = 1
} },
relatedSkills = { "runecrafting" },
statBuffs = { {
path = "runecrafting",
additivePerLevel = 0,
multiplicativePerLevel = 0.4
} },
buffIcon = "/images/magic/buffs/runecrafting_icon.png"
},
["99999999"] = {
id = 99999999,
name = "Affix",
strengthPerLevel = 1,
relatedSkills = { "total" },
ignoredByMadness = true,
buffIcon = "/images/misc/unknown_buff.png"
}
}