1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

69 lines
840 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Legend Maker'
const card: Card = {
name: {
en: "Lileep",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
345,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Root Fossil",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tender Tentacles",
},
effect: {
en: "If Lileep has any React Energy cards attached to it, remove 2 damage counters from Lileep.",
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Confuse Ray",
},
effect: {
en: "The Defending Pokémon is now Confused.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card