置顶公告:【置顶】关于临时开启评论区所有功能的公告(2022.10.22) | 【置顶】关于本站Widget恢复使用的公告
  • 你好~!欢迎来到萌娘百科镜像站!如需查看或编辑,请联系本站管理员注册账号。
  • 本镜像站和其他萌娘百科的镜像站无关,请注意分别。

Module:Sandbox/Greykid/psk

猛汉♂百科,万男皆可猛的百科全书!转载请标注来源页面的网页链接,并声明引自猛汉百科。内容不可商用。
跳到导航 跳到搜索
Template-info.svg 模块文档  [创建] [刷新]
  1. local getArgs = require('Module:Arguments').getArgs
  2. local getGames = require('Module:psk/Gamedata')
  3. local p = {}
  4. local function makeInvokeFunction(funcName)
  5. return function (frame)
  6. local args = getArgs(frame, {parentOnly = true})
  7. return p[funcName](args)
  8. end
  9. end
  10. local styles = {
  11. ['skill'] = '\n|-\n!style="background:#000;color:#fff"|',
  12. ['skillc'] = '\n!style="background:#000;color:#fff"|',
  13. ['skill3'] = '\n!style="background:#000;color:#fff;',
  14. ['skill3m'] = '\n!style="background:transparent"|',
  15. ['cost1'] = '\n|style="background:#222"|',
  16. ['cost2'] = '\n|style="background:#282828"|',
  17. ['effect1'] = '\n|style="background:#222;text-align:left;padding-left:5px"|',
  18. ['effect2'] = '\n|style="background:#282828;text-align:left;padding-left:5px"|',
  19. ['effect1p'] = '\n|colspan=2 style="background:#222;text-align:left;padding-left:5px"|',
  20. ['effect2p'] = '\n|colspan=2 style="background:#282828;text-align:left;padding-left:5px"|',
  21. ['order'] = '\n|style="background:#000;color:#fff;text-align:left;padding-left:5px"|',
  22. ['table2h'] = '\n{|width="100%" class="customtable ',
  23. ['table2'] = '\n{|width="100%" class="customtable"',
  24. ['table2b'] = '\n{|cellpadding=0 cellspacing=0 style="width:100%;background:transparent" ',
  25. ['statlow'] = '\n|style="background:#000;color:#fff"|',
  26. ['statlow2'] = '\n|style="background:#fff;color:#000"|',
  27. ['statlow3'] = '\n|style="background:#000;',
  28. ['quote'] = '\n|-\n|style="background:#000;color:#fff;text-align:center;border-radius:3.5px;',
  29. }
  30. local function frac(numerator,denominator)
  31. return '<span style="font-size:9px;position:relative;top:2px"><span style="position:relative;top:-5px;right:-3px">' .. numerator .. '</span><span style="position:relative;top:-2px">/</span>' .. denominator .. '</span>'
  32. end
  33. local function resoutput(v,denominator,game)
  34. if not denominator then denominator = 8 end
  35. if v == 'dr' or v == 'ab' then
  36. v = 'color:lime" title="吸"|Dr'
  37. elseif v == '.5dr' or v == '.5ab' or v == '50dr' or v == '50ab' or v == 'dr50' or v == 'ab50' then
  38. v = 'color:lime" title="50% 吸"|<span style="color:white">½</span>Dr'
  39. elseif v == '2dr' or v == '2ab' then
  40. v = 'color:lime" title="2x 吸"|<span style="color:white">2×</span>Dr'
  41. elseif v == 'rp' or v == 'rf' then
  42. v = 'color:cyan" title="反"|Rf'
  43. elseif v == '.5rp' or v == '.5rf' or v == '50rp' or v == '50rf' or v == 'rp50' or v == 'rf50' then
  44. v = 'color:cyan" title="50% 反"|<span style="color:white">½</span>Rf'
  45. elseif v == '1.5rp' or v == '1.5rf' or v == '150rp' or v == '150rf' or v == 'rp150' or v == 'rf150' then
  46. v = 'color:cyan" title="150% 反"|<span style="color:white">1.5×</span>Rf'
  47. elseif v == '2rp' or v == '2rf' then
  48. v = 'color:cyan" title="2x 反"|<span style="color:white">2×</span>Rf'
  49. elseif tonumber(v) == 0 then
  50. v = 'color:white" title="无"|Nu'
  51. elseif tonumber(v) == 1 then
  52. v = '" title="—"| -'
  53. elseif tonumber(v) < 1 then
  54. v = 'color:teal" title="抗"|' .. frac((tonumber(v) * denominator),denominator)
  55. elseif tonumber(v) > 2 then
  56. v = 'color:red" title="弱"|' .. v .. '×'
  57. elseif tonumber(v) > 1.3 then
  58. v = 'color:red" title="弱"|' .. v .. '×'
  59. elseif tonumber(v) > 1.1 then
  60. v = 'color:orange" title="感"|' .. v .. '×'
  61. end
  62. return styles.statlow3 .. v
  63. end
  64. local function cate(catename)
  65. if mw.title.getCurrentTitle():inNamespace('') then
  66. return '[[Category:' .. catename .. ']]'
  67. else
  68. return ''
  69. end
  70. end
  71. local function noskill(skill,gamed)
  72. local result = '\n|-\n!colspan=5 style="background:#300;width:600px"|<strong style="color:red;font-size:150%">'
  73. if skill and gamed then
  74. result = result .. '未找到技能名称 "' .. skill .. '" 。查阅 [[模块:psk/' .. gamed .. ']] 以确定正确的技能名称。'
  75. else
  76. result = result .. '技能名称不能为空(可能为空白行)。'
  77. end
  78. return result .. '.</strong>' .. cate('错误引用 模块:psk 的条目') .. '\n|-style="display:none"\n'
  79. end
  80. local function getArcana(arcana,game,gamen)
  81. local result
  82. if not arcana or arcana == '' or arcana == '-' or arcana == '无' or arcana == 'None' or arcana == 'none'
  83. then result = '-'
  84. elseif arcana == 'Coin' or arcana == 'Coins' then result = '{{ruby|星幣|Pentacles}}' -- .. cate('星幣阿爾卡那')
  85. elseif arcana == 'Pentacle' then result = '{{ruby|星幣|Pentacles}}' -- .. cate('星幣阿爾卡那')
  86. elseif arcana == 'Sword' or arcana == 'Swords' then result = '{{ruby|寶劍|Swords}}' -- .. cate('寶劍阿爾卡那')
  87. elseif arcana == 'Cup' or arcana == 'Cups' then result = '{{ruby|聖杯|Cups}}' -- .. cate('聖杯阿爾卡那')
  88. elseif arcana == 'Wand' or arcana == 'Wands' then result = '{{ruby|權杖|Wands}}' -- .. cate('權杖阿爾卡那')
  89. elseif arcana == 'Rod' then result = '{{ruby|權杖|Wands}}' -- .. cate('權杖阿爾卡那')
  90. else result = arcana -- .. cate(arcana .. '阿爾卡那')
  91. end
  92. return result
  93. end
  94. local function bar(color,stat,ratio,cap,stat2,old,new) -- ratio is the length (in pixel) of each point. Cap times ratio equals max length of the stat bar.
  95. local stat_st, stat_width
  96. if stat == 'i' then
  97. stat = 'i'
  98. elseif not tonumber(stat) then
  99. stat_st = '<span style="color:#666">--</span>'
  100. stat = 0
  101. stat_width = 0
  102. elseif stat2 then
  103. stat_st = '<span style="color:#aff;cursor:help" title="' .. old .. ': ' .. stat .. '; ' .. new .. ': ' .. stat2 .. '">' .. stat2 .. '</span>'
  104. else stat_st = stat
  105. end
  106. if stat == 'i' then
  107. elseif tonumber(stat) > cap then
  108. stat_width = cap * ratio
  109. color = '#aaf'
  110. elseif stat_width ~= 0 then
  111. stat_width = tonumber(stat) * ratio
  112. end
  113. inherit = '继承'
  114. if tostring(stat_st) == '+0' then stat_st = '<span style="color:#666">--</span>' end
  115. if stat == 'i' then
  116. return '--\n|继承\n|-'
  117. elseif stat2 then
  118. return stat_st .. '\n|style="border-radius:10px;background-color:#000;background:linear-gradient(90deg, #2c2a46, #000);width:' .. cap * ratio + 3 .. 'px"|<div style="overflow:hidden"><div style="cursor:help;float:left;border-top:5px solid ' .. color .. ';width:' .. stat_width .. 'px" title="' .. old .. ': '.. stat ..'"></div><div style="cursor:help;float:left;border-top:5px solid #aff;width:' .. tonumber(stat2) * ratio - stat_width .. 'px" title="' .. new .. ': '.. stat2 ..'"></div></div>\n|-'
  119. else return stat_st .. '\n|style="border-radius:10px;background-color:#000;background:linear-gradient(90deg, #2c2a46, #000);width:' .. cap * ratio + 3 .. 'px"|<div style="overflow:hidden"><div style="float:left;border-top:5px solid ' .. color .. ';width:' .. stat_width .. 'px"></div><div style="float:left;border-top:5px solid transparent;width:' .. (cap - tonumber(stat)) * ratio .. 'px"></div></div>\n|-'
  120. end
  121. end
  122. local function get_prop(args)
  123. local prop = {}
  124. for k, v in pairs(require('Module:psk/Property_names')) do
  125. for _, name in ipairs(v) do
  126. if args[name] then
  127. prop[k] = args[name]
  128. break
  129. end
  130. end
  131. prop[k] = prop[k] or v.default
  132. end
  133. return prop
  134. end
  135. p.stats = makeInvokeFunction('_stats')
  136. function p._stats(args)
  137. local game = args[1] or args.game or args.Game or ''
  138. game = game:lower()
  139. if args.FES then game = 'p3f' end
  140. if args.P3P then game = 'p3p' end
  141. if args.P4G then game = 'p4g' end
  142. if args.P5R then game = 'p5r' end
  143. local gameg -- Game general style
  144. if getGames.games[game].fallback then
  145. gameg = getGames.games[game].fallback -- e.g. 'p3f' and 'p3p' will fall back to 'p3' if applicable.
  146. else gameg = game
  147. end
  148. local gamen = getGames.games[game].name -- Full game name
  149. local gamegn = getGames.games[gameg].name -- e.g. '女神異聞錄3 FES' will fall back to '女神異聞錄3' if applicable.
  150. local gamed
  151. if gameg then gamed = gameg:upper() end
  152. local data
  153. data = require('Module:psk/' .. gamed)
  154. local prop = get_prop(args)
  155. styles.h = '\n!style="background: ' .. getGames.games[gameg].colorbg .. ';color: ' .. getGames.games[gameg].font .. '" '
  156. styles.spanc = '<span style="color:' .. getGames.games[gameg].font .. '">'
  157. if not getGames.games[gameg].statt then getGames.games[gameg].statt = '#529488' end
  158. styles.barh = '\n|style="color:' .. getGames.games[gameg].statt .. '" '
  159. styles.bart11 = '\n|rowspan=2 style="padding:0" width='
  160. styles.bart12 = '|\n{|cellspacing=2 cellpadding=0 style="background:transparent;font-size:11px;font-family:monospace;letter-spacing:-1px;line-height:'
  161. styles.bard = '\n|style="text-align:right;padding:0 3px" '
  162. styles.bard1 = styles.bard .. 'width=12px|'
  163. styles.bard2 = styles.bard .. 'width=17px|'
  164. local result = '{|align="center" style="min-width:650px;text-align:center; background: #222; border:2px solid ' .. getGames.games[gameg].colorb .. '; border-radius:10px; font-size:75%; font-family:verdana;"\n|-\n|' .. styles.table2b
  165. if getGames.games[gameg].statb == nil then
  166. styles.barc = 'orange'
  167. else
  168. styles.barc = getGames.games[gameg].statb
  169. end
  170. if prop.image then
  171. result = result .. '\n!style="width:20px;border:#333 solid 2px;border-radius:7px;background:'
  172. if gameg == 'p1' or gameg == 'p2is' or gameg == 'p2ep' or gameg == 'p3' then result = result .. 'transparent'
  173. else result = result .. '#000'
  174. end
  175. result = result .. '"|' .. prop.image
  176. end
  177. result = result .. '\n|'
  178. if prop.location then prop.location = '[[' .. prop.location .. ']]' else prop.location = '' end
  179. if gameg == 'p1' then
  180. if prop.vit2 then
  181. prop.p1vi = '|<span style="color:#aff;cursor:help" title="在 PSX 和 PSP 平台上的属性值可能不同。">Vitality</span>' .. styles.bard2 .. bar(styles.barc,prop.vit,2.4,99,prop.vit2,'PSX 版','PSP 版')
  182. else prop.p1vi = '|Vitality' .. styles.bard2 .. bar(styles.barc,prop.vit,2.4,99)
  183. end
  184. if prop.dex2 then
  185. prop.p1dx = '|<span style="color:#aff;cursor:help" title="在 PSX 和 PSP 平台上的属性值可能不同。">Dexterity</span>' .. styles.bard2 .. bar(styles.barc,prop.dex,2.4,99,prop.dex2,'PSX 版','PSP 版')
  186. else prop.p1dx = '|Dexterity' .. styles.bard2 .. bar(styles.barc,prop.dex,2.4,99)
  187. end
  188. if prop.boss or prop.enemy or prop.hp then
  189. if prop.order2 then
  190. prop.p1order = getRace(prop.race,gameg,'PSX 版') .. ' / ' .. getRace(prop.order2,gameg,'PSP 版')
  191. else prop.p1order = getRace(prop.race,gameg)
  192. end
  193. if not prop.etype then prop.etype = '' end
  194. if not prop.element then prop.element = '' end
  195. if not prop.hp then prop.hp = '' end
  196. if not prop.mp then prop.mp = '' end
  197. result = result .. styles.table2 .. styles.h .. '|[[人格面具/种族|' .. styles.spanc .. 'Order</span>]]' .. styles.h .. '|Type' .. styles.h .. '|Subtype' .. styles.h .. '|Level' .. styles.h .. '|HP' .. styles.h .. '|SP'
  198. if prop.normal then result = result .. styles.h .. '|[[' .. gamen .. '/物品|' .. styles.spanc .. '掉落</span>]]' end
  199. result = result .. '\n|-' .. styles.statlow .. prop.p1order .. styles.statlow .. prop.etype .. styles.statlow .. prop.element .. styles.statlow .. prop.level .. styles.statlow .. prop.hp .. styles.statlow .. prop.mp
  200. if prop.normal then result = result .. styles.statlow .. prop.normal end
  201. result = result .. '\n|}' .. bossdemoncat(prop.boss,gamen)
  202. if prop.matk == '' and prop.mdef == '' and prop.str == '' and prop.vit == '' and prop.dex == '' and prop.agl == '' and prop.luc == '' then
  203. else
  204. result = result .. styles.table2 .. styles.h .. 'title="Magical Power"|MAtk' .. styles.h .. 'title="Magical Defense"|MDef' .. styles.bart11 .. '324px' .. styles.bart12 .. '0.8"' .. styles.barh .. '|Strength' .. styles.bard2 .. bar(styles.barc,prop.str,2.4,99) .. styles.barh .. prop.p1vi .. styles.barh .. prop.p1dx .. styles.barh .. '|Agility' .. styles.bard2 .. bar(styles.barc,prop.agl,2.4,99) .. styles.barh .. '|Luck' .. styles.bard2 .. bar(styles.barc,prop.luc,2.4,99) .. '\n|}\n|-' .. styles.statlow .. prop.matk .. styles.statlow .. prop.mdef .. '\n|}'
  205. end
  206. if prop.traits or prop.convo then
  207. result = result .. styles.table2
  208. if prop.traits then result = result .. styles.h .. 'width=50px|[[Personality|' .. styles.spanc .. 'Traits</span>]]' .. styles.order .. prop.traits end
  209. if prop.convo then result = result .. styles.h .. 'width=50px|[[Special conversation|' .. styles.spanc .. '<abbr title="If equipped with the listed Persona, there is a chance it will talk to this demon if encountered.">Ptalk</abbr>]]' .. styles.order .. prop.convo end
  210. result = result .. '\n|}'
  211. end
  212. else
  213. if not prop.etype then prop.etype = '' end
  214. if not prop.element then prop.element = '' end
  215. if not prop.mp then prop.mp = '' end
  216. result = result .. styles.table2 .. styles.h .. '|[[Arcana|' .. styles.spanc .. 'Arcana</span>]]' .. styles.h .. '|Type' .. styles.h .. '|Subtype' .. styles.h .. '|Level' .. styles.h .. '|SP cost'
  217. if prop.totem then result = result .. styles.h .. '|[[Totem|' .. styles.spanc .. 'Totem</span>]]' end
  218. if prop.preturn then result = result .. styles.h .. '|[[Mystic Change|' .. styles.spanc .. 'Returns</span>]] [[List of ' .. gamen .. ' Items|' .. styles.spanc .. '°</span>]]' end
  219. result = result .. '\n|-' .. styles.statlow .. getArcana(prop.arcana,gameg,gamen) .. styles.statlow .. prop.etype .. styles.statlow .. prop.element .. styles.statlow .. prop.level .. styles.statlow .. prop.mp
  220. if prop.totem then result = result .. styles.statlow .. prop.totem end
  221. if prop.preturn then result = result .. styles.statlow .. prop.preturn end
  222. result = result .. '\n|}' .. styles.table2 .. styles.h .. 'title="Magical Power"|MAtk' .. styles.h .. 'title="Magical Defense"|MDef' .. styles.bart11 .. '324px' .. styles.bart12 .. '0.8"' .. styles.barh .. '|Strength' .. styles.bard2 .. bar(styles.barc,prop.str,2.4,99) .. styles.barh .. '|Vitality' .. styles.bard2 .. bar(styles.barc,prop.vit,2.4,99) .. styles.barh .. prop.p1dx .. styles.barh .. '|Agility' .. styles.bard2 .. bar(styles.barc,prop.agl,2.4,99) .. styles.barh .. '|Luck' .. styles.bard2 .. bar(styles.barc,prop.luc,2.4,99) .. '\n|}\n|-' .. styles.statlow .. prop.matk .. styles.statlow .. prop.mdef .. '\n|}'
  223. if args.Affinity or prop.convo then
  224. result = result .. styles.table2
  225. if args.Affinity then result = result .. styles.h .. 'width=60px title="Characters with ' .. "'Best'" .. ' Affinity"|[[Affinity (Persona)|' .. styles.spanc .. '<abbr>Affinity</abbr></span>]]' .. styles.order .. args.Affinity end
  226. if prop.convo then result = result .. styles.h .. 'width=50px|[[Special conversation|' .. styles.spanc .. '<abbr title="If equipped with this Persona, there is a chance it will talk to listed demon if encountered.">Ptalk</abbr>]]' .. styles.order .. prop.convo end
  227. result = result .. '\n|}' .. cate(gamen .. ' Personas')
  228. end
  229. end
  230. end
  231. if (gameg == 'p2is' or gameg == 'p2ep' or gameg == 'p5') and prop.quote then
  232. result = result .. styles.table2b .. styles.quote .. 'font-style:italic"|' .. string.gsub(prop.quote, '!!', '‼') .. '\n|}'
  233. end -- replace exclamation mark otherwise it will be interpreted as wiki table seperator.
  234. if gameg == 'p2is' or gameg == 'p2ep' then
  235. result = result .. styles.table2 .. styles.h .. '|[[Arcana|' .. styles.spanc .. 'Arcana</span>]]'
  236. if prop.enemy or prop.boss or prop.hp then
  237. if prop.etype then result = result .. styles.h .. '|Type' end
  238. result = result .. styles.h .. '|Level'
  239. if prop.hp then result = result .. styles.h .. '|HP' end
  240. if prop.normal then result = result .. styles.h .. '|[[List of ' .. gamen .. ' Items|' .. styles.spanc .. 'Normal Drop]]' end
  241. if prop.rare then result = result .. styles.h .. 'style="background:#8E283D"|Rare Drop' end
  242. result = result .. '\n|-' .. styles.statlow .. getArcana(prop.arcana,gameg,gamen)
  243. if prop.etype then result = result .. styles.statlow .. prop.etype end
  244. result = result .. styles.statlow .. prop.level
  245. if prop.hp then result = result .. styles.statlow .. prop.hp end
  246. if prop.normal then result = result .. styles.statlow .. prop.normal end
  247. if prop.rare then result = result .. styles.statlow .. prop.rare end
  248. result = result .. bossdemoncat(prop.boss,gamen)
  249. else
  250. if not prop.etype then prop.etype = '' end
  251. if not prop.mp then prop.mp = '' end
  252. if not prop.bonus then prop.bonus = '' end
  253. if not prop.preturn then prop.preturn = '' end
  254. result = result .. styles.h .. '|Type' .. styles.h .. '|Level' .. styles.h .. '|SP cost' .. styles.h .. 'title="Extra stats that are conferred upon every level up with the Persona equipped"|Bonus' .. styles.h .. '|[[Mystic Change|' .. styles.spanc .. 'Returns</span>]] ' .. '[[List of ' .. gamen .. ' Items|' .. styles.spanc .. '°</span>]]' .. '\n|-' .. styles.statlow .. getArcana(prop.arcana,gameg,gamen) .. styles.statlow .. prop.etype .. styles.statlow .. prop.level .. styles.statlow .. prop.mp .. styles.statlow .. prop.bonus .. styles.statlow .. prop.preturn .. cate(gamegn .. ' Personas')
  255. end
  256. result = result .. '\n|}'
  257. end
  258. if gameg == 'p3' or gameg == 'p4' or gameg == 'p5' then
  259. result = result .. styles.table2
  260. if gameg == 'p5' and (prop.arcana == nil or prop.arcana == "" or prop.arcana == "-") then
  261. else result = result .. styles.h .. '|{{人格面具/阿爾卡那|' .. styles.spanc .. 'Arcana</span>]]'
  262. end
  263. result = result .. styles.h .. 'width="50px"|Level'
  264. if prop.hp then result = result .. styles.h .. 'width="40px"|HP' end
  265. if prop.mp then result = result .. styles.h .. 'width="40px"|SP' end
  266. if prop.traits then result = result .. styles.h .. '|[[人格面具/個性|<span style="color:#fff">Type</span>]]' end
  267. result = result .. styles.bart11 .. '324px' .. styles.bart12 .. '0.8"' .. styles.barh .. '|力' .. styles.bard2 .. bar(styles.barc,prop.str,2.4,99) .. styles.barh .. '|魔' .. styles.bard2 .. bar(styles.barc,prop.magic,2.4,99) .. styles.barh .. '|耐' .. styles.bard2 .. bar(styles.barc,prop.vit,2.4,99) .. styles.barh .. '|速' .. styles.bard2 .. bar(styles.barc,prop.agl,2.4,99) .. styles.barh .. '|運' .. styles.bard2 .. bar(styles.barc,prop.luc,2.4,99) .. '\n|}\n|-'
  268. if gameg == 'p5' and (prop.arcana == nil or prop.arcana == "" or prop.arcana == "-") then
  269. else result = result .. styles.statlow .. getArcana(prop.arcana,gameg,gamegn)
  270. end
  271. result = result .. styles.statlow .. prop.level
  272. if prop.hp then result = result .. styles.statlow .. prop.hp .. '<div style="position:relative;top:-4px;border:2.5px solid ' .. getGames.games[gameg].hp2 .. '"></div>' end
  273. if prop.mp then result = result .. styles.statlow .. prop.mp .. '<div style="position:relative;top:-4px;border:2.5px solid ' .. getGames.games[gameg].mp2 .. '"></div>' end
  274. if prop.traits then result = result .. styles.statlow .. prop.traits end
  275. result = result .. '\n|}'
  276. -- if gameg == 'p3' then
  277. -- if prop.hp then
  278. -- if prop.boss then
  279. -- if game == 'p3p' then
  280. -- result = result .. cate('P3P Bosses')
  281. -- elseif game == 'p3f' then
  282. -- result = result .. cate(gamegn .. ' Bosses')
  283. -- else result = result .. cate(gamegn .. ' Bosses') .. cate('P3P Bosses')
  284. -- end
  285. -- else result = result .. cate(gamegn .. ' Shadows')
  286. -- end
  287. -- else
  288. -- if game == 'p3p' or game == 'p3f' then
  289. -- result = result .. cate('P3F Personas') .. cate('P3P Personas')
  290. -- else result = result .. cate(gamegn .. ' Personas') .. cate('P3F Personas') .. cate('P3P Personas')
  291. -- end
  292. -- end
  293. -- end
  294. -- if gameg == 'p4' then
  295. -- if prop.hp then
  296. -- if prop.boss then
  297. -- if prop.vanilla then
  298. -- result = result .. cate(gamen .. ' Bosses')
  299. -- elseif game == 'p4g' then
  300. -- result = result .. cate(gamen .. ' Bosses')
  301. -- else result = result .. cate(gamegn .. ' Bosses') .. cate('P4G Bosses')
  302. -- end
  303. -- else
  304. -- if prop.vanilla then
  305. -- result = result .. cate(gamen .. ' Shadows')
  306. -- elseif game == 'p4g' then
  307. -- result = result .. cate(gamen .. ' Shadows')
  308. -- else result = result .. cate(gamegn .. ' Shadows') .. cate('P4G Shadows')
  309. -- end
  310. -- end
  311. -- else
  312. -- if game == 'p4g' then
  313. -- result = result .. cate(gamen .. ' Personas')
  314. -- else result = result .. cate(gamegn .. ' Personas') .. cate('P4G Personas')
  315. -- end
  316. -- end
  317. -- end
  318. -- if gameg == 'p5' then
  319. -- if prop.hp then
  320. -- if prop.boss then
  321. -- result = result .. cate(gamen .. ' Bosses')
  322. -- elseif prop.shadow then
  323. -- result = result .. cate(gamen .. ' Shadows')
  324. -- else
  325. -- result = result .. cate(gamen .. ' Enemies')
  326. -- end
  327. -- else
  328. -- result = result .. cate(gamen .. ' Personas')
  329. -- end
  330. -- end
  331. -- end
  332. if gameg == 'pq' or gameg == 'pq2' then
  333. if not prop.arcana then
  334. if not prop.drop1 then prop.drop1 = '-' end
  335. if not prop.drop2 then prop.drop2 = '-' end
  336. if not prop.drop3 then prop.drop3 = '-' end
  337. result = result .. styles.table2 .. styles.h .. 'width=12%|Level' .. styles.h .. 'width=12%|HP' .. styles.h .. 'width=12%|攻' .. styles.h .. 'width=12%|防'
  338. result = result .. styles.bart11 .. '324px' .. styles.bart12 .. '0.8"' .. styles.barh .. '|力' .. styles.bard2 .. bar(styles.barc,prop.str,2.4,99) .. styles.barh .. '|魔' .. styles.bard2 .. bar(styles.barc,prop.magic,2.4,99) .. styles.barh .. '|耐' .. styles.bard2 .. bar(styles.barc,prop.vit,2.4,99) .. styles.barh .. '|速' .. styles.bard2 .. bar(styles.barc,prop.agl,2.4,99) .. styles.barh .. '|運' .. styles.bard2 .. bar(styles.barc,prop.luc,2.4,99) .. '\n|}\n|-' .. styles.statlow .. prop.level .. styles.statlow .. prop.hp .. styles.statlow .. prop.atk .. styles.statlow .. prop.def .. '\n|}'
  339. result = result .. styles.table2 .. styles.h .. 'width=16%|Exp' .. styles.h .. 'width=28%|掉落品 1' .. styles.h .. 'width=28%|掉落品 2' .. styles.h
  340. if prop.dropc and prop.condition then result = result .. 'width=28%|Conditional' else result = result .. 'width=28%|掉落品 3' end
  341. result = result .. '\n|-\n' .. styles.statlow .. prop.xp .. styles.statlow .. prop.drop1 .. styles.statlow .. prop.drop2 .. styles.statlow
  342. if prop.dropc and prop.condition then result = result .. '<abbr title="' .. prop.condition .. '">' .. prop.dropc .. '</abbr>'
  343. else result = result .. prop.drop3 end
  344. -- if prop.boss then
  345. -- result = result .. cate(gamegn .. ' Bosses')
  346. -- else result = result .. cate(gamegn .. ' Shadows')
  347. -- end
  348. elseif prop.hp or prop.mp then -- sub-persona
  349. if not prop.inherit then prop.inherit = '-' end
  350. if not prop.card then prop.card = '-' end
  351. if not prop.fragment then prop.fragment = '-' end
  352. if gameg == 'pq' then
  353. result = result .. styles.table2 .. styles.h .. '|[[Arcana|' .. styles.spanc .. 'Arcana</span>]]' .. styles.h .. 'width=10%|Level' .. styles.h .. 'title="HP bonus. Replenishes after battle." width=10%|HP +' .. styles.h .. 'title="SP bonus. Replenishes after battle." width=10%|SP +' .. styles.h .. '|Inherit' .. styles.h .. '|[[Skill Card|' .. styles.spanc .. 'Extract</span>]]' .. styles.h .. '|[[Sacrificial fusion|' .. styles.spanc .. 'Fragment]]\n|-\n'
  354. result = result .. styles.statlow .. getArcana(prop.arcana,gameg,gamen) .. styles.statlow .. prop.level .. styles.statlow .. prop.hp .. styles.statlow .. prop.mp .. styles.statlow .. prop.inherit .. styles.statlow .. prop.card .. styles.statlow .. prop.fragment .. cate(gamegn .. ' Personas')
  355. else
  356. result = result .. styles.table2 .. styles.h .. '|[[Arcana|' .. styles.spanc .. 'Arcana</span>]]' .. styles.h .. 'width=10%|Level' .. styles.h .. 'title="HP bonus. Replenishes after battle." width=10%|HP +' .. styles.h .. 'title="SP bonus. Replenishes after battle." width=10%|SP +' .. styles.h .. '|Type' .. styles.h .. '|[[Skill Card|' .. styles.spanc .. 'Extract</span>]]\n|-\n'
  357. result = result .. styles.statlow .. getArcana(prop.arcana,gameg,gamen) .. styles.statlow .. prop.level .. styles.statlow .. prop.hp .. styles.statlow .. prop.mp .. styles.statlow .. prop.inherit .. styles.statlow .. prop.card .. cate(gamegn .. ' Personas')
  358. end
  359. else -- main persona
  360. result = result .. styles.table2 .. styles.h .. '|[[Arcana|' .. styles.spanc .. 'Arcana</span>]]' .. styles.h .. 'width=10%|Level'
  361. result = result .. styles.bart11 .. '324px' .. styles.bart12 .. '0.8"' .. styles.barh .. '|Strength' .. styles.bard2 .. bar(styles.barc,prop.str,2.4,99) .. styles.barh .. '|Magic' .. styles.bard2 .. bar(styles.barc,prop.magic,2.4,99) .. styles.barh .. '|Endurance' .. styles.bard2 .. bar(styles.barc,prop.vit,2.4,99) .. styles.barh .. '|Agility' .. styles.bard2 .. bar(styles.barc,prop.agl,2.4,99) .. styles.barh .. '|Luck' .. styles.bard2 .. bar(styles.barc,prop.luc,2.4,99) .. '\n|}\n|-' .. styles.statlow .. getArcana(prop.arcana,gameg,gamegn) .. styles.statlow .. prop.level
  362. if not prop.nocat then result = result .. cate(gamegn .. ' Personas') end
  363. end
  364. result = result .. '\n|}'
  365. end
  366. if gameg == 'p3' or gameg == 'p4' or gameg == 'p5' then
  367. if prop.sword or prop.strike or prop.pierce or prop.phys or prop.fire or prop.ice or prop.elec or prop.wind or prop.expel or prop.dark or prop.alm or prop.xp or prop.yen then
  368. result = result .. styles.table2
  369. if not prop.sword then prop.sword = '-' end
  370. if not prop.strike then prop.strike = '-' end
  371. if not prop.pierce then prop.pierce = '-' end
  372. if not prop.phys then prop.phys = '-' end
  373. if not prop.gun then prop.gun = '-' end
  374. if not prop.fire then prop.fire = '-' end
  375. if not prop.ice then prop.ice = '-' end
  376. if not prop.elec then prop.elec = '-' end
  377. if not prop.wind then prop.wind = '-' end
  378. if not prop.psy then prop.psy = '-' end
  379. if not prop.nuke then prop.nuke = '-' end
  380. if not prop.expel then prop.expel = '-' end
  381. if not prop.dark then prop.dark = '-' end
  382. if not prop.alm then prop.alm = '-' end
  383. elseif gameg == 'p3' then result = result .. styles.h .. 'width=10%|斩' .. styles.h .. 'width=10%|擊' .. styles.h .. 'width=10%|貫' .. styles.h .. 'width=10%|火' .. styles.h .. 'width=10%|冰' .. styles.h .. 'width=10%|電' .. styles.h .. 'width=10%|風' .. styles.h .. 'width=10%|光' .. styles.h .. 'width=10%|暗' .. styles.h .. 'width=10%|萬能' .. '\n|-\n'
  384. elseif gameg == 'p4' then result = result .. styles.h .. 'width=14%|物' .. styles.h .. 'width=12%|火' .. styles.h .. 'width=12%|冰' .. styles.h .. 'width=12%|電' .. styles.h .. 'width=12%|風' .. styles.h .. 'width=12%|光' .. styles.h .. 'width=12%|暗' .. styles.h .. 'width=14%|萬能' .. '\n|-\n'
  385. elseif gameg == 'p5' then result = result .. styles.h .. 'width=9%|物' .. styles.h .. 'width=9%|槍' .. styles.h .. 'width=9%|火' .. styles.h .. 'width=9%|冰' .. styles.h .. 'width=9%|電' .. styles.h .. 'width=9%|風' .. styles.h .. 'width=9%|念' .. styles.h .. 'width=9%|核' .. styles.h .. 'width=9%|祝' .. styles.h .. 'width=9%|咒' .. styles.h .. 'width=10%|萬能' .. '\n|-\n'
  386. end
  387. if gameg == 'p3' then result = result .. styles.statlow .. prop.sword .. styles.statlow .. prop.strike .. styles.statlow .. prop.pierce
  388. elseif gameg == 'p4' then result = result .. styles.statlow .. prop.phys
  389. elseif gameg == 'p5' then result = result .. styles.statlow .. prop.phys .. styles.statlow -- .. prop.gun
  390. end
  391. result = result .. styles.statlow .. prop.fire .. styles.statlow .. prop.ice .. styles.statlow .. prop.elec
  392. if gameg == 'p3' or gameg == 'p4' or gameg == 'p5' then result = result .. styles.statlow .. prop.wind end
  393. if gameg == 'p5' then result = result .. styles.statlow .. prop.psy .. styles.statlow .. prop.nuke end
  394. result = result .. styles.statlow .. prop.expel .. styles.statlow .. prop.dark .. styles.statlow .. prop.alm
  395. result = result .. '\n|}'
  396. elseif prop.inherit or prop.resist or prop.block or prop.absorb or prop.reflect or prop.weak then
  397. result = result .. styles.table2
  398. if not prop.inherit then prop.inherit = '-' end
  399. if not prop.resist then prop.resist = '-' end
  400. if not prop.block then prop.block = '-' end
  401. if not prop.absorb then prop.absorb = '-' end
  402. if not prop.reflect then prop.reflect = '-' end
  403. if not prop.weak then prop.weak = '-' else prop.weak = '<span style="color:#f22">' .. prop.weak .. '</span>' end
  404. result = result .. styles.h .. '|繼承' .. styles.h .. '|反' .. styles.h .. '|吸' .. styles.h .. '|無' .. styles.h .. '|抗' .. styles.h .. '|弱\n|-\n' .. styles.statlow .. prop.inherit .. styles.statlow .. prop.reflect .. styles.statlow .. prop.absorb .. styles.statlow .. prop.block .. styles.statlow .. prop.resist .. styles.statlow .. prop.weak .. '\n|}'
  405. end
  406. end
  407. if (gameg == 'p2is' or gameg == 'p2ep') and (prop.exclusive or prop.traits or prop.convo) then
  408. result = result .. styles.table2
  409. if prop.exclusive then
  410. result = result .. styles.h .. 'width=90px|Exclusive to' .. styles.order .. prop.exclusive
  411. end
  412. if prop.traits then
  413. result = result .. styles.h .. 'width=50px|[[Personality|' .. styles.spanc .. 'Traits</span>]]' .. styles.order .. prop.traits
  414. end
  415. if prop.convo then
  416. result = result .. styles.h .. 'width=50px|[[Special conversation|' .. styles.spanc .. '<abbr style="border-bottom:1px dotted black;" title="if equipped with this Persona, there is a chance it will talk to this demon if encountered">Ptalk</abbr>]]' .. styles.order .. prop.convo
  417. end
  418. result = result .. '\n|}'
  419. end
  420. if (gameg == 'p2is' or gameg == 'p2ep') and prop.profile then
  421. result = result .. styles.table2b .. styles.quote .. '"|' .. string.gsub(prop.profile, '!!', '‼') .. '\n|}'
  422. end
  423. if gameg == 'p3' and (prop.card or prop.preturn) then
  424. result = result .. styles.table2
  425. if prop.card then
  426. result = result .. styles.h .. 'width=100px|[[Skill Card|' .. styles.spanc .. 'Skill Card</span>]]' .. styles.order .. '<abbr title="Portable only">' .. prop.card .. '</abbr>'
  427. end
  428. if prop.preturn then
  429. result = result .. styles.h .. 'width=100px|[[Heart Item|' .. styles.spanc .. 'Heart Item</span>]]' .. styles.order .. prop.preturn
  430. end
  431. result = result .. '\n|}'
  432. end
  433. if (gameg == 'p4') and prop.hp then
  434. result = result .. styles.table2
  435. if not prop.xp then prop.xp = '-' end
  436. if not prop.yen then prop.yen = '-' end
  437. if not prop.normal then prop.normal = '-' end
  438. if not prop.rare then prop.rare = '-' end
  439. result = result .. styles.h .. '|EXP' .. styles.h .. '|Yen' .. styles.h .. '|[[人格面具/掉落物品/' .. gamegn .. '|' .. styles.spanc .. '普通掉落</span>]]' .. styles.h .. '|[[人格面具/掉落物品/' .. gamegn .. '|' .. styles.spanc .. '稀有掉落</span>]]' .. '\n|-\n'
  440. result = result .. styles.statlow .. prop.xp .. styles.statlow .. prop.yen .. styles.statlow .. prop.normal .. styles.statlow .. prop.rare
  441. result = result .. '\n|}'
  442. end
  443. if (gameg == 'p5') and prop.hp then
  444. result = result .. styles.table2
  445. if not prop.xp then prop.xp = '-' end
  446. if not prop.yen then prop.yen = '-' end
  447. if not prop.material then prop.material = '-' end
  448. if not prop.card then prop.card = '-' end
  449. result = result .. styles.h .. '|EXP' .. styles.h .. '|Yen' .. styles.h .. '|[[人格面具/掉落物品/' .. gamegn .. '|' .. styles.spanc .. '掉落材料</span>]]' .. styles.h .. '|[[人格面具/技能卡|' .. styles.spanc .. '技能卡</span>]]' .. '\n|-\n'
  450. result = result .. styles.statlow .. prop.xp .. styles.statlow .. prop.yen .. styles.statlow .. prop.material .. styles.statlow .. prop.card
  451. result = result .. '\n|}'
  452. end
  453. result = result .. '\n|}'
  454. -- End of image span.
  455. if gameg == 'p1' and (prop.onehand or prop.twohand or prop.spear or prop.axe or prop.whip or prop.thrown or prop.arrow or prop.fist or prop.handgun or prop.machinegun or prop.shotgun or prop.rifle or prop.tech or prop.rush or prop.fire or prop.ice or prop.wind or prop.earth or prop.elec or prop.nuke or prop.blast or prop.gravity or prop.expel or prop.miracle or prop.death or prop.curse or prop.nerve or prop.hiero) then
  456. if not prop.onehand then prop.onehand = '-' end
  457. if not prop.twohand then prop.twohand = '-' end
  458. if not prop.spear then prop.spear = '-' end
  459. if not prop.axe then prop.axe = '-' end
  460. if not prop.whip then prop.whip = '-' end
  461. if not prop.thrown then prop.thrown = '-' end
  462. if not prop.arrow then prop.arrow = '-' end
  463. if not prop.fist then prop.fist = '-' end
  464. if not prop.handgun then prop.handgun = '-' end
  465. if not prop.machinegun then prop.machinegun = '-' end
  466. if not prop.shotgun then prop.shotgun = '-' end
  467. if not prop.rifle then prop.rifle = '-' end
  468. if not prop.tech then prop.tech = '-' end
  469. if not prop.rush then prop.rush = '-' end
  470. if not prop.fire then prop.fire = '-' end
  471. if not prop.ice then prop.ice = '-' end
  472. if not prop.wind then prop.wind = '-' end
  473. if not prop.earth then prop.earth = '-' end
  474. if not prop.elec then prop.elec = '-' end
  475. if not prop.nuke then prop.nuke = '-' end
  476. if not prop.blast then prop.blast = '-' end
  477. if not prop.gravity then prop.gravity = '-' end
  478. if not prop.expel then prop.expel = '-' end
  479. if not prop.miracle then prop.miracle = '-' end
  480. if not prop.death then prop.death = '-' end
  481. if not prop.curse then prop.curse = '-' end
  482. if not prop.nerve then prop.nerve = '-' end
  483. if not prop.hiero then prop.hiero = '-' end
  484. result = result .. styles.table2 .. '\n!style="background:#a9a9a9" title="Weapons" colspan="8"|\n!title="Firearms" style="background:#898989" colspan="4"|\n!style="background:#a9a9a9" title="Havoc" colspan="2"|\n|-' .. styles.h .. 'title="Weapons"|<abbr title="1-handed Sword">1h</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="2-handed Sword">2h</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Spear">Sp</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Axe">Ax</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Whip">Wp</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Thrown">Th</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Arrows">Ar</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Fist">Fs</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Handgun">HG</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Machinegun">MG</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Shotgun">SG</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Rifle">Ri</abbr>' .. styles.h .. 'title="Havoc"|<abbr title="Tech">Te</abbr>' .. styles.h .. 'title="Havoc"|<abbr title="Rush">Ru</abbr>\n|-\n' .. styles.statlow .. prop.onehand .. styles.statlow .. prop.twohand .. styles.statlow .. prop.spear .. styles.statlow .. prop.axe .. styles.statlow .. prop.whip .. styles.statlow .. prop.thrown .. styles.statlow .. prop.arrow .. styles.statlow .. prop.fist .. styles.statlow .. prop.handgun .. styles.statlow .. prop.machinegun .. styles.statlow .. prop.shotgun .. styles.statlow .. prop.rifle .. styles.statlow .. prop.tech .. styles.statlow .. prop.rush
  485. result = result .. '\n|-\n!style="background:#a9a9a9" title="Element" colspan="4"|\n!style="background:#898989" title="Force" colspan="4"|\n!style="background:#a9a9a9" title="Light" colspan="2"|\n!style="background:#898989" title="Dark" colspan="3"|\n!style="background:#a9a9a9" title="Special" colspan="1"|\n|-' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Fire">Fi</abbr>' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Ice">Ic</abbr>' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Wind">Wi</abbr>' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Earth">Er</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title="Electricity">El</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title=.nuke">Nc</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title="Blast">Bl</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title="Gravity">Gr</abbr>' .. styles.h .. 'title="Light"|<abbr title="Expel">Ex</abbr>' .. styles.h .. 'title="Light"|<abbr title="Miracle">Mi</abbr>' .. styles.h .. 'style="background:#898989" title="Dark"|<abbr title="Death">De</abbr>' .. styles.h .. 'style="background:#898989" title="Dark"|<abbr title="Curse">Cu</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Dark (Ailments)"|<abbr title="Nerve">Nr</abbr>' .. styles.h .. 'width="7.12%" title="Special"|<abbr title="Resistance to Hieroglyphein">???</abbr>\n|-\n' .. styles.statlow .. prop.fire .. styles.statlow .. prop.ice .. styles.statlow .. prop.wind .. styles.statlow .. prop.earth .. styles.statlow .. prop.elec .. styles.statlow .. prop.nuke .. styles.statlow .. prop.blast .. styles.statlow .. prop.gravity .. styles.statlow .. prop.expel .. styles.statlow .. prop.miracle .. styles.statlow .. prop.death .. styles.statlow .. prop.curse .. styles.statlow .. prop.nerve .. styles.statlow .. prop.hiero .. '\n|}'
  486. end
  487. if (gameg == 'p2is' or gameg == 'p2ep') and (prop.atk or prop.def or prop.matk or prop.mdef or prop.str or prop.vit or prop.dex or prop.agl or prop.luc) then
  488. if gameg == 'p2is' then prop.dx_h = '|Dexterity' else prop.dx_h = '|Technique' end
  489. result = result .. styles.table2 .. styles.h .. 'title="Physical Attack Power"|Atk' .. styles.h .. 'title="Physical Defense"|Def' .. styles.h .. 'title="Magical Power"|Matk' .. styles.h .. 'title="Magical Defense"|Mdef' .. styles.bart11 .. '324px' .. styles.bart12 .. '0.8"' .. styles.barh .. '|Strength' .. styles.bard2 .. bar(styles.barc,prop.str,2.4,99) .. styles.barh .. '|Vitality' .. styles.bard2 .. bar(styles.barc,prop.vit,2.4,99) .. styles.barh .. prop.dx_h .. styles.bard2 .. bar(styles.barc,prop.dex,2.4,99) .. styles.barh .. '|Agility' .. styles.bard2 .. bar(styles.barc,prop.agl,2.4,99) .. styles.barh .. '|Luck' .. styles.bard2 .. bar(styles.barc,prop.luc,2.4,99) .. '\n|}\n|-'
  490. if not prop.atk or prop.atk == '' then prop.atk = '?' end
  491. if not prop.def or prop.def == '' then prop.def = '?' end
  492. if not prop.matk or prop.matk == '' then prop.matk = '?' end
  493. if not prop.mdef or prop.mdef == '' then prop.mdef = '?' end
  494. result = result .. '\n|-\n' .. styles.statlow .. prop.atk .. styles.statlow .. prop.def .. styles.statlow .. prop.matk .. styles.statlow .. prop.mdef .. '\n|}'
  495. end
  496. if (gameg == 'p2is' or gameg == 'p2ep') and (prop.resist or prop.block or prop.absorb or prop.reflect or prop.weak or prop.boost or prop.wild) then
  497. result = result .. styles.table2
  498. if not prop.resist then prop.resist = '-' end
  499. if not prop.block then prop.block = '-' end
  500. if not prop.absorb then prop.absorb = '-' end
  501. if not prop.reflect then prop.reflect = '-' end
  502. if not prop.weak then prop.weak = '-' else prop.weak = '<span style="color:#f22">' .. prop.weak .. '</span>' end
  503. result = result .. styles.h .. '|Reflects' .. styles.h .. '|Absorbs' .. styles.h .. '|Void' .. styles.h .. '|Resists' .. styles.h .. '|Weak'
  504. if prop.boost then
  505. result = result .. styles.h .. '|Boost'
  506. end
  507. result = result .. '\n|-\n' .. styles.statlow .. prop.reflect .. styles.statlow .. prop.absorb .. styles.statlow .. prop.block .. styles.statlow .. prop.resist .. styles.statlow .. prop.weak
  508. if prop.boost then
  509. result = result .. styles.statlow .. prop.boost
  510. end
  511. result = result .. '\n|}'
  512. end
  513. if (gameg == 'p2is' or gameg == 'p2ep') and (prop.sword or prop.pierce or prop.strike or prop.thrown or prop.rush or prop.fire or prop.water or prop.wind or prop.earth or prop.ice or prop.elec or prop.nuke or prop.expel or prop.dark or prop.alm or prop.nerve or prop.mind) then
  514. result = result .. styles.table2
  515. if not prop.sword then prop.sword = '-' end
  516. if not prop.pierce then prop.pierce = '-' end
  517. if not prop.strike then prop.strike = '-' end
  518. if not prop.thrown then prop.thrown = '-' end
  519. if not prop.rush then prop.rush = '-' end
  520. if not prop.fire then prop.fire = '-' end
  521. if not prop.water then prop.water = '-' end
  522. if not prop.wind then prop.wind = '-' end
  523. if not prop.earth then prop.earth = '-' end
  524. if not prop.ice then prop.ice = '-' end
  525. if not prop.elec then prop.elec = '-' end
  526. if not prop.nuke then prop.nuke = '-' end
  527. if not prop.expel then prop.expel = '-' end
  528. if not prop.dark then prop.dark = '-' end
  529. if not prop.alm then prop.alm = '-' end
  530. if not prop.nerve then prop.nerve = '-' end
  531. if not prop.mind then prop.mind = '-' end
  532. if prop.etype == 'Fire' then prop.Fi = '<span style="color:#8B668B">Fi</span>' else prop.Fi = 'Fi' end
  533. if prop.etype == 'Water' then prop.Wt = '<span style="color:#8B668B">Wt</span>' else prop.Wt = 'Wt' end
  534. if prop.etype == 'Wind' then prop.Wi = '<span style="color:#8B668B">Wi</span>' else prop.Wi = 'Wi' end
  535. if prop.etype == 'Earth' then prop.Er = '<span style="color:#8B668B">Er</span>' else prop.Er = 'Er' end
  536. if gameg == 'p2ep' then
  537. prop.name_Rn = 'title="Shot"|Sh'
  538. prop.name_Hv = 'title="Attack"|Ak'
  539. prop.name_El = 'title="Lightning"|Ln'
  540. prop.name_Li = 'title="Holy"|Ho'
  541. else
  542. prop.name_Rn = 'title="Ranged"|Rn'
  543. prop.name_Hv = 'title="Havoc"|Hv'
  544. prop.name_El = 'title="Electricity"|El'
  545. prop.name_Li = 'title="Light"|Li'
  546. end
  547. result = result .. styles.h .. 'title="Sword"|Sw' .. styles.h .. prop.name_Rn .. styles.h .. 'title="Strike"|Sk' .. styles.h .. 'title="Thrown"|Th' .. styles.h .. prop.name_Hv .. styles.h .. 'style="background:#8E283D" title="Fire"|' .. prop.Fi .. styles.h .. 'style="background:#8E283D" title="Water"|' .. prop.Wt .. styles.h .. 'style="background:#8E283D" title="Wind"|' .. prop.Wi .. styles.h .. 'style="background:#8E283D" title="Earth"|' .. prop.Er .. styles.h .. 'title="Ice"|Ic' .. styles.h .. prop.name_El .. styles.h .. 'title=.nuke"|Nc' .. styles.h .. prop.name_Li .. styles.h .. 'title="Dark"|Dk' .. styles.h .. 'title="Almighty"|Al' .. styles.h .. 'title="Nerve"|Nr' .. styles.h .. 'title="Mind"|Mn\n|-\n'
  548. result = result .. styles.statlow .. prop.sword .. styles.statlow .. prop.pierce .. styles.statlow .. prop.strike .. styles.statlow .. prop.thrown .. styles.statlow .. prop.rush .. styles.statlow .. prop.fire .. styles.statlow .. prop.water .. styles.statlow .. prop.wind .. styles.statlow .. prop.earth .. styles.statlow .. prop.ice .. styles.statlow .. prop.elec .. styles.statlow .. prop.nuke .. styles.statlow .. prop.expel .. styles.statlow .. prop.dark .. styles.statlow .. prop.alm .. styles.statlow .. prop.nerve .. styles.statlow .. prop.mind .. '\n|}'
  549. end
  550. if gameg == 'pq' or gameg == 'pq2' and (prop.sword or prop.pierce or prop.strike or prop.phys or prop.fire or prop.water or prop.elec or prop.wind or prop.nuke or prop.psy or prop.expel or prop.dark or prop.alm or prop.ko or prop.sleep or prop.panic or prop.poison or prop.paralyze or prop.down or prop.stbind or prop.mabind or prop.agbind) then
  551. result = result .. styles.table2
  552. if not prop.sword then prop.sword = '-' end
  553. if not prop.pierce then prop.pierce = '-' end
  554. if not prop.strike then prop.strike = '-' end
  555. if not prop.phys then prop.phys = '-' end
  556. if not prop.fire then prop.fire = '-' end
  557. if not prop.ice then prop.ice = '-' end
  558. if not prop.elec then prop.elec = '-' end
  559. if not prop.wind then prop.wind = '-' end
  560. if not prop.nuke then prop.nuke = '-' end
  561. if not prop.psy then prop.psy = '-' end
  562. if not prop.expel then prop.expel = '-' end
  563. if not prop.dark then prop.dark = '-' end
  564. if not prop.alm then prop.alm = '-' end
  565. if not prop.sleep then prop.sleep = '-' end
  566. if not prop.panic then prop.panic = '-' end
  567. if not prop.poison then prop.poison = '-' end
  568. if not prop.curse then prop.curse = '-' end
  569. if not prop.paralyze then prop.paralyze = '-' end
  570. if not prop.stbind then prop.stbind = '-' end
  571. if not prop.mabind then prop.mabind = '-' end
  572. if not prop.agbind then prop.agbind = '-' end
  573. if not prop.down then prop.down = '-' end
  574. if not prop.ko then prop.ko = '-' end
  575. if not (prop.arcana and (prop.hp or prop.mp)) then
  576. if gameg == 'pq' then
  577. result = result .. styles.h .. 'width=10%|Cut' .. styles.h .. 'width=10%|Stab' .. styles.h .. 'width=10%|Bash' .. styles.h .. 'width=10%|Fire' .. styles.h .. 'width=10%|Ice' .. styles.h .. 'width=10% title="Electricity"|Elec' .. styles.h .. 'width=10%|Wind' .. styles.h .. 'width=10%|Light' .. styles.h .. 'width=10%|Dark' .. styles.h .. 'width=10% title="Almighty"|Alm\n|-\n' .. styles.statlow .. prop.sword .. styles.statlow .. prop.pierce .. styles.statlow .. prop.strike .. styles.statlow .. prop.fire .. styles.statlow .. prop.ice .. styles.statlow .. prop.elec .. styles.statlow .. prop.wind .. styles.statlow .. prop.expel .. styles.statlow .. prop.dark .. styles.statlow .. prop.alm .. '\n|}'
  578. else
  579. result = result .. styles.h .. 'width=10%|Phys' .. styles.h .. 'width=10%|Fire' .. styles.h .. 'width=10%|Ice' .. styles.h .. 'width=10% title="Electricity"|Elec' .. styles.h .. 'width=10%|Wind' .. styles.h .. 'width=10% title="Psychokinesis"|Psy' .. styles.h .. 'width=10% title=.nuke"|Nuke' .. styles.h .. 'width=10%|Bless' .. styles.h .. 'width=10%|Curse' .. styles.h .. 'width=10% title="Almighty"|Alm\n|-\n' .. styles.statlow .. prop.phys .. styles.statlow .. prop.fire .. styles.statlow .. prop.ice .. styles.statlow .. prop.elec .. styles.statlow .. prop.wind .. styles.statlow .. prop.psy .. styles.statlow .. prop.nuke .. styles.statlow .. prop.expel .. styles.statlow .. prop.dark .. styles.statlow .. prop.alm .. '\n|}'
  580. end
  581. end
  582. if not prop.arcana then --enemy only
  583. if gameg == 'pq' then
  584. result = result .. styles.table2 .. styles.h .. 'width=10%|Sleep' .. styles.h .. 'width=10%|Panic' .. styles.h .. 'width=10%|Poison' .. styles.h .. 'width=10%|Curse' .. styles.h .. 'width=10%|Paralysis' .. styles.h .. 'width=10% title="Strength Bind"|S-Bind' .. styles.h .. 'width=10% title="Magic Bind"|M-Bind' .. styles.h .. 'width=10% title="Agility Bind"|A-Bind' .. styles.h .. 'width=10%|Down' .. styles.h .. 'width=10% title="Instant Kill"|KO\n|-' .. styles.statlow .. prop.sleep .. styles.statlow .. prop.panic .. styles.statlow .. prop.poison .. styles.statlow .. prop.curse .. styles.statlow .. prop.paralyze .. styles.statlow .. prop.stbind .. styles.statlow .. prop.mabind .. styles.statlow .. prop.agbind .. styles.statlow .. prop.down .. styles.statlow .. prop.ko .. '\n|}'
  585. else
  586. result = result .. styles.table2 .. styles.h .. 'width=10%|Sleep' .. styles.h .. 'width=10%|Confuse' .. styles.h .. 'width=10%|Poison' .. styles.h .. 'width=10%|Hex' .. styles.h .. 'width=10%|Paralysis' .. styles.h .. 'width=10% title="Strength Bind"|S-Bind' .. styles.h .. 'width=10% title="Magic Bind"|M-Bind' .. styles.h .. 'width=10% title="Agility Bind"|A-Bind' .. styles.h .. 'width=10%|Down' .. styles.h .. 'width=10% title="Instant Kill"|KO\n|-' .. styles.statlow .. prop.sleep .. styles.statlow .. prop.panic .. styles.statlow .. prop.poison .. styles.statlow .. prop.curse .. styles.statlow .. prop.paralyze .. styles.statlow .. prop.stbind .. styles.statlow .. prop.mabind .. styles.statlow .. prop.agbind .. styles.statlow .. prop.down .. styles.statlow .. prop.ko .. '\n|}'
  587. end
  588. end
  589. end
  590. if prop.restype then
  591. if game == 'p1' then
  592. result = result .. styles.table2 .. '\n!style="background:#a9a9a9" title="Weapons" colspan="8"|\n!title="Firearms" style="background:#898989" colspan="4"|\n!style="background:#a9a9a9" title="Havoc" colspan="2"|\n|-' .. styles.h .. 'title="Weapons"|<abbr title="1-handed Sword">1h</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="2-handed Sword">2h</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Spear">Sp</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Axe">Ax</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Whip">Wp</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Thrown">Th</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Arrows">Ar</abbr>' .. styles.h .. 'title="Weapons"|<abbr title="Fist">Fs</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Handgun">HG</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Machinegun">MG</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Shotgun">SG</abbr>' .. styles.h .. 'title="Firearms" style="background:#898989;width:7.12%"|<abbr title="Rifle">Ri</abbr>' .. styles.h .. 'title="Havoc"|<abbr title="Tech">Te</abbr>' .. styles.h .. 'title="Havoc"|<abbr title="Rush">Ru</abbr>\n|-'
  593. elseif game == 'p2is' or game == 'p2ep' then
  594. if prop.etype == 'Fire' then prop.Fi = '<span style="color:#8B668B">Fi</span>' else prop.Fi = 'Fi' end
  595. if prop.etype == 'Water' then prop.Wt = '<span style="color:#8B668B">Wt</span>' else prop.Wt = 'Wt' end
  596. if prop.etype == 'Wind' then prop.Wi = '<span style="color:#8B668B">Wi</span>' else prop.Wi = 'Wi' end
  597. if prop.etype == 'Earth' then prop.Er = '<span style="color:#8B668B">Er</span>' else prop.Er = 'Er' end
  598. if gameg == 'p2ep' then
  599. prop.name_Rn = 'title="Shot"|Sh'
  600. prop.name_Hv = 'title="Attack"|Ak'
  601. prop.name_El = 'title="Lightning"|Ln'
  602. prop.name_Li = 'title="Holy"|Ho'
  603. else
  604. prop.name_Rn = 'title="Ranged"|Rn'
  605. prop.name_Hv = 'title="Havoc"|Hv'
  606. prop.name_El = 'title="Electricity"|El'
  607. prop.name_Li = 'title="Light"|Li'
  608. end
  609. result = result .. styles.table2 .. styles.h .. 'title="Sword"|Sw' .. styles.h .. prop.name_Rn .. styles.h .. 'title="Strike"|Sk' .. styles.h .. 'title="Thrown"|Th' .. styles.h .. prop.name_Hv .. styles.h .. 'style="background:#8E283D" title="Fire"|' .. prop.Fi .. styles.h .. 'style="background:#8E283D" title="Water"|' .. prop.Wt .. styles.h .. 'style="background:#8E283D" title="Wind"|' .. prop.Wi .. styles.h .. 'style="background:#8E283D" title="Earth"|' .. prop.Er .. styles.h .. 'title="Ice"|Ic' .. styles.h .. prop.name_El .. styles.h .. 'title=.nuke"|Nc' .. styles.h .. prop.name_Li .. styles.h .. 'title="Dark"|Dk' .. styles.h .. 'title="Almighty"|Al' .. styles.h .. 'title="Nerve"|Nr' .. styles.h .. 'title="Mind"|Mn\n|-'
  610. end
  611. if require('Module:psk/' .. gameg .. '/res').restypes[prop.restype] == nil then
  612. result = result .. '\n|colspan=16 align=center style="color:#f00;font-size:120%;font-weight:bold"|Invalid value of "' .. prop.restype .. '" for restype. Correct value or edit [[Module:psk/' .. gameg .. '/res]].'
  613. else
  614. for i, v in ipairs(require('Module:psk/' .. gameg .. '/res').restypes[prop.restype]) do
  615. if game == 'p1' then
  616. if i > 14 then break end
  617. result = result .. resoutput(v,4,gameg)
  618. elseif game == 'p2is' or game == 'p2ep' then
  619. result = result .. resoutput(v,4,gameg)
  620. else
  621. result = result .. resoutput(v,8,gameg)
  622. end
  623. end
  624. end
  625. result = result .. '\n|}'
  626. if game == 'p1' then
  627. result = result .. styles.table2 .. '\n|-\n!style="background:#a9a9a9" title="Element" colspan="4"|\n!style="background:#898989" title="Force" colspan="4"|\n!style="background:#a9a9a9" title="Light" colspan="2"|\n!style="background:#898989" title="Dark" colspan="3"|\n!style="background:#a9a9a9" title="Special" colspan="1"|\n|-' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Fire">Fi</abbr>' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Ice">Ic</abbr>' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Wind">Wi</abbr>' .. styles.h .. 'width="7.12%" title="Element"|<abbr title="Earth">Er</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title="Electricity">El</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title=.nuke">Nc</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title="Blast">Bl</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Force"|<abbr title="Gravity">Gr</abbr>' .. styles.h .. 'title="Light"|<abbr title="Expel">Ex</abbr>' .. styles.h .. 'title="Light"|<abbr title="Miracle">Mi</abbr>' .. styles.h .. 'style="background:#898989" title="Dark"|<abbr title="Death">De</abbr>' .. styles.h .. 'style="background:#898989" title="Dark"|<abbr title="Curse">Cu</abbr>' .. styles.h .. 'style="background:#898989;width:7.12%" title="Dark (Ailments)"|<abbr title="Nerve">Nr</abbr>' .. styles.h .. 'width="7.12%" title="Special"|<abbr title="Resistance to Hieroglyphein">???</abbr>\n|-'
  628. for i , v in ipairs(require('Module:psk/' .. gameg .. '/res').restypes[prop.restype]) do
  629. if i < 15 then
  630. else
  631. result = result .. resoutput(v,4,gameg)
  632. end
  633. end
  634. result = result .. '\n|}'
  635. end
  636. end
  637. if gameg == 'p2is' or gameg == 'p2ep' then
  638. if prop.card or prop.material or prop.type1 or prop.type2 or prop.type3 then
  639. result = result .. styles.table2 .. styles.h .. 'colspan=4|Summon Information\n|-'
  640. if prop.material then
  641. result = result .. styles.skill .. '[[Material Card|' .. styles.spanc .. 'Material Card</span>]]' .. styles.effect1 .. '[[File:Material_Card_Icon_(P2ISP).png|alt=|link=]] <span style="color:yellow;font-weight:bold">' .. prop.material .. '</span> Card'
  642. end
  643. if prop.card then
  644. result = result .. styles.skillc .. '[[Tarot Card|' .. styles.spanc .. 'Tarot Cards</span>]]' .. styles.effect1 .. '<span style="color:yellow;font-weight:bold">' .. prop.card .. ' [[File:Tarot_Card_Symbol_2.png|alt=|link=]] ' .. prop.arcana .. '</span> Cards'
  645. end
  646. local effect1
  647. if prop.material then
  648. effect1 = '\n|colspan=3 style="background:#222;text-align:left"|'
  649. else
  650. effect1 = styles.effect1
  651. end
  652. if prop.type1 then
  653. result = result .. styles.skill .. prop.type1 .. effect1 .. prop.desc1
  654. end
  655. if prop.type2 then
  656. result = result .. styles.skill .. prop.type2 .. effect1 .. prop.desc2
  657. end
  658. if prop.type3 then
  659. result = result .. styles.skill .. prop.type3 .. effect1 .. prop.desc3
  660. end
  661. result = result .. '\n|}'
  662. end
  663. end
  664. if prop.fusion then
  665. result = result .. styles.table2 .. styles.h .. 'width=100px|[[Special fusion#' .. gamegn .. '|' .. styles.spanc .. 'Special fusion</span>]]' .. styles.order .. prop.fusion .. '\n|}'
  666. end
  667. local skill, alias, skillcell, skille, cost, effect, pre, range, power, target
  668. if prop.dskills then
  669. result = result .. styles.table2 .. styles.h .. 'colspan=3|[[List of ' .. gamegn .. ' Skills|' .. styles.spanc .. 'Default Skills</span>]]' .. styles.skill .. 'Skill' .. styles.skillc .. 'Cost' .. styles.skillc .. 'Effect'
  670. for k, v in ipairs(mw.text.split(prop.dskills, '\n')) do
  671. skill = data.skills[v]
  672. if not skill then
  673. alias = data.aliases[v]
  674. if alias then
  675. v = alias
  676. skill = data.skills[v]
  677. end
  678. end
  679. if v == '' then
  680. skillcell = ''
  681. cost = ''
  682. effect = noskill()
  683. elseif not skill then
  684. skillcell = ''
  685. cost = ''
  686. effect = noskill(v,gamed)
  687. elseif skill then
  688. cost = skill.cost
  689. effect = skill.effect
  690. if (k % 2 == 0) then
  691. cost = styles.cost2 .. cost
  692. effect = styles.effect2 .. effect
  693. else
  694. cost = styles.cost1 .. cost
  695. effect = styles.effect1 .. effect
  696. end
  697. if skill.name then v = skill.name end
  698. skillcell = styles.skill .. v
  699. end
  700. result = result .. skillcell .. cost .. effect
  701. end
  702. result = result .. '\n|}'
  703. end
  704. if prop.skills then
  705. result = result .. styles.table2h
  706. if gameg == 'p5' then
  707. result = result .. '"\n!colspan=4 style="background-color: ' .. getGames.games[gameg].colorb .. ';background: linear-gradient(120deg, ' .. getGames.games[gameg].colorb .. ' 42%, #000 42.1%, #000 43%, #fff 43.1%, #fff 57%, #000 57.1%, #000 58%, ' .. getGames.games[gameg].colorb .. ' 58.1%"|[[List of ' .. gamegn .. ' Skills|<span style="color:black;text-shadow:-3px 3px 3px #0ff">List of Skills</span>]]'
  708. else
  709. result = result .. '"' .. styles.h .. 'colspan=4|[[List of ' .. gamegn .. ' Skills|' .. styles.spanc .. 'List of Skills</span>]]'
  710. end
  711. if ((gameg == 'p1' or gameg == 'p2is' or gameg == 'p2ep' or gameg == 'p3' or gameg == 'p4' or gameg == 'p5') and prop.hp) or ((gameg == 'pq' or gameg == 'pq2') and not prop.arcana) or prop.boss or prop.enemy then -- skill - effect (optional: Inheritable Skill or Rumor Skill)
  712. result = result .. styles.skill .. '技能' .. styles.skillc .. '效果'
  713. for k1, v1 in ipairs(mw.text.split(prop.skills, '\n')) do
  714. for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do
  715. if k2 > 2 then break
  716. elseif (k2 % 2 == 1) then
  717. skill = data.skills[v2]
  718. if not skill then
  719. alias = data.aliases[v2]
  720. if alias then
  721. v2 = alias
  722. skill = data.skills[v2]
  723. end
  724. end
  725. if skill then
  726. if skill.combo then
  727. skill.effect = '<div style="background:' .. getGames.games[gameg].colorbg .. ';border-radius:5px;float:left;margin-right:5px">2x </div> ' .. skill.effect
  728. elseif skill.smirk then
  729. skill.effect = skill.effect .. ' <span style="background:' .. getGames.games[gameg].statb .. ';border-radius:5px;padding:3px">Smirk</span> ' .. skill.smirk
  730. end
  731. end
  732. if v2 == '' then
  733. skillcell = ''
  734. effect = noskill()
  735. elseif not skill then
  736. skillcell = ''
  737. effect = noskill(v2,gamed)
  738. elseif skill then
  739. if (k1 % 2 == 0) then
  740. effect = styles.effect2 .. skill.effect
  741. else
  742. effect = styles.effect1 .. skill.effect
  743. end
  744. if skill.name then v2 = skill.name end
  745. skillcell = styles.skill .. v2
  746. end
  747. result = result .. skillcell .. effect
  748. elseif (k2 % 2 == 0) then
  749. if v2 == 'I' or v2 == 'i' then
  750. result = result .. '<div style="float:right;background:#696969;border-radius:15px;padding:0 10px">Inheritable Skill</div>'
  751. elseif v2 == 'R' or v2 == 'r' then
  752. result = result .. '<div style="float:right;background:#8E283D;border-radius:15px;padding:0 10px">[[Misc Skills#Rumor Magic|<span style="color:#fff">Rumor Skill</span>]]</div>'
  753. else
  754. result = result
  755. end
  756. end
  757. end
  758. end
  759. else
  760. if gameg == 'p1' or gameg == 'p2is' or gameg == 'p2ep' then -- rank - skill - cost - effect
  761. result = result .. styles.skill .. 'Rank' .. styles.skillc .. 'Skill' .. styles.skillc .. 'Effect'
  762. for k1, v1 in ipairs(mw.text.split(prop.skills, '\n')) do
  763. for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do
  764. if k2 > 2 then break
  765. elseif (k2 % 2 == 1) then
  766. if v2 == 'M' or v2 == 'm' then
  767. v2 = '[[突變(女神異聞錄)|<span style="color:#fff">突變</span>]]'
  768. elseif v2 == 'R' or v2 == 'r' then
  769. v2 = '[[流言(女神異聞錄)|<span style="color:#fff">流言</span>]]'
  770. else
  771. v2 = v2
  772. end
  773. result = result .. styles.skill .. v2
  774. elseif (k2 % 2 == 0) then
  775. skill = data.skills[v2]
  776. if not skill then
  777. alias = data.aliases[v2]
  778. if alias then
  779. v2 = alias
  780. skill = data.skills[v2]
  781. end
  782. end
  783. if v2 == '' then
  784. skillcell = ''
  785. cost = ''
  786. range = ''
  787. power = ''
  788. target = ''
  789. effect = noskill()
  790. elseif not skill then
  791. skillcell = ''
  792. cost = ''
  793. range = ''
  794. power = ''
  795. target = ''
  796. effect = noskill(v2,gamed)
  797. elseif skill then
  798. if (k1 % 2 == 0) then
  799. if gameg == 'smtim' or gameg == 'ab' then cost = styles.cost2 .. skill.cost else cost = '' end
  800. if gameg == 'ab' then
  801. range = styles.cost2 .. skill.range
  802. power = styles.cost2 .. skill.power
  803. target = styles.cost2 .. skill.target
  804. else
  805. range = ''
  806. power = ''
  807. target = ''
  808. end
  809. effect = styles.effect2 .. skill.effect
  810. else
  811. if gameg == 'smtim' or gameg == 'ab' then cost = styles.cost1 .. skill.cost else cost = '' end
  812. if gameg == 'ab' then
  813. range = styles.cost1 .. skill.range
  814. power = styles.cost1 .. skill.power
  815. target = styles.cost1 .. skill.target
  816. else
  817. range = ''
  818. power = ''
  819. target = ''
  820. end
  821. effect = styles.effect1 .. skill.effect
  822. end
  823. if skill.name then v2 = skill.name end
  824. skillcell = styles.skillc .. v2
  825. end
  826. result = result .. skillcell .. cost .. range .. power .. target .. effect
  827. end
  828. end
  829. end
  830. else -- skill - cost - effect - level
  831. result = result .. styles.skill .. 'Skill' .. styles.skillc .. 'Cost' .. styles.skillc .. 'Effect' .. styles.skillc .. 'Level'
  832. for k1, v1 in ipairs(mw.text.split(prop.skills, '\n')) do -- Any entry on new line within "Skills" parameter is treated as new skill name.
  833. for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do -- Entry after backslash after skill name is treated as "level" for learning new skill per level gain. Any entry starting from second backslash on the same line is ignored until a new line.
  834. if k2 > 2 then break
  835. elseif (k2 % 2 == 1) then -- this checks level (false) or skill name (true) divided by the backslash.
  836. skill = data.skills[v2] -- now v2 represents skill name.
  837. if not skill then
  838. alias = data.aliases[v2]
  839. if alias then
  840. v2 = alias
  841. skill = data.skills[v2]
  842. end
  843. end
  844. if v2 == '' then
  845. skillcell = ''
  846. cost = ''
  847. effect = noskill()
  848. elseif not skill then
  849. skillcell = ''
  850. cost = ''
  851. effect = noskill(v2,gamed)
  852. elseif skill then
  853. cost = skill.cost
  854. if gameg == 'p5' then
  855. if string.match(skill.cost, 'HP') then
  856. cost = '<span style="color:' .. getGames.games[gameg].hp2 .. '">' .. skill.cost .. '</span>' -- tints cyan for phys skill
  857. elseif string.match(skill.cost, 'SP') then
  858. cost = '<span style="color:' .. getGames.games[gameg].mp2 .. '">' .. skill.cost .. '</span>' -- tints pink for magic skill
  859. end
  860. end
  861. if skill.smirk then
  862. skill.effect = skill.effect .. ' <span style="background:' .. getGames.games[gameg].statb .. ';border-radius:5px;padding:3px">Smirk</span> ' .. skill.smirk
  863. end
  864. if (k1 % 2 == 0) then
  865. cost = styles.cost2 .. cost
  866. effect = styles.effect2 .. skill.effect
  867. else
  868. cost = styles.cost1 .. cost
  869. effect = styles.effect1 .. skill.effect
  870. end
  871. if skill.name then v2 = skill.name end
  872. skillcell = styles.skill .. v2
  873. end
  874. result = result .. skillcell .. cost .. effect
  875. elseif (k2 % 2 == 0) then -- this checks level (ture) or skill name (false) divided by the backslash.
  876. if v2 == 'i' or v2 == 'I' or v2 == 'innate' or v2 == 'default' or v2 == 'Default' -- now v2 represents skill level.
  877. then v2 = '固有'
  878. end
  879. if (k1 % 2 == 0) then -- this checks even (true) or odd (false) number row.
  880. result = result .. styles.cost2 .. v2 -- "v2" represents "Level" within "Skills" parameter on each new line after the backslash.
  881. else
  882. result = result .. styles.cost1 .. v2
  883. end
  884. end
  885. end
  886. end
  887. end
  888. end
  889. result = result .. '\n|}'
  890. end
  891. if prop.fskills then
  892. result = result .. styles.table2 .. styles.h .. 'colspan="5"'
  893. if gameg == 'p2is' or gameg == 'p2ep' then
  894. result = result .. '|[[人格面具/魔法合成/' .. gamegn .. '|' .. styles.spanc .. 'Unique Fusion Spells</span>]]' .. styles.skill .. 'Skill' .. styles.skillc .. 'Effect' .. styles.skillc .. 'Order/Skill/Persona'
  895. for k, v in ipairs(mw.text.split(prop.fskills, '\n')) do
  896. skill = data.skills[v]
  897. if not skill then
  898. alias = data.aliases[v]
  899. if alias then
  900. v = alias
  901. skill = data.skills[v]
  902. end
  903. end
  904. if v == '' then
  905. skillcell = ''
  906. cost = ''
  907. effect = noskill()
  908. elseif not skill then
  909. skillcell = ''
  910. cost = ''
  911. effect = noskill(v,gamed)
  912. elseif skill then
  913. if (k % 2 == 0) then
  914. effect = styles.effect2 .. skill.effect
  915. else
  916. effect = styles.effect1 .. skill.effect
  917. end
  918. if skill.name then v = skill.name end
  919. skillcell = styles.skill .. v
  920. cost = styles.order .. skill.cost
  921. end
  922. result = result .. skillcell .. effect .. cost
  923. end
  924. elseif gameg == 'p3' then
  925. local cost, effect, pre
  926. if not data.skills[prop.fskills] then
  927. cost = ''
  928. effect = noskill(prop.fskills,gamed)
  929. pre = ''
  930. fskills = ''
  931. else
  932. cost = styles.cost1 .. data.skills[prop.fskills].cost
  933. effect = styles.effect1 .. data.skills[prop.fskills].effect
  934. pre = styles.cost1 .. data.skills[prop.fskills].pre
  935. prop.fskills = styles.skill .. prop.fskills
  936. end
  937. result = result .. '|[[人格面具/技能/女神異聞錄3|' .. styles.spanc .. '魔法合成</span>]] <abbr title="僅 P3 和 P3F;P3P 使用物品且無需擁有原面具。">*</abbr>' .. styles.skill .. 'Skill' .. styles.skillc .. 'Cost' .. styles.skillc .. 'Effect' .. styles.skillc .. '<abbr title="僅 P3 和 P3F">先決條件</abbr>' .. prop.fskills .. cost .. effect .. pre
  938. end
  939. result = result .. '\n|}'
  940. end
  941. if prop.pskills then
  942. result = result .. styles.table2 .. styles.h .. 'colspan=3|[[人格面具/技能/' .. gamegn .. '#被動技能|' .. styles.spanc .. '被動技能</span>]]' .. '\n|-style="border:0"\n|style="padding:0;width:33%"|\n|style="padding:0;width:33%"|\n|style="padding:0;width:33%"|'
  943. for k, v in ipairs(mw.text.split(prop.pskills, '\n')) do
  944. skill = data.skills[v]
  945. if not skill then
  946. alias = data.aliases[v]
  947. if alias then
  948. v = alias
  949. skill = data.skills[v]
  950. end
  951. end
  952. if v == '' or v == '-' or v == '--' then
  953. skillcell = ''
  954. elseif not skill then
  955. skillcell = styles.skill3 .. '"|' .. v
  956. else
  957. if skill.name then v = skill.name end
  958. skillcell = styles.skill3 .. '" title="消耗: ' .. skill.cost .. '; ' .. skill.effect .. '"|' .. v
  959. end
  960. if (k % 3 == 1) then
  961. result = result .. '\n|-' .. skillcell
  962. else
  963. result = result .. skillcell
  964. end
  965. end
  966. result = result .. '\n|}'
  967. end
  968. if gameg == 'p2ep' and prop.unknown then
  969. result = result .. styles.table2 .. styles.h .. 'colspan="2"|[[Unknown Power|' .. styles.spanc .. 'Unknown Power</span>]]' .. styles.skill
  970. prop.unknown = prop.unknown:lower()
  971. if prop.unknown == 'attack type' or prop.unknown == 'attack-type' or prop.unknown == 'attack' then
  972. result = result .. 'Attack Type' .. styles.cost1 .. 'Deals <abbr title="Equipper has ' .. "'Great'" .. ' affinity with the Persona">500</abbr> or <abbr title="Equipper has ' .. "'Good'" .. ' affinity with the Persona">250</abbr> non-elemental damage to all enemies.'
  973. elseif prop.unknown == 'defense type' or prop.unknown == 'defense-type' or prop.unknown == 'defense' then
  974. result = result .. 'Defense Type' .. styles.cost1 .. '<abbr title="Equipper has ' .. "'Great'" .. ' affinity with the Persona">Reflects</abbr> or <abbr title="Equipper has ' .. "'Good'" .. ' affinity with the Persona">nullifies</abbr> the incoming attack.'
  975. elseif prop.unknown == 'assist type' or prop.unknown == 'assist-type' or prop.unknown == 'assist' then
  976. result = result .. 'Assist Type' .. styles.cost1 .. 'Bestows Tarukaja + Makakaja <abbr title="Only applicable when the equipper has ' .. "'Great'" .. ' affinity with the Persona">(or Rakukaja + Samakaja in addition)</abbr>'
  977. elseif prop.unknown == 'recovery type' or prop.unknown == 'recovery-type' or prop.unknown == 'recovery' then
  978. result = result .. 'Recovery Type' .. styles.cost1 .. 'Fully recovers HP <abbr title="Only applicable when the equipper has ' .. "'Great'" .. ' affinity with the Persona">(or removes ailment in addition)</abbr>.'
  979. elseif prop.unknown == 'revival type' or prop.unknown == 'revival-type' or prop.unknown == 'revival' then
  980. result = result .. 'Revival Type' .. styles.cost1 .. 'Revives from unconscious with <abbr title="Equipper has ' .. "'Great'" .. ' affinity with the Persona">full</abbr> or <abbr title="Equipper has ' .. "'Good'" .. ' affinity with the Persona">1/4</abbr> HP.'
  981. elseif prop.unknown == 'special type' or prop.unknown == 'special-type' or prop.unknown == 'special' then
  982. result = result .. 'Special Type' .. styles.cost1 .. 'Eliminates all enemies when the user is unconscious.'
  983. end
  984. result = result .. '\n|}'
  985. end
  986. result = result .. '\n|}'
  987. return result
  988. end
  989. p.row = makeInvokeFunction('_row')
  990. function p._row(args)
  991. local row = args[1]
  992. local game = args[2]
  993. local code = args[3]
  994. if not code or code == '' then return '' end
  995. local level = args[4]
  996. if not level then level = '' end
  997. if level == 'i' or level == 'I' or level == 'innate' or level == 'default' or level == 'Default' then level = 'Innate' end
  998. local data = require('Module:psk/' .. game)
  999. skill = data.skills[code]
  1000. if not skill then
  1001. alias = data.aliases[code]
  1002. if alias then
  1003. code = alias
  1004. skill = data.skills[code]
  1005. else
  1006. return noskill(code,game)
  1007. end
  1008. end
  1009. if skill.name then code = skill.name end
  1010. local skillcell = styles.skill .. code
  1011. local cost = skill.cost
  1012. local cost1 = '\n||' .. cost
  1013. local cost2 = styles.cost2 .. cost
  1014. local effect1 = styles.effect1 .. skill.effect
  1015. local effect2 = styles.effect2 .. skill.effect
  1016. local order = styles.order .. skill.cost
  1017. local element1, element2
  1018. if skill.element then
  1019. element1 = '\n||' .. skill.element or ''
  1020. element2 = styles.cost2 .. skill.element or ''
  1021. end
  1022. local level1, level2
  1023. if skill.pre then
  1024. level1 = '\n||' .. skill.pre
  1025. level2 = styles.cost2 .. skill.pre
  1026. elseif level == '' then
  1027. level1 = '\n||'
  1028. level2 = styles.cost2
  1029. elseif level then
  1030. level1 = '\n||' .. level
  1031. level2 = styles.cost2 .. level
  1032. end
  1033. local result
  1034. if row == 'r01' then
  1035. result = skillcell .. effect1 -- Odd number row for enemy whose skill cost is irrelevant.
  1036. elseif row == 'r02' then
  1037. result = skillcell .. effect2 -- Even number row for enemy whose skill cost is irrelevant.
  1038. elseif row == 'r11' then
  1039. result = skillcell .. cost1 .. effect1 -- Odd number row for demon which does not learn new skill on level gain.
  1040. elseif row == 'r12' then
  1041. result = skillcell .. cost2 .. effect2 -- Even number row for demon which does not learn new skill on level gain.
  1042. elseif row == 'r21' then
  1043. result = skillcell .. cost1 .. effect1 .. level1 -- Odd number row for demon/persona which learn new skill on level gain.
  1044. elseif row == 'r22' then
  1045. result = skillcell .. cost2 .. effect2 .. level2 -- Even number row for demon/persona which learn new skill on level gain.
  1046. elseif row == 'r31' then
  1047. result = skillcell .. effect1 .. level1 -- Odd number row for guest who learn new skill on level gain.
  1048. elseif row == 'r32' then
  1049. result = skillcell .. effect2 .. level2 -- Even number row for guest who learn new skill on level gain.
  1050. elseif row == 'p12' then
  1051. result = styles.skill .. level .. styles.skillc .. code .. effect1 -- Row for Persona 1 and 2 persona
  1052. elseif row == 'rf' then
  1053. result = skillcell .. effect1 .. order -- Row for Persona-specific fusion spell.
  1054. else
  1055. result = '<strong style="color:red;font-size:150%">Invalid parameter 1 of ' .. '"' .. row .. '".</strong>' .. cate('Templates with unrecognizable row value for Module:psk')
  1056. end
  1057. return result
  1058. end
  1059. return p