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: "base3-1", localId: 1, // Card informations name: { en: "Aerodactyl", }, hp: 60, type: [ Type.FIGHTING, ], dexId: 142, image: { low: { en: "https://assets.tcgdex.net/en/base/base3/1/low", }, high: { en: "https://assets.tcgdex.net/en/base/base3/1/high", }, }, evolveFrom: {}, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", abilities: [{ id: 671, type: AbilityType.POKEPOWER, name: { en: "Prehistoric Power", }, text: { en: "No more Evolution cards can be played. This power stops working while Aerodactyl is Asleep, Confused, or Paralyzed.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Wing Attack", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Fossil", code: "base3" } } export default card