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-7", localId: 7, // Card informations name: { en: "Lt. Surge's Fearow", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 22, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym1/7/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym1/7/high.png", }, }, evolveFrom: { en: "Spearow", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Repeating Drill", }, text: { en: "Flip 5 coins. This attack does 10 damage times the number of heads.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Clutch", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Gym Heroes", code: "gym1" } } export default card