1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1.5 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Counter Catcher",
fr: "Attrape-Riposte",
es: "Capturador Contraataque",
it: "Contracchiappa-Pokémon",
pt: "Pegador de Contra-ataque",
de: "Konterfänger"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Vous pouvez jouer cette carte seulement sil vous reste plus de cartes Récompense que votre adversaire.\n\nÉchangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
en: "You can play this card only if you have more Prize cards remaining than your opponent.\n\nSwitch 1 of your opponents Benched Pokémon with their Active Pokémon.",
es: "Puedes jugar esta carta solo si te quedan más cartas de Premio que a tu rival.\n\nCambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo.",
it: "Puoi giocare questa carta solo se hai più carte Premio rimanenti del tuo avversario.\n\nScambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo.",
pt: "Você só pode jogar esta carta se tiver mais cartas de Prêmio restantes do que seu oponente.\n\nTroque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a).",
de: "Du kannst diese Karte nur spielen, wenn du mehr verbleibende Preiskarten hast als dein Gegner.\n\nTausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus."
},
trainerType: "Item",
}
export default card