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
521 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Water Energy",
fr: "Énergie Eau",
es: "Energía Agua",
it: "Energia Acqua",
pt: "Energia de Água",
de: "Wasser-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