mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
24 lines
700 B
TypeScript
24 lines
700 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Crystal Guardians'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Warp Point",
|
|
fr: "Point d'échange",
|
|
de: "Wurmloch"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Votre adversaire échange 1 de ses Pokémon Défenseurs avec 1 de ses Pokémon de Banc, s'il en a. Vous échangez 1 de vos Pokémon Actifs avec 1 de vos Pokémon de Banc, si vous en avez.",
|
|
de: "Dein Gegner tauscht 1 seiner Verteidigenden Pokémon gegen 1 Pokémon auf seiner Bank aus. Du tauschst 1 deiner Aktiven Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
|
}
|
|
}
|
|
|
|
export default card
|