import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Togedemaru", }, illustrator: "Sanosuke Sakuma", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 777, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Nuzzle", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Rollout", }, damage: 50, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card