import { Card } from '../../../interfaces' import Set from '../Battle Styles' const card: Card = { set: Set, name: { en: "Corphish", fr: "Écrapince" }, illustrator: "chibi", rarity: "Common", category: "Pokemon", hp: 70, types: ["Water"], attacks: [{ name: { en: "Bubble Beam", fr: "Bulles d’O" }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé." }, damage: 30, cost: ["Water", "Colorless", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 2, regulationMark: "E" } export default card