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: "bw5-53", localId: 53, // Card informations name: { en: "Aerodactyl", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 142, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/53/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/53/high", }, }, evolveFrom: {}, tags: [ Tag.RESTORED, ], illustrator: "Naoyo Kimura", abilities: [{ id: 621, type: AbilityType.TALENT, name: { en: "Ancient Scream", }, text: { en: "Your Pokémon's attacks do 10 more damage to the Active Pokémon (before applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Wing Attack", }, damage: 40 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card