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: "ex13-49", localId: 49, // Card informations name: { en: "Pidgeotto δ", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 17, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/49/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/49/high.png", }, }, evolveFrom: { en: "Pidgey", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Whirlwind", }, text: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card