mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 13:52:13 +00:00
33 lines
455 B
TypeScript
33 lines
455 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Draw Energy",
|
||
fr: "Énergie de Pioche",
|
||
},
|
||
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 à un Pokémon, piochez une carte.",
|
||
},
|
||
|
||
energyType: "Special",
|
||
}
|
||
|
||
export default card
|