import { Card } from '../../../interfaces' import Set from '../XY trainer Kit (Wigglytuff)' const card: Card = { set: Set, name: { en: "Pidgeotto", fr: "Roucoups", es: "Pidgeotto", it: "Pidgeotto", pt: "Pidgeotto", de: "Tauboga" }, rarity: "Uncommon", category: "Pokemon", hp: 80, types: ["Colorless"], evolveFrom: { en: "Pidgey", fr: "Roucool", es: "Pidgey", it: "Pidgey", pt: "Pidgey", de: "Taubsi" }, stage: "Stage1", retreat: 1, weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-20" }] } export default card