mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
31 lines
441 B
TypeScript
31 lines
441 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Chilling Reign'
|
|
|
|
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: "Secret Rare",
|
|
category: "Energy",
|
|
|
|
effect: {
|
|
en: "",
|
|
fr: "",
|
|
es: "",
|
|
it: "",
|
|
pt: "",
|
|
de: ""
|
|
},
|
|
|
|
energyType: "Special"
|
|
}
|
|
|
|
export default card |