import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Goldeen", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 118, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Knock Away", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card