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

21 lines
345 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Fire Energy",
fr: "Énergie Feu",
es: "Energía Fuego",
it: "Energia Fuoco",
pt: "Energia de Fogo",
de: "Feuer-Energie"
},
rarity: "Common",
category: "Energy",
set: Set,
energyType: "Normal",
}
export default card