import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Lillipup", fr: "Ponchiot", es: "Lillipup", it: "Lillipup", pt: "Lillipup", de: "Yorkleff" }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 506, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Take Down", }, effect: { en: "This Pokémon does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1 } export default card