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: "xy6-66", localId: 66, // Card informations name: { en: "Fearow", fr: "Rapasdepic", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 22, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/66/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/66/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/66/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/66/high.png", }, }, evolveFrom: { en: "Spearow", fr: "Piafabec", }, tags: [ Tag.STAGE1, ], illustrator: { id: 77, name: "Satoshi Shirai" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Peck", fr: "Picpic", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Drill Run", fr: "Tunnelier", }, text: { en: "Flip a coin. If heads, discard an Energy attached to your opponent's Active Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, damage: 70 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card