1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sword & Shield/Crown Zenith/155.ts
2023-02-06 16:47:30 +01:00

27 lines
453 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Crown Zenith"
const card: Card = {
set: Set,
name: {
en: "Lightning Energy",
fr: "Énergie Électrique",
es: "Energía Rayo",
it: "Energia Lampo",
pt: "Energia de Raios",
de: "Elektro-Energie"
},
rarity: "Ultra Rare",
category: "Energy",
energyType: "Normal",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card