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: "xy6-60", localId: 60, // Card informations name: { en: "Rayquaza-EX", fr: "Rayquaza-EX", }, hp: 180, type: [ Type.DRAGON, ], dexId: 384, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/60/low", fr: "https://assets.tcgdex.net/fr/xy/xy6/60/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/60/high", fr: "https://assets.tcgdex.net/fr/xy/xy6/60/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "PLANETA", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Dragon Claw", fr: "Dracogriffe", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Dragon Strike", fr: "Frappe du Dragon", }, text: { en: "Flip a coin. If tails, this Pokémon can't use Dragon Strike during your next turn.", fr: "Lancez une pièce. Si c'est pile, ce Pokémon ne peut pas utiliser Frappe du Dragon pendant votre prochain tour.", }, damage: 130 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card