import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Staryu", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 120, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Spinning Attack", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card