import { Card } from '../../../interfaces' import Set from '../Macdonald\'s Collection 2021' const card: Card = { name: { en: "Oshawott", fr: "Moustillon", }, illustrator: "Ken Sugimori", rarity: "None", category: "Pokemon", set: Set, dexId: [ 501, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Water Pulse", fr: "Vibraqua", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, description: { en: "It fights using the scalchop on its stomach. In response to an attack, it retaliates immediately by slashing." }, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card