1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00

34 lines
476 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Lilligant"
},
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: "None"
}
export default card