1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

34 lines
497 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Generations'
const card: Card = {
name: {
en: "Energy Switch",
fr: "Échange d'Énergie",
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Déplacez une Énergie de base de l'un de vos Pokémon vers un autre de vos Pokémon.",
en: "Move a basic Energy from 1 of your Pokémon to another of your Pokémon."
},
trainerType: "Item",
}
export default card