import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Cramorant", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, attacks: [ { cost: [ "Water", ], name: { en: "Dive", }, effect: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to this Pokémon.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Hydro Pump", }, effect: { en: "This attack does 20 more damage for each Water Energy attached to this Pokémon.", }, damage: "50+", }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card