mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Chilling Reign'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Percila",
|
|
en: "Caitlin",
|
|
es: "Catleya",
|
|
it: "Catlina",
|
|
pt: "Caitlin",
|
|
de: "Kattlea"
|
|
},
|
|
|
|
illustrator: "Sanosuke Sakuma",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
fr: "Placez le nombre de cartes voulues de votre main en dessous de votre deck dans l'ordre de votre choix. Ensuite, piochez ce même nombre de cartes.",
|
|
en: "Put any number of cards from your hand on the bottom of your deck in any order. Then, draw that many cards.",
|
|
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 nell'ordine 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",
|
|
regulationMark: "E",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|