添加天地烘炉读表设置
parent
c71616be27
commit
fbf47dbd61
|
|
@ -28,6 +28,25 @@ function this.GetTailsmanSoulDatas(qua)
|
|||
return datas
|
||||
end
|
||||
|
||||
--法宝之魂界面列表数据
|
||||
function this.GetTailsmanSoulDatas1(qua)
|
||||
local datas = this.GetTailsmanSoulDatas(qua)
|
||||
local datas1 = {}
|
||||
for i = 1,#datas do
|
||||
local isup = false
|
||||
for j = 1,#datas[i].trumpList do
|
||||
if datas[i].trumpList[j].config.CanUp and datas[i].trumpList[j].config.CanUp == 1 then
|
||||
isup = true
|
||||
break
|
||||
end
|
||||
end
|
||||
if isup then
|
||||
table.insert(datas1,datas[i])
|
||||
end
|
||||
end
|
||||
return datas1
|
||||
end
|
||||
|
||||
--根据法宝之魂id 获取 法宝之魂数据
|
||||
function this.GetTailsmanSoulDataById(id)
|
||||
local skillList = {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue