mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
512 B
TypeScript
23 lines
512 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Aquapolis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Energy Switch",
|
|
fr: "Échange d'énergie",
|
|
de: "Energie-Umschalter"
|
|
},
|
|
|
|
illustrator: "Mikio Menjo",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Prenez une carte Énergie de base attachée à l'un de vos Pokémon et attachez-la à un autre de vos Pokémon.",
|
|
de: "Move a basic Energy from 1 of your Pokémon to another of your Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|