mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-30 03:19:55 +00:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paradox Rift"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Tulip",
|
|
fr: "Tully",
|
|
es: "Tuli",
|
|
it: "Tulipa",
|
|
pt: "Tulipa",
|
|
de: "Tulia"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Put up to 4 in any combination of {P} Pokémon and Basic {P} Energy cards from your discard pile into your hand.",
|
|
fr: "Ajoutez à votre main une combinaison d'un maximum de 4 Pokémon {P} et cartes Énergie {P} de base de votre pile de défausse.",
|
|
es: "Pon, en cualquier combinación, hasta 4 cartas de Pokémon {P} y de Energía {P} Básica de tu pila de descartes en tu mano.",
|
|
it: "Prendi fino a quattro Pokémon {P} e carte Energia base {P} in qualsiasi combinazione dalla tua pila degli scarti e aggiungili alle carte che hai in mano.",
|
|
pt: "Coloque até 4 cartas de Pokémon {P} e de Energia {P} Básica da sua pilha de descarte na sua mão em qualquer combinação.",
|
|
de: "Nimm eine beliebige Kombination aus bis zu 4 {P}-Pokémon und Basis-{P}-Energiekarten aus deinem Ablagestapel auf deine Hand."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
reverse: false,
|
|
normal: false
|
|
},
|
|
|
|
illustrator: "Naoki Saito"
|
|
}
|
|
|
|
export default card |