17,097
edits
(Add icon/link overrides for new Golbin Raid purchases) |
(_getShopTable: Add override support for purchases with increasing costs) |
||
Line 24: | Line 24: | ||
["Increase Prayer Level"] = { icon = {'Prayer', 'skill'}, link = nil }, | ["Increase Prayer Level"] = { icon = {'Prayer', 'skill'}, link = nil }, | ||
["Increase Prayer Points gained per Wave Completion"] = { icon = {'Prayer', 'skill'}, link = nil }, | ["Increase Prayer Points gained per Wave Completion"] = { icon = {'Prayer', 'skill'}, link = nil }, | ||
["Faster Golbin Spawns"] = { icon = {'Timer', nil}, link = nil}, | ["Faster Golbin Spawns"] = { icon = {'Timer', nil}, link = nil, incCost = true}, | ||
["Golbin Crate"] = { icon = {'Golbin Crate', 'upgrade'}, link = nil} | ["Golbin Crate"] = { icon = {'Golbin Crate', 'upgrade'}, link = nil, incCost = true} | ||
} | } | ||
Line 389: | Line 389: | ||
end | end | ||
if purchOverride.cost ~= nil then costString = purchOverride.cost end | if purchOverride.cost ~= nil then costString = purchOverride.cost end | ||
if purchOverride.incCost then | |||
costString = costString .. '<br/>+' .. costString .. ' for each purchase' | |||
end | |||
end | end | ||