mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
40 lines
547 B
TypeScript
40 lines
547 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",
|
|
evolveFrom: {
|
|
en: "Petilil"
|
|
},
|
|
|
|
|
|
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
|