import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Remoraid", fr: "Rémoraid", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 223, ], hp: 60, types: [ "Water", ], 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.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Water Gun", fr: "Pistolet à O", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card