mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
33 lines
418 B
TypeScript
33 lines
418 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.",
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|