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: "sm75-42", localId: 42, // Card informations name: { en: "Bagon", fr: "Draby", }, hp: 60, type: [ Type.DRAGON, ], dexId: 371, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm75/42/low", fr: "https://assets.tcgdex.net/fr/sm/sm75/42/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm75/42/high", fr: "https://assets.tcgdex.net/fr/sm/sm75/42/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Risky Kick", fr: "Coup de Pied Risqué", }, text: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 10 },{ cost: [ Type.FIRE, Type.WATER ], name: { en: "Dragon Eye", fr: "Œil de Dragon", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 20 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Dragon Majesty", code: "sm75" } } export default card