打开/关闭搜索
搜索
打开/关闭菜单
5
18
12
799
TFLS Wiki
导航
首页
最近更改
随机页面
MediaWiki帮助
特殊页面
上传文件
notifications
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
个人工具
创建账号
登录
查看“模块:StarSign”的源代码
来自TFLS Wiki
查看
阅读
查看源代码
查看历史
associated-pages
模块
讨论
更多操作
←
模块:StarSign
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
此页面已被保护以防止编辑或其他操作。
本页面已经受到保护,不能编辑,因为它被嵌入于以下被“连锁保护”的页面:
模板:Infobox/Person
模板:Birthday
模板:Utils/StarSign
您可以查看和复制此页面的源代码。
local p = {} local getArgs = require('Module:Arguments').getArgs function p.getStar(frame) local args = getArgs(frame) return p._getStar(args) end function p._getStar(args) args[1] = tonumber(args[1]) args[2] = tonumber(args[2]) if args[1] == 1 then if args[2] <= 19 then return '摩羯座' else return '水瓶座' end elseif args[1] == 2 then if args[2] <= 18 then return '水瓶座' else return '双鱼座' end elseif args[1] == 3 then if args[2] <= 20 then return '双鱼座' else return '白羊座' end elseif args[1] == 4 then if args[2] <= 19 then return '白羊座' else return '金牛座' end elseif args[1] == 5 then if args[2] <= 20 then return '金牛座' else return '双子座' end elseif args[1] == 6 then if args[2] <= 21 then return '双子座' else return '巨蟹座' end elseif args[1] == 7 then if args[2] <= 22 then return '巨蟹座' else return '狮子座' end elseif args[1] == 8 then if args[2] <= 22 then return '狮子座' else return '处女座' end elseif args[1] == 9 then if args[2] <= 22 then return '处女座' else return '天秤座' end elseif args[1] == 10 then if args[2] <= 23 then return '天秤座' else return '天蝎座' end elseif args[1] == 11 then if args[2] <= 22 then return '天蝎座' else return '射手座' end elseif args[1] == 12 then if args[2] <= 21 then return '射手座' else return '摩羯座' end else return '错误!无法计算星座' end end return p
本页使用的模板:
模块:StarSign/doc
(
查看源代码
)
返回
模块:StarSign
。