1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

42 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 '../Plasma Blast'
const card: Card = {
name: {
en: "Caitlin",
fr: "Percila",
es: "Catleya",
it: "Catlina",
pt: "Caitlin",
de: "Kattlea"
},
illustrator: "Yusuke Ohmura",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Placez autant de cartes de votre main que vous voulez en dessous de votre deck dans lordre de votre choix. Ensuite, piochez une carte pour chaque carte placée en dessous de votre deck.",
en: "Put as many cards from your hand as you like on the bottom of your deck in any order. Then, draw a card for each card you put on the bottom of your deck.",
es: "Pon tantas cartas de tu mano como quieras en la parte inferior de tu baraja en el orden que quieras.",
it: "Prendi tutte le carte che vuoi dalla tua mano e mettile in fondo al tuo mazzo nellordine che preferisci. Poi pesca una carta per ogni carta che hai messo in fondo al tuo mazzo.",
pt: "Coloque quantos cards da sua mão quiser na base de seu baralho, em qualquer ordem. A seguir, compre um card para cada card descartado.",
de: "Lege beliebig viele Karten von deiner Hand in beliebiger Reihenfolge unter dein Deck. Ziehe anschließend 1 Karte für jede Karte, die du unter dein Deck gelegt hast."
},
trainerType: "Supporter",
}
export default card