mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
24 lines
737 B
TypeScript
24 lines
737 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unseen Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pokémon Reversal",
|
|
fr: "Inversion de Pokémon",
|
|
de: "Pokémon-Umkehrung"
|
|
},
|
|
|
|
illustrator: "Hiromichi Sugiyama",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Lancez une pièce. Si c'est face, choisissez 1 des Pokémon de Banc de votre adversaire et échangez-le avec 1 des Pokémon Défenseurs. Votre adversaire choisit le Pokémon Défenseur à échanger.",
|
|
de: "Flip a coin. If heads, choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch."
|
|
}
|
|
}
|
|
|
|
export default card
|