import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Arrokuda", }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Water", ], name: { en: "Rain Splash", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card