import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Pidgeot", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 18, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Pidgeotto", }, stage: "Stage2", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Wing Attack", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Hurricane", }, effect: { en: "Unless this attack Knocks Out the Defending Pokémon, return the Defending Pokémon and all cards attached to it to your opponent's hand.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card