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: "ex2-37", localId: 37, // Card informations name: { en: "Fearow", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 22, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/37/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/37/high.png", }, }, evolveFrom: { en: "Spearow", }, tags: [ Tag.STAGE1, ], illustrator: { id: 43, name: "Aya Kusube" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Wing Attack", }, text: { en: "Does 20 damage to each Defending Pokémon.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rend", }, text: { en: "If the Defending Pokémon has any damage counters on it, this attack does 30 damage plus 20 more damage.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card