import { Card } from '../../../interfaces' import Set from '../Battle Styles' const card: Card = { set: Set, name: { en: "Remoraid", fr: "Rémoraid" }, illustrator: "HYOGONOSUKE", rarity: "Common", category: "Pokemon", hp: 60, types: ["Water"], attacks: [{ name: { en: "Water Gun", fr: "Pistolet à O" }, damage: 10, cost: ["Water"] }, { name: { en: "Sharp Fin", fr: "Aileron Aiguisé" }, damage: 20, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "E" } export default card