import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Koga's Pidgey", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 16, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Sand-attack", }, effect: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card