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

44 lines
634 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Lilligant"
},
illustrator: "Kagemaru Himeno",
rarity: "One Diamond",
category: "Pokemon",
hp: 110,
types: ["Grass"],
evolveFrom: {
en: "Petilil"
},
description: {
en: "The fragrance of the garland on its head has\na relaxing effect, but taking care of it is very\ndifficult."
},
stage: "Stage1",
attacks: [{
name: {
en: "Cut"
},
damage: 60,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card