import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Tynamo", fr: "Anchwatt", }, illustrator: "Asako Ito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 602, ], hp: 40, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Aqua Shock", fr: "Choc Aquatique", }, effect: { en: "If your opponent's Active Pokémon has any Water Energy attached to it, this attack does 30 more damage.", fr: "Si de l’Énergie Water est attachée au Pokémon Actif de votre adversaire, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card