import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Tynamo", fr: "Anchwatt", }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 602, ], hp: 30, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Wild River", fr: "Rivière Sauvage", }, effect: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon avec l’un de vos Pokémon de Banc.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card