import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "pl2-55", localId: 55, // Card informations name: { en: "Aerodactyl GL", fr: "Ptera Niv. 62", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 142, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl2/55/low", fr: "https://assets.tcgdex.net/fr/pl/pl2/55/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl2/55/high", fr: "https://assets.tcgdex.net/fr/pl/pl2/55/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Suwama Chiaki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Collect", fr: "Collectionner", }, text: { en: "Draw 2 cards.", fr: "Piochez 2 cartes.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Primal Breath", fr: "Haleine primale", }, text: { en: "Your opponent can't play any Pokémon from his or her hand to evolve or to Level-Up the Defending Pokémon during his or her next turn.", fr: "Votre adversaire ne peut pas jouer de Pokémon de sa main pour faire évoluer ou faire passer au Niveau Supérieur le Pokémon Défenseur lors de son prochain tour.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Rising Rivals", code: "pl2" } } export default card