此模块的文档可以在模块:PlayStatus/doc创建
local p = {}
function p.getPlayStatus(type)
mw.log(type)
if (type == 'DEEP') then
return '深度'
else if (type == 'FINISH') then
return '通关'
else if (type == 'ABANDON') then
return '弃坑'
else
return '未定义'..type
end
end
end
end
return p