← 모듈:궤적시리즈/하늘의 궤적/퀵배틀 공격표문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. local p = {} local headers = { "기술명", "위력", "데미지 배율", "히트 수", "차지 게이지 회복량", "스턴", "넉백" } local function splitRow(row) local t = {} for v in mw.text.gsplit(row, "%s*,%s*") do t[#t+1] = v end return t end function p.table(frame) local args = frame.args local html = '{| class="wikitable" style="text-align:center; width:100%"\n' -- header html = html .. '|-\n' for _, h in ipairs(headers) do html = html .. '! style="background:#656565; color:#fff; font-weight:bold;" | ' .. h .. '\n' end local i = 1 while args['row' .. i] do local cols = splitRow(args['row' .. i]) html = html .. '|-\n' -- 기술명(1열) 볼드 처리 if cols[1] then cols[1] = "'''" .. cols[1] .. "'''" end html = html .. '| ' .. table.concat(cols, ' || ') .. '\n' i = i + 1 end html = html .. '|}' return html end return p 이 문서에서 사용한 틀: 모듈:궤적시리즈/하늘의 궤적/퀵배틀 공격표 (원본 보기) 모듈:궤적시리즈/하늘의 궤적/퀵배틀 공격표/설명문서 (원본 보기) 모듈:궤적시리즈/하늘의 궤적/퀵배틀 공격표 문서로 돌아갑니다.