import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Sharpedo", }, illustrator: "Ryuta Fuse", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 110, types: [ "Water", ], evolveFrom: { en: "Carvanha", }, attacks: [ { cost: [ "Water", ], name: { en: "Aqua Jet", }, effect: { en: "This attack also does 20 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card