import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Oshawott", fr: "Moustillon", es: "Oshawott", it: "Oshawott", pt: "Oshawott", de: "Ottaro" }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 501, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Water Gun", fr: "Pistolet à O", es: "Pistola Agua", it: "Pistolacqua", pt: "Revolver d’Água", de: "Aquaknarre" }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card