mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
21 lines
352 B
TypeScript
21 lines
352 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Evolutions'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Grass Energy",
|
|
fr: "Énergie Plante",
|
|
es: "Energía Planta",
|
|
it: "Energia Erba",
|
|
pt: "Energia de Grama",
|
|
de: "Pflanze-Energie"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Energy",
|
|
set: Set,
|
|
energyType: "Normal",
|
|
}
|
|
|
|
export default card
|