模块:角色技能

可在模块:角色技能/doc创建此模块的帮助文档

local p = {}
-- 加载数据
local db_cn = mw.loadData('模块:角色技能数据中文')
local dataList_cn = db_cn.char_skill_data
local db_jp = mw.loadData('模块:角色技能数据日文')
local dataList_jp = db_jp.char_skill_data

-- 手搓split
local function split(input, delimiter)
    local result = {}
    for match in (input .. delimiter):gmatch("(.-)" .. delimiter) do
        table.insert(result, match)
    end
    return result
end

local function skillBox(skill)
    -- 状态图标
    if skill.skill_tag2 then
        local skillTags2 = split(skill.skill_tag2, ",")
        tag2Html = mw.html.create()
        tag2Html:tag('center')
        for _, tagicon2 in ipairs(skillTags2) do
            tag2Html:wikitext(string.format('[[File:icon-%s.png|20px]]', tagicon2))
        end
    end

    -- 特性图标
    if skill.skill_tag then
        local skillTags = split(skill.skill_tag, ",")
        tagHtml = mw.html.create()
        for _, tagicon in ipairs(skillTags) do
            tagHtml:wikitext(string.format('[[File:icon-%s.png|32px]]', tagicon))
        end
    end

    -- SP
    if skill.skill_sp then
        spHtml = mw.html.create()
        spHtml:tag('div')
            :addClass('flex-center text-cen sk-sp'):attr('style', 'border: 1px solid #d0bca7; background-color: #d0bca7; border-radius: 0.5em; padding: 0 15px;')
            :wikitext('消耗精力&nbsp;&nbsp;&nbsp;&nbsp;<span style="font-size:1.2rem;">' .. skill.skill_sp .. '</span>')
        :done() 
    end

    -- 技能BOOST
    if skill.skill_boost then
        boostHtml = mw.html.create()
        boostHtml:tag('tr')
            :tag('td'):attr('style', 'width: 130px; font-weight: bold;')
                :wikitext('【BP加成效果】')
            :done()
            :tag('td')
                :wikitext(skill.skill_boost)
            :done()
        :done()
    end

    -- 技能强化效果
    if skill.skill_up_content then
        upcontentHtml = mw.html.create()
        upcontentHtml:tag('tr')
            :tag('td'):attr('style', 'font-weight: bold;')
                :wikitext('【能力强化效果】')
            :done()
            :tag('td')
                :tag('li'):wikitext(skill.skill_up_content):done()
                -- 下面的upcontentHtml不能删
                if skill.skill_up_content2 then
                    upcontentHtml:tag('li'):wikitext(skill.skill_up_content2):done()
                end
            upcontentHtml:done()
        upcontentHtml:done()
    end

    -- 技能强化等级
    if skill.skill_up then
        upHtml = mw.html.create()
        upHtml:tag('tr')
            :tag('td'):attr('style', 'font-weight: bold;')
                :wikitext('【强化学习条件】')
            :done()
            :tag('td')
                :tag('li'):wikitext('角色等级达到'.. skill.skill_up .. '以上,并习得技能' .. skill.skill_name):done()
                -- 下面的upHtml不能删
                if skill.skill_up2 then
                    upHtml:tag('li'):wikitext('角色等级达到'.. skill.skill_up2 .. '以上,并习得技能' .. skill.skill_name):done()
                end
            upHtml:done()
        upHtml:done()
    end

    -- 展示内容
    local skillBoxDiv = mw.html.create()

    skillBoxDiv:tag('div'):addClass('description-container'):attr('style', 'margin: 15px 0 15px 0; padding: 20px 10px; background-color: #fbf9f1;')
        :tag('div'):addClass('description-display width-5 hidden-xs'):attr('style', 'vertical-align: top; padding: 10px 5px 0 0;')
            :node(tagHtml) -- 特性图标
        :done()

        :tag('div'):addClass('description-display')
            :tag('div'):addClass('flex-row-btw')
                :tag('div'):addClass('flex-center text-left'):attr('style', 'padding: 5px;')
                    :tag('span'):attr('style', 'font-size: 1.3rem; font-weight: bold;')
                        :wikitext(skill.skill_name)
                    :node(tag2Html) -- 状态图标
                :done()
            :done()
            :node(spHtml) -- SP
        :done()

        :tag('table'):addClass('w-100 text-left'):attr('style', 'text-align: left;')
            :tag('tr')
                :tag('td')
                    :attr('colspan', '2')
                    :attr('style', 'padding: 5px 0px 15px 5px;')
                    :wikitext(skill.skill_content)
                :done()
            :done()
            :node(boostHtml) -- BP
            :node(upcontentHtml) -- 强化条件
            :node(upHtml) -- 强化等级
        :done()

    :done()
    return skillBoxDiv
end

p["角色技能"] = function(frame)
    local query_num = frame.args['角色序号']
    local query_type = frame.args['查询类型']
    local query_lang = frame.args['查询语言'] or ""

    local html = mw.html.create()

    -- 提取数据
	local dataList = (query_lang == "cn" or query_lang == "国服" or query_lang == "中文") and dataList_cn or dataList_jp

    for _, ownerList in ipairs(dataList) do
        if query_num == ownerList.owner_order then
            for _, skill in ipairs(ownerList.owner_skill) do
                if skill.skill_type == query_type and skill.skill_parent == nil then
                    html:node(skillBox(skill))
                end
            end
        end
    end

    return tostring(html)
end

return p