import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Pidgeotto", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 17, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Pidgey", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Clutch", }, effect: { en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Cutting Wind", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card