1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

38 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Caitlin",
fr: "Percila",
es: "Catleya",
it: "Catlina",
pt: "Caitlin",
de: "Kattlea"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Put any number of cards from your hand on the bottom of your deck in any order. Then, draw that many cards.",
fr: "Placez le nombre de cartes voulues de votre main en dessous de votre deck dans lordre de votre choix. Ensuite, piochez ce même nombre de cartes.",
es: "Pon cualquier cantidad de cartas de tu mano en la parte inferior de tu baraja en el orden que quieras. Después, roba esa misma cantidad de cartas.",
it: "Prendi un numero qualsiasi di carte dalla tua mano e mettile in fondo al tuo mazzo nellordine che preferisci. Poi pesca lo stesso numero di carte.",
pt: "Coloque qualquer número de cartas da sua mão como as cartas de baixo do seu baralho em qualquer ordem. Em seguida, compre aquele mesmo número de cartas.",
de: "Lege beliebig viele Karten aus deiner Hand in beliebiger Reihenfolge unter dein Deck. Ziehe anschließend genauso viele Karten."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card