mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
21 lines
365 B
TypeScript
21 lines
365 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
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: "Ultra Rare",
|
|
category: "Energy",
|
|
energyType: "Normal"
|
|
}
|
|
|
|
export default card |