mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
21 lines
364 B
TypeScript
21 lines
364 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../XY trainer Kit (Latios)'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
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",
|
|
energyType: "Normal"
|
|
}
|
|
|
|
export default card |