import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Remoraid", fr: "Remoraid", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 223, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Rain Splash", fr: "Pluie éclaboussante", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Water Arrow", fr: "Flèche d’eau", }, effect: { en: "Choose 1 of your opponent’s Pokémon. This attack does 20 damage to that Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez l’un des Pokémon de votre adversaire. Cette attaque inflige 20 dégâts à ce Pokémon. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, description: { en: "It has superb accuracy. The water it shoots out can strike even moving prey from more than 300 feet." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card