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: "bw11-93", localId: 93, // Card informations name: { en: "Rayquaza", }, hp: 120, type: [ Type.DRAGON, ], dexId: 384, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/93/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/93/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Dragon Pulse", }, text: { en: "Discard the top 2 cards of your deck.", }, damage: 40 },{ cost: [ Type.FIRE, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Shred", }, text: { en: "This attack's damage isn't affected by any effects on the Defending Pokémon.", }, damage: 90 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card