Module:GolbinRaid: Difference between revisions
From Melvor Idle
No edit summary |
(Fix getRaidModifierList()) |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local Shared = require('Module:Shared') | local Shared = require('Module:Shared') | ||
local GameData = require('Module:GameData') | local GameData = require('Module:GameData') | ||
local Modifiers = require('Module:Modifiers') | |||
local Icons = require('Module:Icons') | local Icons = require('Module:Icons') | ||
local Items = require('Module:Items') | local Items = require('Module:Items') | ||
Line 85: | Line 85: | ||
function p.getRaidModifierList() | function p.getRaidModifierList() | ||
local modList = {} | local modList = {} | ||
for i, | for i, randomMod in ipairs(GameData.rawData.golbinRaid.randomModifiers) do | ||
local baseName | local baseName = randomMod.key | ||
local modDefn = Modifiers.getModifierByAlias(baseName) | |||
local modID = modDefn.mod.id | |||
local aliasData = Shared.clone(modDefn.alias) | |||
aliasData.key = nil | |||
aliasData.value = 5 * (randomMod.multiplier or 1) | |||
local modData = {} | |||
modData[modID] = aliasData | |||
modList[ | |||
if modList[modID] == nil then | |||
modList[modID] = { ["ord"] = i, modText = {} } | |||
end | end | ||
table.insert(modList[modID].modText, Modifiers.getModifiersText(modData, false)) | |||
end | end | ||
Line 109: | Line 110: | ||
local sortFunc = function(t, a, b) return t[a].ord < t[b].ord end | local sortFunc = function(t, a, b) return t[a].ord < t[b].ord end | ||
for baseName, modDet in Shared.spairs(modList, sortFunc) do | for baseName, modDet in Shared.spairs(modList, sortFunc) do | ||
local modText = | local modText = table.concat(modDet.modText, '<br>') | ||
resultTable:tag('tr') | resultTable:tag('tr') | ||
:tag('td'):wikitext(modText):done() | :tag('td'):wikitext(modText):done() |
Latest revision as of 23:28, 21 July 2024
Documentation for this module may be created at Module:GolbinRaid/doc
local p = {}
local Shared = require('Module:Shared')
local GameData = require('Module:GameData')
local Modifiers = require('Module:Modifiers')
local Icons = require('Module:Icons')
local Items = require('Module:Items')
local Num = require('Module:Number')
function p.getCrateContents(frame)
local weightDesc = {
[1] = 'Bugged Rare',
[4] = 'Ultra Rare',
[10] = 'Rare',
[20] = 'Uncommon',
[35] = 'Common'
}
local resultTable = mw.html.create('table')
resultTable:addClass('wikitable'):addClass('stickyHeader'):addClass('sortable')
resultTable:tag('tr'):addClass('headerRow-0')
:tag('th'):attr('colspan', 2):wikitext('Item'):done()
:tag('th'):attr('colspan', 2):wikitext('Rarity'):done()
:tag('th'):wikitext('Slots'):done()
:tag('th'):wikitext('Description'):done()
local sortFunc = function(t, a, b)
if t[a].weight == t[b].weight then
return t[a].itemID < t[b].itemID
else
return t[a].weight > t[b].weight
end
end
for i, crateEntry in Shared.spairs(GameData.rawData.golbinRaid.crateItems, sortFunc) do
local item = Items.getItemByID(crateEntry.itemID)
if item ~= nil then
-- Generate slot list text
local slotText = {}
for j, slot in ipairs(item.validSlots) do
if slot == 'Weapon' and item.attackType ~= nil then
local iconType = nil
if item.attackType ~= 'melee' then
iconType = 'skill'
end
table.insert(slotText, slot .. ' (' .. Icons.Icon({Shared.titleCase(item.attackType), type=iconType, notext=true}) .. ')')
else
table.insert(slotText, slot)
end
end
-- Generate description text
local descText = ''
if item.description ~= nil then
-- If the item has a description, simply use that
descText = item.description
elseif type(item.specialAttacks) == 'table' then
-- If the item has special attacks, use those
local spAttText = {}
for j, spAttID in ipairs(item.specialAttacks) do
local spAtt = GameData.getEntityByID('attacks', spAttID)
if spAtt ~= nil then
table.insert(spAttText, '<b>' .. spAtt.name .. ' (' .. Num.round(spAtt.defaultChance, 2, 0) .. '%)</b> - ' .. spAtt.description)
end
end
descText = table.concat(spAttText, '<br/>')
end
-- Build row & append to table
local tr = mw.html.create('tr')
tr:tag('td'):wikitext(Icons.Icon({item.name, type='item', notext=true}))
tr:tag('td'):wikitext('[[' .. item.name .. ']]')
tr:tag('td')
:attr('data-sort-value', crateEntry.weight)
:wikitext(weightDesc[crateEntry.weight] or '')
tr:tag('td'):wikitext(crateEntry.weight)
tr:tag('td'):wikitext(table.concat(slotText, ', '))
tr:tag('td'):wikitext(descText)
resultTable:node(tr)
end
end
return tostring(resultTable)
end
function p.getRaidModifierList()
local modList = {}
for i, randomMod in ipairs(GameData.rawData.golbinRaid.randomModifiers) do
local baseName = randomMod.key
local modDefn = Modifiers.getModifierByAlias(baseName)
local modID = modDefn.mod.id
local aliasData = Shared.clone(modDefn.alias)
aliasData.key = nil
aliasData.value = 5 * (randomMod.multiplier or 1)
local modData = {}
modData[modID] = aliasData
if modList[modID] == nil then
modList[modID] = { ["ord"] = i, modText = {} }
end
table.insert(modList[modID].modText, Modifiers.getModifiersText(modData, false))
end
local resultTable = mw.html.create('table')
resultTable
:addClass('wikitable'):addClass('stickyHeader'):addClass('sortable')
:addClass('mw-collapsible'):addClass('mw-collapsed')
resultTable:tag('tr'):addClass('headerRow-0')
:tag('th'):attr('style', 'min-width:400px'):wikitext('Modifier'):done()
local sortFunc = function(t, a, b) return t[a].ord < t[b].ord end
for baseName, modDet in Shared.spairs(modList, sortFunc) do
local modText = table.concat(modDet.modText, '<br>')
resultTable:tag('tr')
:tag('td'):wikitext(modText):done()
end
return tostring(resultTable)
end
return p