mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 03:59:54 +00:00
33 lines
541 B
TypeScript
33 lines
541 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Next Destinies'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Prism Energy",
|
|
fr: "Énergie Prisme",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Uncommon",
|
|
category: "Energy",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Cette carte fournit de l'Énergie Colorless. Si le Pokémon auquel cette carte est attachée est un Pokémon de base, cette carte fournit n'importe quel type d'Énergie mais ne fournit qu'une Énergie à la fois.",
|
|
},
|
|
|
|
energyType: "Special",
|
|
}
|
|
|
|
export default card
|