import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Staryu", fr: "Stari", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 120, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Spinning Attack", fr: "Attaque tournante", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, description: { en: "At night, the center of its body slowly flickers with the same rhythm as a human heartbeat." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card