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

36 lines
511 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Lilligant"
},
illustrator: "You Iribi",
category: "Pokemon",
hp: 100,
types: ["Grass"],
stage: "Stage1",
attacks: [{
cost: ["Grass", "Grass"],
name: {
en: "Leaf Supply"
},
effect: {
en: "Take a G Energy from your Energy Zone and attach it to 1 of your Benched G Pokémon."
},
damage: "50"
}],
retreat: 1,
rarity: "Two Diamond"
}
export default card