mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
27 lines
449 B
TypeScript
27 lines
449 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Psychic Energy",
|
|
fr: "Énergie Psy",
|
|
es: "Energía Psíquica",
|
|
it: "Energia Psiche",
|
|
pt: "Energia Psíquica",
|
|
de: "Psycho-Energie"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Energy",
|
|
energyType: "Normal",
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |