import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Remoraid", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 223, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Sharpshooting", }, effect: { en: "Flip a coin. If heads, choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. Don't apply Weakness and Resistance.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card