模块:勋章:修订间差异

跳到导航 跳到搜索
添加2,593字节 、​ 2022年6月7日 (星期二)
已还原Fezz240对话)的编辑至最后由攸萨修订的版本
无编辑摘要
(已还原Fezz240对话)的编辑至最后由攸萨修订的版本)
标签回退
 
(未显示2个用户的15个中间版本)
第54行: 第54行:
             :done()
             :done()
     end
     end
   
    if args['price' .. awardNum] then
        local price = infoTable:tag('tr')
        price
            :tag('th')
            :wikitext('价格')
            :done()
            :tag('td')
            :wikitext(args['price' .. awardNum])
            :done()
    end
    if args['Purchase' .. awardNum] then
        local Purchase = infoTable:tag('tr')
        Purchase
            :tag('th')
            :wikitext('购买条件')
            :done()
            :tag('td')
            :wikitext(args['Purchase' .. awardNum])
            :done()
    end
    if args['Effect' .. awardNum] then
        local Effect = infoTable:tag('tr')
        Effect
            :tag('th')
            :wikitext('效果')
            :done()
            :tag('td')
            :wikitext(args['Effect' .. awardNum])
            :done()
    end 
     if args['EXP' .. awardNum] then
     if args['EXP' .. awardNum] then
         local EXP = infoTable:tag('tr')
         local EXP = infoTable:tag('tr')
第62行: 第93行:
             :tag('td')
             :tag('td')
             :wikitext(args['EXP' .. awardNum])
             :wikitext(args['EXP' .. awardNum])
            :done()
    end   
    if args['upgrade' .. awardNum] then
        local upgrade = infoTable:tag('tr')
        upgrade
            :tag('th')
            :wikitext('升级说明')
            :done()
            :tag('td')
            :wikitext(args['upgrade' .. awardNum])
            :done()
    end
    if args['requirements' .. awardNum] then
        local requirements = infoTable:tag('tr')
        requirements
            :tag('th')
            :wikitext('升级要求')
            :done()
            :tag('td')
            :wikitext(args['requirements' .. awardNum])
            :done()
    end
    if args['ability' .. awardNum] then
        local ability = infoTable:tag('tr')
        ability
            :tag('th')
            :wikitext('升级能力')
            :done()
            :tag('td')
            :wikitext(args['ability' .. awardNum])
            :done()
    end
        if args['ranking' .. awardNum] then
        local ranking = infoTable:tag('tr')
        ranking
            :tag('th')
            :wikitext('名次')
            :done()
            :tag('td')
            :wikitext(args['ranking' .. awardNum])
             :done()
             :done()
     end
     end
第72行: 第143行:
             :tag('td')
             :tag('td')
             :wikitext(args['author' .. awardNum])
             :wikitext(args['author' .. awardNum])
            :done()
    end
        if args['inspiration' .. awardNum] then
        local inspiration = infoTable:tag('tr')
        inspiration
            :tag('th')
            :wikitext('灵感')
            :done()
            :tag('td')
            :wikitext(args['inspiration' .. awardNum])
            :done()
        end
    if args['testimonials' .. awardNum] then
        local testimonials = infoTable:tag('tr')
        testimonials
            :tag('th')
            :wikitext('感言')
            :done()
            :tag('td')
            :wikitext(args['testimonials' .. awardNum])
             :done()
             :done()
     end
     end
第84行: 第175行:
     end
     end


   
     return awardDiv:node(infoTable)
     return awardDiv:node(infoTable)


导航菜单