시스템 메시지 목록

SKY's Kingshot
미디어위키 이름공간에 있는 모든 시스템 메시지의 목록입니다. 미디어위키의 번역 작업에 관심이 있으면 미디어위키 지역화translatewiki.net에 참가해주세요.
시스템 메시지 목록
처음 문서이전 문서다음 문서마지막 문서
이름 기본 메시지 글
현재 문자열
clearyourcache (토론) (번역) <strong>참고:</strong> 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다. * <strong>파이어폭스 / 사파리:</strong> <em>Shift</em> 키를 누르면서 새로 고침을 클릭하거나, <em>Ctrl-F5</em> 또는 <em>Ctrl-R</em>을 입력 (Mac에서는 <em>⌘-R</em>) * <strong>구글 크롬:</strong> <em>Ctrl-Shift-R</em>키를 입력 (Mac에서는 <em>⌘-Shift-R</em>) * <strong>엣지:</strong> <em>Ctrl</em> 키를 누르면서 새로 고침을 클릭하거나, <em>Ctrl-F5</em>를 입력.
collapsible-collapse (토론) (번역) 접기
collapsible-collapse-all-text (토론) (번역) 모두 숨기기
collapsible-collapse-all-tooltip (토론) (번역) 현재 페이지에서 접을 수 있는 요소를 모두 접습니다
collapsible-expand (토론) (번역) 펼치기
collapsible-expand-all-text (토론) (번역) 모두 펼치기
collapsible-expand-all-tooltip (토론) (번역) 현재 페이지에서 접을 수 있는 요소를 모두 펼칩니다
colon-separator (토론) (번역) :
comma-separator (토론) (번역) ,
common.css (토론) (번역) /* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* ======================================= SKY's Kingshot 하드코어 게이밍 테마 v2.0 ======================================= */ /* 킹샷 감성의 세련된 웹 폰트 로드 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700;900&display=swap'); /* 1. 전체 배경 (은은한 오렌지빛 조명이 비치는 다크 배경) */ body { background-color: #0b0b0e; background-image: radial-gradient(circle at 50% 0%, #2e1a0b 0%, #0b0b0e 60%); color: #d1d5db; font-family: 'Noto Sans KR', sans-serif; } /* 2. 상단 헤더 영역 (네온 글로우 효과) */ #mw-header-container { background-color: #121215; border-bottom: 2px solid #ff6600; box-shadow: 0 0 15px rgba(255, 102, 0, 0.4); /* 오렌지색 발광 효과 */ } /* 상단 글자 하얀색 강제 고정 */ #mw-header-container * { color: #ffffff !important; } /* 3. 본문 컨텐츠 영역 (반투명 글래스 느낌의 패널) */ #mw-content-container { background-color: rgba(22, 22, 26, 0.95); border: 1px solid #333; border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); padding: 25px; margin-top: 20px; } /* 4. 제목들(H1, H2)에 게이밍 네온 텍스트 효과 적용 */ h1.firstHeading, h2 { color: #ff8c00; border-bottom: 1px solid #333; padding-bottom: 8px; text-shadow: 0 0 10px rgba(255, 140, 0, 0.4); /* 글자 주변이 빛남 */ font-weight: 900; letter-spacing: -0.5px; } h3, h4 { color: #e0e0e0; font-weight: 700; } /* 5. 링크 스타일 (마우스 올렸을 때 빛나도록) */ a { color: #ffab40; transition: all 0.2s ease-in-out; } a:hover { color: #ffffff; text-shadow: 0 0 8px #ff8c00; text-decoration: none; } /* 6. 구글 번역기 버튼도 게임 UI처럼 변신 */ #google_translate_element { background-color: #121215 !important; border: 2px solid #ff8c00 !important; box-shadow: 0 0 15px rgba(255,140,0,0.4) !important; }
common.js (토론) (번역) /* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
/* ======================================= 1. 마우스 오른쪽 클릭 및 단축키 방지 ======================================= */ document.addEventListener('contextmenu', function(e) { e.preventDefault(); }); document.addEventListener('keydown', function(e) { if (e.key === 'F12' || (e.ctrlKey && e.key === 'c') || (e.ctrlKey && e.shiftKey && e.key === 'I')) { e.preventDefault(); } }); /* ======================================= 2. 항상 떠 있는(플로팅) 구글 자동 번역기 (언어 확장판) ======================================= */ $(document).ready(function() { // 중복 생성 방지 if(document.getElementById('google_translate_element')) return; // 번역기를 담을 박스 생성 var translateDiv = document.createElement('div'); translateDiv.id = 'google_translate_element'; // CSS 스타일 (화면 우측 하단 고정, 게이밍 디자인) translateDiv.style.position = 'fixed'; translateDiv.style.bottom = '20px'; translateDiv.style.right = '20px'; translateDiv.style.zIndex = '9999'; translateDiv.style.backgroundColor = '#121215'; translateDiv.style.border = '2px solid #FF8C00'; translateDiv.style.borderRadius = '8px'; translateDiv.style.padding = '5px 10px'; translateDiv.style.boxShadow = '0 0 15px rgba(255,140,0,0.4)'; // 화면에 추가 document.body.appendChild(translateDiv); // 구글 번역 스크립트 불러오기 var script = document.createElement('script'); script.type = 'text/javascript'; script.src = '//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit'; document.head.appendChild(script); }); // 구글 번역기 실행 함수 (언어 대폭 추가) window.googleTranslateElementInit = function() { new google.translate.TranslateElement({ pageLanguage: 'ko', includedLanguages: 'ko,en,zh-CN,zh-TW,ja,vi,ru,es,fr,de,th,id,ar,pt,tr,it,nl,pl,ms,tl,hi,uk,ro,hu,cs,sv,el,da,fi,no', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, autoDisplay: false }, 'google_translate_element'); }; /* ======================================= 3. 영웅 스탯 비교 계산기 구동 로직 (한글판 + 리스트 출력형) ======================================= */ $(document).ready(function() { // 현재 열린 페이지에 'HeroBox'가 없으면 작동하지 않음 (다른 문서 속도 저하 방지) if ($('#HeroBox').length === 0) return; // 한글화된 레벨/성급 데이터 const levelNames = [ "0성 (T0)","0성 (T1)","0성 (T2)","0성 (T3)","0성 (T4)","0성 (T5)", "1성 (T0)","1성 (T1)","1성 (T2)","1성 (T3)","1성 (T4)","1성 (T5)", "2성 (T0)","2성 (T1)","2성 (T2)","2성 (T3)","2성 (T4)","2성 (T5)", "3성 (T0)","3성 (T1)","3성 (T2)","3성 (T3)","3성 (T4)","3성 (T5)", "4성 (T0)","4성 (T1)","4성 (T2)","4성 (T3)","4성 (T4)","4성 (T5)","최대 레벨(Max)" ]; // 한글화된 영웅 데이터 (이름 및 병종 번역) const heroes = [ {"name": "올리브", "type": "궁병", "stats": [11.36, 12.42, 13.47, 14.53, 15.59, 16.65, 18.55, 20.03, 21.51, 22.99, 24.47, 25.95, 28.62, 30.69, 32.76, 34.83, 36.9, 38.98, 42.71, 45.61, 48.51, 51.41, 54.31, 57.22, 62.44, 66.5, 70.56, 74.63, 78.69, 82.75, 90.07], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/olive-avatar.webp"}, {"name": "포레스트", "type": "보병", "stats": [11.36, 12.42, 13.47, 14.53, 15.59, 16.65, 18.55, 20.03, 21.51, 22.99, 24.47, 25.95, 28.62, 30.69, 32.76, 34.83, 36.9, 38.98, 42.71, 45.61, 48.51, 51.41, 54.31, 57.22, 62.44, 66.5, 70.56, 74.63, 78.69, 82.75, 90.07], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/forrest-avatar.webp"}, {"name": "에드윈", "type": "기병", "stats": [11.36, 12.42, 13.47, 14.53, 15.59, 16.65, 18.55, 20.03, 21.51, 22.99, 24.47, 25.95, 28.62, 30.69, 32.76, 34.83, 36.9, 38.98, 42.71, 45.61, 48.51, 51.41, 54.31, 57.22, 62.44, 66.5, 70.56, 74.63, 78.69, 82.75, 90.07], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/edwin-avatar.webp"}, {"name": "세스", "type": "보병", "stats": [11.36, 12.42, 13.47, 14.53, 15.59, 16.65, 18.55, 20.03, 21.51, 22.99, 24.47, 25.95, 28.62, 30.69, 32.76, 34.83, 36.9, 38.98, 42.71, 45.61, 48.51, 51.41, 54.31, 57.22, 62.44, 66.5, 70.56, 74.63, 78.69, 82.75, 90.07], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/seth-avatar.webp"}, {"name": "다이애나", "type": "궁병", "stats": [13.88, 15.18, 16.47, 17.76, 19.05, 20.35, 22.67, 24.48, 26.29, 28.1, 29.91, 31.72, 34.98, 37.51, 40.04, 42.58, 45.11, 47.64, 52.5, 55.75, 59.29, 62.84, 66.39, 69.93, 76.32, 81.28, 86.25, 91.21, 96.18, 101.15, 110.08], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/diana-avatar-icon.webp"}, {"name": "퀸", "type": "궁병", "stats": [17.76, 19.32, 20.96, 22.61, 24.25, 25.9, 28.86, 31.16, 33.46, 35.77, 38.07, 40.37, 44.52, 47.74, 50.96, 54.19, 57.41, 60.64, 66.44, 70.95, 75.46, 79.98, 84.49, 89.01, 97.13, 103.45, 109.77, 116.09, 122.41, 128.73, 140.11], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/quinn-avatar.webp"}, {"name": "첸코", "type": "기병", "stats": [17.76, 19.32, 20.96, 22.61, 24.25, 25.9, 28.86, 31.16, 33.46, 35.77, 38.07, 40.37, 44.52, 47.74, 50.96, 54.19, 57.41, 60.64, 66.44, 70.95, 75.46, 79.98, 84.49, 89.01, 97.13, 103.45, 109.77, 116.09, 122.41, 128.73, 140.11], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/chenko-avatar.webp"}, {"name": "하워드", "type": "보병", "stats": [17.76, 19.32, 20.96, 22.61, 24.25, 25.9, 28.86, 31.16, 33.46, 35.77, 38.07, 40.37, 44.52, 47.74, 50.96, 54.19, 57.41, 60.64, 66.44, 70.95, 75.46, 79.98, 84.49, 89.01, 97.13, 103.45, 109.77, 116.09, 122.41, 128.73, 140.11], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/howard-avatar.webp"}, {"name": "고든", "type": "기병", "stats": [17.76, 19.32, 20.96, 22.61, 24.25, 25.9, 28.86, 31.16, 33.46, 35.77, 38.07, 40.37, 44.52, 47.74, 50.96, 54.19, 57.41, 60.64, 66.44, 70.95, 75.46, 79.98, 84.49, 89.01, 97.13, 103.45, 109.77, 116.09, 122.41, 128.73, 140.11], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/gordon-avatar.webp"}, {"name": "파드", "type": "기병", "stats": [17.76, 19.32, 20.96, 22.61, 24.25, 25.9, 28.86, 31.16, 33.46, 35.77, 38.07, 40.37, 44.52, 47.74, 50.96, 54.19, 57.41, 60.64, 66.44, 70.95, 75.46, 79.98, 84.49, 89.01, 97.13, 103.45, 109.77, 116.09, 122.41, 128.73, 140.11], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/fahd-avatar.webp"}, {"name": "아마네", "type": "궁병", "stats": [17.76, 19.32, 20.96, 22.61, 24.25, 25.9, 28.86, 31.16, 33.46, 35.77, 38.07, 40.37, 44.52, 47.74, 50.96, 54.19, 57.41, 60.64, 66.44, 70.95, 75.46, 79.98, 84.49, 89.01, 97.13, 103.45, 109.77, 116.09, 122.41, 128.73, 140.11], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/amane-avatar.webp"}, {"name": "연우", "type": "궁병", "stats": [17.76, 19.32, 20.96, 22.61, 24.25, 25.9, 28.86, 31.16, 33.46, 35.77, 38.07, 40.37, 44.52, 47.74, 50.96, 54.19, 57.41, 60.64, 66.44, 70.95, 75.46, 79.98, 84.49, 89.01, 97.13, 103.45, 109.77, 116.09, 122.41, 128.73, 140.11], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/yeonwoo-avatar.webp"}, {"name": "자벨", "type": "기병", "stats": [25.25, 27.6, 29.95, 32.3, 34.65, 37, 41.23, 44.52, 47.81, 51.1, 54.39, 57.68, 63.6, 68.2, 72.81, 77.42, 82.02, 86.63, 94.92, 101.37, 107.81, 114.26, 120.71, 127.16, 138.77, 147.79, 156.82, 165.85, 174.88, 183.91, 200.16], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/jabel.webp"}, {"name": "사울", "type": "궁병", "stats": [25.25, 27.6, 29.95, 32.3, 34.65, 37, 41.23, 44.52, 47.81, 51.1, 54.39, 57.68, 63.6, 68.2, 72.81, 77.42, 82.02, 86.63, 94.92, 101.37, 107.81, 114.26, 120.71, 127.16, 138.77, 147.79, 156.82, 165.85, 174.88, 183.91, 200.16], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/saul-kingshot.webp"}, {"name": "헬가", "type": "보병", "stats": [25.25, 27.6, 29.95, 32.3, 34.65, 37, 41.23, 44.52, 47.81, 51.1, 54.39, 57.68, 63.6, 68.2, 72.81, 77.42, 82.02, 86.63, 94.92, 101.37, 107.81, 114.26, 120.71, 127.16, 138.77, 147.79, 156.82, 165.85, 174.88, 183.91, 200.16], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/helga-kingshot.webp"}, {"name": "아마데우스", "type": "보병", "stats": [32.82, 35.88, 38.93, 41.99, 45.04, 48.1, 53.59, 57.87, 62.15, 66.43, 70.7, 74.98, 82.68, 88.66, 94.65, 100.64, 106.62, 112.61, 123.39, 131.78, 140.15, 148.53, 156.92, 165.3, 180.4, 192.12, 203.86, 215.6, 227.34, 239.08, 260.2], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/amadeus.webp"}, {"name": "조이", "type": "보병", "stats": [30.3, 33.12, 35.94, 38.76, 41.58, 44.4, 49.47, 53.42, 57.37, 61.32, 65.26, 69.21, 76.32, 81.84, 87.37, 92.9, 98.42, 103.95, 113.9, 121.64, 129.37, 137.11, 144.85, 152.59, 166.52, 177.34, 188.18, 192.02, 209.85, 220.69, 240.1], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/zoe-gen2-kingshot.webp"}, {"name": "힐데", "type": "기병", "stats": [30.3, 33.12, 35.94, 38.76, 41.58, 44.4, 49.47, 53.42, 57.37, 61.32, 65.26, 69.21, 76.32, 81.84, 87.37, 92.9, 98.42, 103.95, 113.9, 121.64, 129.37, 137.11, 144.85, 152.59, 166.52, 177.34, 188.18, 192.02, 209.85, 220.69, 240.1], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/hilde-kingshot.webp"}, {"name": "마를린", "type": "궁병", "stats": [30.3, 33.12, 35.94, 38.76, 41.58, 44.4, 49.47, 53.42, 57.37, 61.32, 65.26, 69.21, 76.32, 81.84, 87.37, 92.9, 98.42, 103.95, 113.9, 121.64, 129.37, 137.11, 144.85, 152.59, 166.52, 177.34, 188.18, 192.02, 209.85, 220.69, 240.1], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/marlin-kingshot.webp"}, {"name": "에릭", "type": "보병", "stats": [36.61, 40.02, 43.42, 46.83, 50.24, 53.65, 59.78, 64.55, 69.32, 74.09, 78.86, 83.63, 92.22, 98.89, 105.57, 112.25, 118.92, 125.61, 137.63, 146.98, 156.32, 165.67, 175.02, 184.38, 201.21, 214.29, 227.38, 240.48, 253.57, 266.66, 290.23], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/eric-avatar-icon.webp"}, {"name": "예거", "type": "궁병", "stats": [36.61, 40.02, 43.42, 46.83, 50.24, 53.65, 59.78, 64.55, 69.32, 74.09, 78.86, 83.63, 92.22, 98.89, 105.57, 112.25, 118.92, 125.61, 137.63, 146.98, 156.32, 165.67, 175.02, 184.38, 201.21, 214.29, 227.38, 240.48, 253.57, 266.66, 290.23], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/jaeger-icon-kingshot.webp"}, {"name": "페트라", "type": "기병", "stats": [36.61, 40.02, 43.42, 46.83, 50.24, 53.65, 59.78, 64.55, 69.32, 74.09, 78.86, 83.63, 92.22, 98.89, 105.57, 112.25, 118.92, 125.61, 137.63, 146.98, 156.32, 165.67, 175.02, 184.38, 201.21, 214.29, 227.38, 240.48, 253.57, 266.66, 290.23], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/07/petra-avatar-icon.webp"}, {"name": "알카르", "type": "보병", "stats": [46.71, 51.06, 55.4, 59.75, 64.1, 68.45, 76.27, 82.36, 88.44, 94.53, 100.62, 106.7, 117.66, 126.17, 134.69, 143.22, 151.73, 160.26, 175.6, 187.53, 199.44, 211.38, 223.31, 235.24, 256.72, 273.41, 290.11, 306.82, 323.52, 340.23, 370.29], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/09/alcar-avatar-image.webp"}, {"name": "로사", "type": "궁병", "stats": [46.71, 51.06, 55.4, 59.75, 64.1, 68.45, 76.27, 82.36, 88.44, 94.53, 100.62, 106.7, 117.66, 126.17, 134.69, 143.22, 151.73, 160.26, 175.6, 187.53, 199.44, 211.38, 223.31, 235.24, 256.72, 273.41, 290.11, 306.82, 323.52, 340.23, 370.29], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/09/rosa-avatar-image.webp"}, {"name": "마고", "type": "기병", "stats": [46.71, 51.06, 55.4, 59.75, 64.1, 68.45, 76.27, 82.36, 88.44, 94.53, 100.62, 106.7, 117.66, 126.17, 134.69, 143.22, 151.73, 160.26, 175.6, 187.53, 199.44, 211.38, 223.31, 235.24, 256.72, 273.41, 290.11, 306.82, 323.52, 340.23, 370.29], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/09/margot-avatar.webp"}, {"name": "롱페이", "type": "보병", "stats": [56.05, 61.27, 66.48, 71.7, 76.92, 82.14, 91.53, 98.83, 106.13, 113.44, 120.74, 128.04, 141.19, 151.4, 161.63, 171.87, 182.08, 192.31, 210.72, 225.04, 239.33, 253.65, 267.97, 282.29, 308.06, 328.09, 348.14, 368.18, 388.23, 408.28, 444.35], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/12/long-fei-avatar-icon.webp"}, {"name": "비비안", "type": "궁병", "stats": [56.05, 61.27, 66.48, 71.7, 76.92, 82.14, 91.53, 98.83, 106.13, 113.44, 120.74, 128.04, 141.19, 151.4, 161.63, 171.87, 182.08, 192.31, 210.72, 225.04, 239.33, 253.65, 267.97, 282.29, 308.06, 328.09, 348.14, 368.18, 388.23, 408.28, 444.35], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/12/vivian-avatar-icon.webp"}, {"name": "트루드", "type": "기병", "stats": [56.05, 61.27, 66.48, 71.7, 76.92, 82.14, 91.53, 98.83, 106.13, 113.44, 120.74, 128.04, 141.19, 151.4, 161.63, 171.87, 182.08, 192.31, 210.72, 225.04, 239.33, 253.65, 267.97, 282.29, 308.06, 328.09, 348.14, 368.18, 388.23, 408.28, 444.35], "image": "https://kingshotcalculator.com/wp-content/uploads/2025/12/thrud-avatar-icon.webp"}, {"name": "트리톤", "type": "보병", "stats": [68.17, 74.52, 80.86, 87.21, 93.55, 99.9, 111.32, 120.2, 129.08, 137.97, 146.85, 155.73, 171.72, 184.14, 196.58, 209.03, 221.45, 233.9, 256.28, 273.69, 291.08, 308.5, 325.91, 343.33, 374.67, 399.03, 423.41, 447.79, 472.17, 496.55, 540.43], "image": "https://kingshotcalculator.com/wp-content/uploads/2026/03/triton-avatar-icon.webp"}, {"name": "양", "type": "궁병", "stats": [68.17, 74.52, 80.86, 87.21, 93.55, 99.9, 111.32, 120.2, 129.08, 137.97, 146.85, 155.73, 171.72, 184.14, 196.58, 209.03, 221.45, 233.9, 256.28, 273.69, 291.08, 308.5, 325.91, 343.33, 374.67, 399.03, 423.41, 447.79, 472.17, 496.55, 540.43], "image": "https://kingshotcalculator.com/wp-content/uploads/2026/03/yang-avatar-icon.webp"}, {"name": "소피아", "type": "기병", "stats": [68.17, 74.52, 80.86, 87.21, 93.55, 99.9, 111.32, 120.2, 129.08, 137.97, 146.85, 155.73, 171.72, 184.14, 196.58, 209.03, 221.45, 233.9, 256.28, 273.69, 291.08, 308.5, 325.91, 343.33, 374.67, 399.03, 423.41, 447.79, 472.17, 496.55, 540.43], "image": "https://kingshotcalculator.com/wp-content/uploads/2026/03/sophia-avatar-icon.webp"} ]; function populateDropdowns() { const $levelSelect = $('#levelSelect'); const $hero1Select = $('#hero1Select'); levelNames.forEach(function(name, index) { $levelSelect.append('<option value="' + index + '">' + name + '</option>'); }); $levelSelect.val(30); heroes.forEach(function(hero, index) { $hero1Select.append('<option value="' + index + '">[' + hero.type + '] ' + hero.name + '</option>'); }); updateHero1Selection(); } function updateHero1Selection() { const hero1Index = parseInt($('#hero1Select').val(), 10); const $hero2Select = $('#hero2Select'); const selectedHero = heroes[hero1Index]; $('#hero1Image').attr('src', selectedHero.image); $hero2Select.empty(); let hasHigher = false; heroes.forEach(function(hero, index) { if(hero.type === selectedHero.type && index > hero1Index) { $hero2Select.append('<option value="' + index + '">[' + hero.type + '] ' + hero.name + '</option>'); hasHigher = true; } }); if(!hasHigher) { $hero2Select.append('<option value="">상위 영웅 없음</option>'); $('#hero2Image').attr('src', 'https://via.placeholder.com/80/333333/ffffff?text=None'); } else { updateHeroImage('hero2'); } } function updateHeroImage(type) { if(type === 'hero2') { const h2Index = $('#hero2Select').val(); if(h2Index !== "") { $('#hero2Image').attr('src', heroes[h2Index].image); } } } function compareHeroes() { const levelIdx = parseInt($('#levelSelect').val(), 10); const h1Idx = parseInt($('#hero1Select').val(), 10); const h2Idx = $('#hero2Select').val(); const $resBox = $('#results'); if(h2Idx === "") { $resBox.show().css({'color': '#ff4444', 'border-color': '#ff4444'}) .html("❌ 비교할 상위 세대 영웅이 없습니다."); return; } const hero1 = heroes[h1Idx]; const hero2 = heroes[h2Idx]; const stat1 = hero1.stats[levelIdx]; let html = `<div style="font-size: 15px; margin-bottom: 15px; color: #fff;"><b>${hero1.name}</b>의 <b>${levelNames[levelIdx]}</b> 스탯은 <span style="color:#00ff00;">+${stat1}%</span> 입니다.</div>`; html += `<div style="font-size: 14px; color: #ffaa00; margin-bottom: 10px; border-bottom: 1px solid #555; padding-bottom: 5px; text-align: left;">⚔️ <b>${hero2.name}</b>(이)가 더 강력해지는 교체 타이밍:</div>`; html += `<ul style="text-align: left; font-size: 13px; color: #ccc; line-height: 1.8; margin-top: 10px; padding-left: 20px;">`; let found = false; for(let i = 0; i < hero2.stats.length; i++) { if(hero2.stats[i] > stat1) { html += `<li><b>${levelNames[i]}</b> (스탯: +${hero2.stats[i]}%)</li>`; found = true; } } if(!found) { html += `<li style="color:#ff4444; list-style:none; margin-left:-20px;">❌ 모든 구간에서 현재 영웅이 더 강력합니다.</li>`; } html += `</ul>`; $resBox.css({ 'color': '#d1d5db', 'border-color': '#555', 'background-color': '#111', 'padding': '20px' }).html(html).show(); } $('#hero1Select').on('change', updateHero1Selection); $('#hero2Select').on('change', function() { updateHeroImage('hero2'); }); $('#runCalcBtn').on('click', compareHeroes); populateDropdowns(); });
compare-page1 (토론) (번역) 첫 번째 문서
compare-page2 (토론) (번역) 두 번째 문서
compare-rev1 (토론) (번역) 첫 번째 판
compare-rev2 (토론) (번역) 두 번째 판
compare-revision-not-exists (토론) (번역) 지정한 판이 없습니다.
compare-submit (토론) (번역) 비교하기
comparepages (토론) (번역) 문서 비교
comparepages-summary (토론) (번역)  
compareselectedversions (토론) (번역) 선택한 판을 비교하기
config-invalid-key (토론) (번역) 미디어위키 설정 변수 "$1"이 잘못되었습니다: $2
config-missing-key (토론) (번역) 미디어위키 설정 변수 "$1"이 없습니다
confirm (토론) (번역) 확인
confirm-markpatrolled-button (토론) (번역) 확인
confirm-markpatrolled-top (토론) (번역) $2의 $3 판을 점검한 것으로 표시하시겠습니까?
confirm-mcrrestore-title (토론) (번역) 판 복구
confirm-mcrundo-title (토론) (번역) 변경사항 취소
confirm-purge-bottom (토론) (번역) 문서를 새로 고치는 것은 캐시를 지우고 강제로 가장 현재의 판이 나타나게 합니다.
confirm-purge-title (토론) (번역) 이 문서를 새로 고침
confirm-purge-top (토론) (번역) 이 문서의 캐시를 새로 고치겠습니까?
confirm-rollback-bottom (토론) (번역) 이 작업은 이 문서의 선택된 변경사항을 즉시 되돌립니다.
confirm-rollback-button (토론) (번역) 확인
confirm-rollback-top (토론) (번역) 이 문서의 편집을 되돌리시겠습니까?
confirm-unwatch-button (토론) (번역) 확인
confirm-unwatch-top (토론) (번역) 이 문서를 주시문서 목록에서 뺄까요?
confirm-watch-button (토론) (번역) 확인
confirm-watch-button-expiry (토론) (번역) 주시
confirm-watch-label (토론) (번역) 주시문서 목록의 기간:
confirm-watch-top (토론) (번역) 이 문서를 주시문서 목록에 추가할까요?
confirm_purge_button (토론) (번역) 확인
confirmable-confirm (토론) (번역) {{GENDER:$1|}}확실합니까?
confirmable-no (토론) (번역) 아니오
confirmable-yes (토론) (번역)
confirmdeletetext (토론) (번역) 문서와 문서 역사를 삭제하려고 합니다. 삭제하려는 문서가 맞는지, 이 문서를 삭제하는 것이 [[{{MediaWiki:Policy-url}}|정책]]에 맞는 행동인지를 확인해 주세요.
confirmedittext (토론) (번역) 문서를 고치려면 이메일 인증 절차가 필요합니다. [[Special:Preferences|사용자 환경 설정]]에서 이메일 주소를 입력하고 이메일 주소 인증을 해주시기 바랍니다.
confirmemail (토론) (번역) 이메일 주소 확인
confirmemail_body (토론) (번역) 당신일 수도 있는 $1 IP 주소를 사용하는 사용자가 {{SITENAME}}의 "$2" 계정에 이메일 인증 신청을 했습니다. 이 계정이 당신의 계정이고 {{SITENAME}}에서 이메일 기능을 활성화하려면 아래 주소를 열어서 이메일 인증을 해 주세요: $3 당신의 계정이 아니라면, 이메일 인증 신청을 취소하기 위해 아래의 주소를 열어주세요: $5 인증 코드는 $4에 만료됩니다.
confirmemail_body_changed (토론) (번역) 당신일 수도 있는 $1 IP 주소를 사용하는 사용자가 {{SITENAME}}의 "$2" 계정의 이메일 주소를 바꾸었습니다. 이 계정이 당신의 계정이고 {{SITENAME}}에서 이메일 기능을 활성화하려면 아래 주소를 열어서 이메일 인증을 해 주세요: $3 당신의 계정이 아니라면, 이메일 인증 신청을 취소하기 위해 아래의 주소를 열어주세요: $5 인증 코드는 $4에 만료됩니다.
confirmemail_body_set (토론) (번역) 당신일 수도 있는 $1 IP 주소를 사용하는 사용자가 {{SITENAME}}의 "$2" 계정의 이메일 주소를 지정하였습니다. 이 계정이 당신의 계정이고 {{SITENAME}}에서 이메일 기능을 활성화하려면 아래 주소를 열어서 이메일 인증을 해 주세요: $3 당신의 계정이 아니라면, 이메일 인증 신청을 취소하기 위해 아래의 주소를 열어주세요: $5 인증 코드는 $4에 만료됩니다.
confirmemail_invalid (토론) (번역) 인증 코드가 올바르지 않습니다. 인증 코드가 만료되었을 수도 있습니다.
처음 문서이전 문서다음 문서마지막 문서