UNPKG

tarotap

Version:

Complete 78-card Tarot deck library with 17-language support (EN/DE/ES/FR/IT/JA/KO/NL/PT/RU/TW/ZH/TH/TR/PL/DA/NO) and TypeScript

330 lines 6.35 kB
"use strict"; /** * Korean Tarot Card Names - 78 Cards * 한국어 타로 카드 이름 * * For more tarot resources visit: https://tarotap.com/en * @author Tarotap Team <https://tarotap.com/en> */ Object.defineProperty(exports, "__esModule", { value: true }); exports.tarotCardsKO = void 0; exports.tarotCardsKO = [ // Major Arcana (22 cards) { "id": "the-fool", "name": "바보" }, { "id": "the-magician", "name": "마법사" }, { "id": "the-high-priestess", "name": "여교황" }, { "id": "the-empress", "name": "여황제" }, { "id": "the-emperor", "name": "황제" }, { "id": "the-hierophant", "name": "교황" }, { "id": "the-lovers", "name": "연인" }, { "id": "the-chariot", "name": "전차" }, { "id": "strength", "name": "힘" }, { "id": "the-hermit", "name": "은둔자" }, { "id": "wheel-of-fortune", "name": "운명의 수레바퀴" }, { "id": "justice", "name": "정의" }, { "id": "the-hanged-man", "name": "매달린 사람" }, { "id": "death", "name": "죽음" }, { "id": "temperance", "name": "절제" }, { "id": "the-devil", "name": "악마" }, { "id": "the-tower", "name": "탑" }, { "id": "the-star", "name": "별" }, { "id": "the-moon", "name": "달" }, { "id": "the-sun", "name": "태양" }, { "id": "judgement", "name": "심판" }, { "id": "the-world", "name": "세계" }, // Minor Arcana - Wands (14 cards) { "id": "ace-of-wands", "name": "지팡이의 에이스" }, { "id": "two-of-wands", "name": "지팡이의 2" }, { "id": "three-of-wands", "name": "지팡이의 3" }, { "id": "four-of-wands", "name": "지팡이의 4" }, { "id": "five-of-wands", "name": "지팡이의 5" }, { "id": "six-of-wands", "name": "지팡이의 6" }, { "id": "seven-of-wands", "name": "지팡이의 7" }, { "id": "eight-of-wands", "name": "지팡이의 8" }, { "id": "nine-of-wands", "name": "지팡이의 9" }, { "id": "ten-of-wands", "name": "지팡이의 10" }, { "id": "page-of-wands", "name": "지팡이의 시종" }, { "id": "knight-of-wands", "name": "지팡이의 기사" }, { "id": "queen-of-wands", "name": "지팡이의 여왕" }, { "id": "king-of-wands", "name": "지팡이의 왕" }, // Minor Arcana - Cups (14 cards) { "id": "ace-of-cups", "name": "컵의 에이스" }, { "id": "two-of-cups", "name": "컵의 2" }, { "id": "three-of-cups", "name": "컵의 3" }, { "id": "four-of-cups", "name": "컵의 4" }, { "id": "five-of-cups", "name": "컵의 5" }, { "id": "six-of-cups", "name": "컵의 6" }, { "id": "seven-of-cups", "name": "컵의 7" }, { "id": "eight-of-cups", "name": "컵의 8" }, { "id": "nine-of-cups", "name": "컵의 9" }, { "id": "ten-of-cups", "name": "컵의 10" }, { "id": "page-of-cups", "name": "컵의 시종" }, { "id": "knight-of-cups", "name": "컵의 기사" }, { "id": "queen-of-cups", "name": "컵의 여왕" }, { "id": "king-of-cups", "name": "컵의 왕" }, // Minor Arcana - Swords (14 cards) { "id": "ace-of-swords", "name": "검의 에이스" }, { "id": "two-of-swords", "name": "검의 2" }, { "id": "three-of-swords", "name": "검의 3" }, { "id": "four-of-swords", "name": "검의 4" }, { "id": "five-of-swords", "name": "검의 5" }, { "id": "six-of-swords", "name": "검의 6" }, { "id": "seven-of-swords", "name": "검의 7" }, { "id": "eight-of-swords", "name": "검의 8" }, { "id": "nine-of-swords", "name": "검의 9" }, { "id": "ten-of-swords", "name": "검의 10" }, { "id": "page-of-swords", "name": "검의 시종" }, { "id": "knight-of-swords", "name": "검의 기사" }, { "id": "queen-of-swords", "name": "검의 여왕" }, { "id": "king-of-swords", "name": "검의 왕" }, // Minor Arcana - Pentacles (14 cards) { "id": "ace-of-pentacles", "name": "펜타클의 에이스" }, { "id": "two-of-pentacles", "name": "펜타클의 2" }, { "id": "three-of-pentacles", "name": "펜타클의 3" }, { "id": "four-of-pentacles", "name": "펜타클의 4" }, { "id": "five-of-pentacles", "name": "펜타클의 5" }, { "id": "six-of-pentacles", "name": "펜타클의 6" }, { "id": "seven-of-pentacles", "name": "펜타클의 7" }, { "id": "eight-of-pentacles", "name": "펜타클의 8" }, { "id": "nine-of-pentacles", "name": "펜타클의 9" }, { "id": "ten-of-pentacles", "name": "펜타클의 10" }, { "id": "page-of-pentacles", "name": "펜타클의 시종" }, { "id": "knight-of-pentacles", "name": "펜타클의 기사" }, { "id": "queen-of-pentacles", "name": "펜타클의 여왕" }, { "id": "king-of-pentacles", "name": "펜타클의 왕" } ]; //# sourceMappingURL=cards-ko.js.map