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: "xy8-99", localId: 99, // Card informations name: { en: "Granbull", fr: "Granbull", }, hp: 120, type: [ Type.FAIRY, ], dexId: 210, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/99/low", fr: "https://assets.tcgdex.net/fr/xy/xy8/99/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/99/high", fr: "https://assets.tcgdex.net/fr/xy/xy8/99/high", }, }, evolveFrom: { en: "Snubbull", fr: "Snubbull", }, tags: [ Tag.STAGE1, ], illustrator: "Naoki Saito", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Startling Bark", fr: "Aboiement Surprenant", }, text: { en: "Flip a coin. If heads, choose 3 random cards from your opponent's hand. Your opponent reveals those cards and shuffles them into his or her deck.", fr: "Lancez une pièce. Si c'est face, choisissez 3 cartes au hasard de la main de votre adversaire. Votre adversaire montre les cartes choisies et les mélange avec son deck.", }, },{ cost: [ Type.FAIRY, Type.COLORLESS, Type.COLORLESS ], name: { en: "Tantrum", fr: "Mauvaise Humeur", }, text: { en: "This Pokémon is now Confused.", fr: "Ce Pokémon est maintenant Confus.", }, damage: 120 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card