1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

27 lines
445 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Crown Zenith"
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: "Ultra Rare",
category: "Energy",
energyType: "Normal",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card