import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pidgeotto δ", fr: "Roucoups δ ESPÈCES DELTA" }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 17, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Pidgey", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Whirlwind", fr: "Cyclone" }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc." }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card