mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
33 lines
687 B
TypeScript
33 lines
687 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Phantom Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Mystery Energy",
|
|
fr: "Énergie Mystère",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Uncommon",
|
|
category: "Energy",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Cette carte ne peut être attachée qu'à un Pokémon Psychic. Elle ne fournit de l'Énergie Psychic que pendant qu'elle est attachée à un Pokémon Psychic. Le Coût de Retraite du Pokémon auquel cette carte est attachée est diminué de ColorlessColorless. (Si cette carte est attachée à autre chose qu'un Pokémon Psychic, défaussez cette carte.)",
|
|
},
|
|
|
|
energyType: "Special",
|
|
}
|
|
|
|
export default card
|