mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
* First batch Missing more informations like Attacks,etc but it will be added later Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some data Signed-off-by: Avior <florian.bouillon@delta-wings.net>
23 lines
331 B
TypeScript
23 lines
331 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Evolving Skies'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
},
|
|
|
|
name: {
|
|
en: "Lightning Energy"
|
|
},
|
|
|
|
rarity: "Secret Rare",
|
|
category: "Energy",
|
|
energyType: "Normal"
|
|
}
|
|
|
|
export default card |