import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Togepi δ", }, illustrator: "Miki Tanaka", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 175, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Charm", }, effect: { en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card