import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "base1-22", localId: 22, // Card informations name: { en: "Pidgeotto", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 17, image: { low: { en: "https://assets.tcgdex.net/en/base/base1/22/low", }, high: { en: "https://assets.tcgdex.net/en/base/base1/22/high", }, }, evolveFrom: { en: "Pidgey", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Whirlwind", }, text: { en: "If your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mirror Move", }, text: { en: "If Pidgeotto was attacked last turn, do the final result of that attack on Pidgeotto to the Defending Pokémon.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Base", code: "base1" } } export default card