mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
35 lines
722 B
TypeScript
35 lines
722 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unleashed'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Pokémon Circulator",
|
||
fr: "Circulateur de Pokémon",
|
||
de: "Pokémon-Kreislauf"
|
||
},
|
||
|
||
illustrator: "Hideaki Hakozaki",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
fr: "Votre adversaire échange son Pokémon Actif avec l’un des Pokémon de son Banc.",
|
||
en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.",
|
||
de: "Der Gegner tauscht sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
|
||
},
|
||
|
||
trainerType: "Item",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
hp: 0
|
||
}
|
||
|
||
export default card
|