1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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
476 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Combattimento",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "Secret Rare",
category: "Energy",
energyType: "Normal",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
stage: "Basic"
}
export default card