1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 23:09:18 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/162.ts
2021-05-26 20:35:35 +02:00

34 lines
503 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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