mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
534 B
TypeScript
24 lines
534 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unseen Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Energy Switch",
|
|
fr: "Échange d'Énergie",
|
|
de: "Energie-Umschalter"
|
|
},
|
|
|
|
illustrator: "Ken Ikuji",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Déplacez une carte Énergie de base attachée à 1 de vos Pokémon sur un autre de vos Pokémon.",
|
|
de: "Move a basic Energy card attached to 1 of your Pokémon to another of your Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|