mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
23 lines
498 B
TypeScript
23 lines
498 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unseen Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Warp Energy",
|
|
fr: "Énergie de distorsion",
|
|
de: "Warp Energy*"
|
|
},
|
|
|
|
illustrator: "Shin-ichi Yoshikawa",
|
|
rarity: "Uncommon",
|
|
category: "Energy",
|
|
set: Set,
|
|
energyType: "Special",
|
|
|
|
effect: {
|
|
de: "Warp Energy provides Energy. When you attach this card from your hand to your Active Pokémon, switch that Pokémon with 1 of your Benched Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|