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.5 kB
"use strict"; /** * Italian Tarot Card Names - 78 Cards * Nomi delle Carte dei Tarocchi in Italiano * * For more tarot resources visit: https://tarotap.com/en * @author Tarotap Team <https://tarotap.com/en> */ Object.defineProperty(exports, "__esModule", { value: true }); exports.tarotCardsIT = void 0; exports.tarotCardsIT = [ // Major Arcana (22 cards) { "id": "the-fool", "name": "Il Matto" }, { "id": "the-magician", "name": "Il Bagatto" }, { "id": "the-high-priestess", "name": "La Papessa" }, { "id": "the-empress", "name": "L'Imperatrice" }, { "id": "the-emperor", "name": "L'Imperatore" }, { "id": "the-hierophant", "name": "Il Papa" }, { "id": "the-lovers", "name": "Gli Amanti" }, { "id": "the-chariot", "name": "Il Carro" }, { "id": "strength", "name": "La Forza" }, { "id": "the-hermit", "name": "L'Eremita" }, { "id": "wheel-of-fortune", "name": "La Ruota della Fortuna" }, { "id": "justice", "name": "La Giustizia" }, { "id": "the-hanged-man", "name": "L'Appeso" }, { "id": "death", "name": "La Morte" }, { "id": "temperance", "name": "La Temperanza" }, { "id": "the-devil", "name": "Il Diavolo" }, { "id": "the-tower", "name": "La Torre" }, { "id": "the-star", "name": "La Stella" }, { "id": "the-moon", "name": "La Luna" }, { "id": "the-sun", "name": "Il Sole" }, { "id": "judgement", "name": "Il Giudizio" }, { "id": "the-world", "name": "Il Mondo" }, // Minor Arcana - Wands (14 cards) { "id": "ace-of-wands", "name": "Asso di Bastoni" }, { "id": "two-of-wands", "name": "Due di Bastoni" }, { "id": "three-of-wands", "name": "Tre di Bastoni" }, { "id": "four-of-wands", "name": "Quattro di Bastoni" }, { "id": "five-of-wands", "name": "Cinque di Bastoni" }, { "id": "six-of-wands", "name": "Sei di Bastoni" }, { "id": "seven-of-wands", "name": "Sette di Bastoni" }, { "id": "eight-of-wands", "name": "Otto di Bastoni" }, { "id": "nine-of-wands", "name": "Nove di Bastoni" }, { "id": "ten-of-wands", "name": "Dieci di Bastoni" }, { "id": "page-of-wands", "name": "Fante di Bastoni" }, { "id": "knight-of-wands", "name": "Cavallo di Bastoni" }, { "id": "queen-of-wands", "name": "Regina di Bastoni" }, { "id": "king-of-wands", "name": "Re di Bastoni" }, // Minor Arcana - Cups (14 cards) { "id": "ace-of-cups", "name": "Asso di Coppe" }, { "id": "two-of-cups", "name": "Due di Coppe" }, { "id": "three-of-cups", "name": "Tre di Coppe" }, { "id": "four-of-cups", "name": "Quattro di Coppe" }, { "id": "five-of-cups", "name": "Cinque di Coppe" }, { "id": "six-of-cups", "name": "Sei di Coppe" }, { "id": "seven-of-cups", "name": "Sette di Coppe" }, { "id": "eight-of-cups", "name": "Otto di Coppe" }, { "id": "nine-of-cups", "name": "Nove di Coppe" }, { "id": "ten-of-cups", "name": "Dieci di Coppe" }, { "id": "page-of-cups", "name": "Fante di Coppe" }, { "id": "knight-of-cups", "name": "Cavallo di Coppe" }, { "id": "queen-of-cups", "name": "Regina di Coppe" }, { "id": "king-of-cups", "name": "Re di Coppe" }, // Minor Arcana - Swords (14 cards) { "id": "ace-of-swords", "name": "Asso di Spade" }, { "id": "two-of-swords", "name": "Due di Spade" }, { "id": "three-of-swords", "name": "Tre di Spade" }, { "id": "four-of-swords", "name": "Quattro di Spade" }, { "id": "five-of-swords", "name": "Cinque di Spade" }, { "id": "six-of-swords", "name": "Sei di Spade" }, { "id": "seven-of-swords", "name": "Sette di Spade" }, { "id": "eight-of-swords", "name": "Otto di Spade" }, { "id": "nine-of-swords", "name": "Nove di Spade" }, { "id": "ten-of-swords", "name": "Dieci di Spade" }, { "id": "page-of-swords", "name": "Fante di Spade" }, { "id": "knight-of-swords", "name": "Cavallo di Spade" }, { "id": "queen-of-swords", "name": "Regina di Spade" }, { "id": "king-of-swords", "name": "Re di Spade" }, // Minor Arcana - Pentacles (14 cards) { "id": "ace-of-pentacles", "name": "Asso di Denari" }, { "id": "two-of-pentacles", "name": "Due di Denari" }, { "id": "three-of-pentacles", "name": "Tre di Denari" }, { "id": "four-of-pentacles", "name": "Quattro di Denari" }, { "id": "five-of-pentacles", "name": "Cinque di Denari" }, { "id": "six-of-pentacles", "name": "Sei di Denari" }, { "id": "seven-of-pentacles", "name": "Sette di Denari" }, { "id": "eight-of-pentacles", "name": "Otto di Denari" }, { "id": "nine-of-pentacles", "name": "Nove di Denari" }, { "id": "ten-of-pentacles", "name": "Dieci di Denari" }, { "id": "page-of-pentacles", "name": "Fante di Denari" }, { "id": "knight-of-pentacles", "name": "Cavallo di Denari" }, { "id": "queen-of-pentacles", "name": "Regina di Denari" }, { "id": "king-of-pentacles", "name": "Re di Denari" } ]; //# sourceMappingURL=cards-it.js.map