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: "gym1-83", localId: 83, // Card informations name: { en: "Lt. Surge's Spearow", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 21, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym1/83/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym1/83/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ 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: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Razor Wind", }, text: { en: "Flip a coin. If tails, this attack does nothing.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Gym Heroes", code: "gym1" } } export default card