1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

22 lines
353 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Fighting Energy",
fr: "Énergie Combat",
es: "Energía Lucha",
it: "Energia Lotta",
pt: "Energia de Luta",
de: "Kampf-Energie"
},
rarity: "Common",
category: "Energy",
set: Set,
energyType: "Normal",
}
export default card