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