import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Lileep δ", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 345, ], hp: 80, types: [ "Darkness", ], evolveFrom: { en: "Root Fossil", }, stage: "Stage1", attacks: [ { cost: [ "Darkness", ], name: { en: "Poison Tentacles", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Mud Shot", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card