1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

38 lines
530 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",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card