1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 02:59:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Space-Time Smackdown/146.ts

35 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Pokémon Communication",
fr: "Communication Pokémon",
es: "Comunicación Pokémon",
it: "Comunicazione Pokémon",
de: "Pokémon-Kommunikation",
'pt-br': "Comunicação Pokémon",
ko: "포켓몬통신"
},
illustrator: "Ayaka Yoshida",
rarity: "Two Diamond",
category: "Trainer",
effect: {
en: "Choose a Pokémon in your hand and switch it with a random Pokémon in your deck.",
fr: "Choisissez un Pokémon de votre main et échangez-le avec un Pokémon de votre deck au hasard.",
es: "Elige 1 Pokémon de tu mano y cámbialo por 1 Pokémon aleatorio de tu baraja.",
it: "Scegli un Pokémon fra quelli che hai in mano e sostituiscilo con un Pokémon a caso del mazzo.",
de: "Wähle 1 Pokémon aus deiner Hand und tausche es mit 1 zufälligen Pokémon aus deinem Deck aus.",
'pt-br': "Escolha 1 Pokémon na sua mão e troque-o por 1 Pokémon aleatório no seu baralho.",
ko: "자신의 패에서 포켓몬을 1장 선택해서 덱에서 랜덤하게 포켓몬 1장과 교체한다."
},
trainerType: "Item",
boosters: ["dialga"]
}
export default card