import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Togedemaru", fr: "Togedemaru", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 777, ], hp: 80, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Rollout", fr: "Roulade", }, damage: 20, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Electrosmash", fr: "Électro Impact", }, effect: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card