import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Dewott", }, illustrator: "Mizue", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 502, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Oshawott", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Aqua Tail", }, effect: { en: "Flip a coin for each Water Energy attached to this Pokémon. This attack does 10 more damage for each heads.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1 } export default card