mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
613 B
TypeScript
24 lines
613 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Ruby & Sapphire'
|
|
|
|
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, votre adversaire doit échanger un de ses Pokémon Actifs contre un des Pokémon de son Banc.",
|
|
de: "Flip a coin. If heads, your opponent switches 1 of his or her Active Pokémon with 1 of his or her Benched Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|