LibReforgingInfo-1.0

This project is abandoned and its default file will likely not work with the most recent version of World of Warcraft. Whether this project is out of date or its author has marked it as abandoned, this project is no longer maintained.

LibReforgingInfo-1.0 provides information about the reforging applied to items, i.e. which stat was converted into which stat.

LibReforgingInfo-1.0 API

:GetReforgeID(itemString)

Returns

The reforging ID applied to the item.

Arguments

itemString
Item string or item link

:IsItemReforged(itemString)

Returns

true if the item is reforged, false otherwise.

Arguments

itemString
Item string or item link

:GetReforgedStatIDs(id)

Returns

Returns nil, nil if the item is not reforged. Otherwise, returns two numbers for the changed stats. The first number is the ID of the stat which was decreased, the second number is the ID of the stat that was increased. See below for a list of stat ids.

Arguments

id
Reforging ID (obtained by GetReforgeID)

:GetReforgedStatNames(id)

Returns

Returns nil, nil if the item is not reforged. Otherwise, returns two strings - the first is the name of the stat which was decreased, the second string is the name of the stat that was increased. The stat names are automatically localized.

Arguments

id
Reforging ID (obtained by GetReforgeID)

:GetReforgedStatShortNames(id)

Returns

Same as GetReforgedStatNames, but shorter names (e.g. "Mastery" instead of "Mastery rating").

Arguments

id
Reforging ID (obtained by GetReforgeID)

Stat IDs

As returned by GetReforgedStatIDs.

IDStat
1Spirit
2Dodge rating
3Parry rating
4Hit rating
5Crit rating
6Haste rating
7Expertise rating
8Mastery rating

Usage example

local ReforgingInfo = LibStub("LibReforgingInfo-1.0")
local item = GetInventoryItemLink("player", 1)
if ReforgingInfo:IsItemReforged(item) then
    DEFAULT_CHAT_FRAME:AddMessage(item .. " is reforged:")
    local minus, plus = ReforgingInfo:GetReforgedStatNames(ReforgingInfo:GetReforgeID(item))
    DEFAULT_CHAT_FRAME:AddMessage(minus .. " -> " .. plus)
end

Comments

Posts Quoted:
Reply
Clear All Quotes

About This Project

Categories

Members

Recent Files

WoW Retail