mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 23:29:55 +00:00
33 lines
510 B
TypeScript
33 lines
510 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Crimson Invasion'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Warp Energy",
|
||
fr: "Énergie de Distorsion",
|
||
},
|
||
illustrator: undefined,
|
||
rarity: "Rare",
|
||
category: "Energy",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Cette carte fournit de l’Énergie Colorless. \n\nLorsque vous attachez cette carte de votre main à votre Pokémon Actif, échangez ce Pokémon avec l’un de vos Pokémon de Banc.",
|
||
},
|
||
|
||
energyType: "Special",
|
||
}
|
||
|
||
export default card
|