本WIKI编辑权限开放,正由 恋与深空Evol攻略组搭建基础框架ing,期待更多猎人加入WIKI建设!
反馈留言收藏方法加入我们

全站通知:

模块:单抽价档位

来自恋与深空WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

此模块的文档可以在模块:单抽价档位/doc创建

local p = {}

function p.classify(frame)
    local price = tonumber(frame.args[1]) or 0
    --月卡:1.36r/抽
    --密约-68档位:5.67r/抽
    --月卡-鎏金珍贵+璀璨(连购7天):6.43r/抽
    --直购首充:7.5r/抽
    --首充加赠:12.03r/抽
    if price <= 0 then
        return 0
    elseif price <= 1.36 then
        return 1
    elseif price > 1.36 and price <= 5.67 then
        return 2
    elseif price > 5.67 and price <= 6.43 then
        return 3
    elseif price > 6.43 and price <= 7.5 then
        return 4
    elseif price > 7.5 and price <= 12.03 then
        return 5
    else 
        return 6
    end
end

return p