UNPKG

tarotap

Version:

Complete 78-card Tarot deck library with 12-language support (EN/DE/ES/FR/IT/JA/KO/NL/PT/RU/TW/ZH) and TypeScript

330 lines 6.17 kB
"use strict"; /** * Simplified Chinese 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.tarotCardsZH = void 0; exports.tarotCardsZH = [ // 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": "权杖二" }, { "id": "three-of-wands", "name": "权杖三" }, { "id": "four-of-wands", "name": "权杖四" }, { "id": "five-of-wands", "name": "权杖五" }, { "id": "six-of-wands", "name": "权杖六" }, { "id": "seven-of-wands", "name": "权杖七" }, { "id": "eight-of-wands", "name": "权杖八" }, { "id": "nine-of-wands", "name": "权杖九" }, { "id": "ten-of-wands", "name": "权杖十" }, { "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": "圣杯二" }, { "id": "three-of-cups", "name": "圣杯三" }, { "id": "four-of-cups", "name": "圣杯四" }, { "id": "five-of-cups", "name": "圣杯五" }, { "id": "six-of-cups", "name": "圣杯六" }, { "id": "seven-of-cups", "name": "圣杯七" }, { "id": "eight-of-cups", "name": "圣杯八" }, { "id": "nine-of-cups", "name": "圣杯九" }, { "id": "ten-of-cups", "name": "圣杯十" }, { "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": "宝剑二" }, { "id": "three-of-swords", "name": "宝剑三" }, { "id": "four-of-swords", "name": "宝剑四" }, { "id": "five-of-swords", "name": "宝剑五" }, { "id": "six-of-swords", "name": "宝剑六" }, { "id": "seven-of-swords", "name": "宝剑七" }, { "id": "eight-of-swords", "name": "宝剑八" }, { "id": "nine-of-swords", "name": "宝剑九" }, { "id": "ten-of-swords", "name": "宝剑十" }, { "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": "星币二" }, { "id": "three-of-pentacles", "name": "星币三" }, { "id": "four-of-pentacles", "name": "星币四" }, { "id": "five-of-pentacles", "name": "星币五" }, { "id": "six-of-pentacles", "name": "星币六" }, { "id": "seven-of-pentacles", "name": "星币七" }, { "id": "eight-of-pentacles", "name": "星币八" }, { "id": "nine-of-pentacles", "name": "星币九" }, { "id": "ten-of-pentacles", "name": "星币十" }, { "id": "page-of-pentacles", "name": "星币侍从" }, { "id": "knight-of-pentacles", "name": "星币骑士" }, { "id": "queen-of-pentacles", "name": "星币皇后" }, { "id": "king-of-pentacles", "name": "星币国王" } ]; //# sourceMappingURL=cards-zh.js.map