1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

31 lines
463 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",
energyType: "Normal",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
stage: "Basic"
}
export default card