2,544
个编辑
小 (。) |
小 (修复) |
||
第61行: | 第61行: | ||
end | end | ||
function p.world() | function p.world(frame) | ||
local world = mw.title.new "世界模式地图详表 (移动版)":getContent() | local world = mw.title.new("世界模式地图详表 (移动版" .. frame.args[1] .. ")"):getContent() | ||
local | local res = {} | ||
for name, wtb in world:gmatch "== *([^B].-) *==[^={]+(%b{})" do | |||
for name, wtb in world:gmatch "== *(.-) *==[^={]+(%b{})" do | |||
local tot | local tot | ||
for stair, reward in wtb:gmatch "| *(%d+)[0-9()%-| ]+(%b[])" do | for stair, reward in wtb:gmatch "| *(%d+)[0-9()%-| ]+(%b[])" do | ||
第76行: | 第73行: | ||
end | end | ||
end | end | ||
return table.concat( | return table.concat(res, "\n") | ||
end | end | ||
个编辑