模块:ItemInfo:修订间差异
跳转到导航
跳转到搜索
添加饰品列表函数
(添加武器支持) |
(添加饰品列表函数) |
||
第222行: | 第222行: | ||
for i = 1, 35 do | for i = 1, 35 do | ||
table.insert(result, p.at1EquipInfo('武器', i)) | table.insert(result, p.at1EquipInfo('武器', i)) | ||
end | |||
return table.concat(result, '\n') | |||
end | |||
function p.listAccessoriesInAt1() | |||
result = {} | |||
for i = 1, 20 do | |||
table.insert(result, p.at1EquipInfo('饰品', i)) | |||
end | end | ||
return table.concat(result, '\n') | return table.concat(result, '\n') |