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: "xy1-101", localId: 101, // Card informations name: { en: "Dunsparce", fr: "Insolourdo", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 206, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy1/101/low", fr: "https://assets.tcgdex.net/fr/xy/xy1/101/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy1/101/high", fr: "https://assets.tcgdex.net/fr/xy/xy1/101/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Naoyo Kimura", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Glare", fr: "Regard Médusant", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Second Bite", fr: "Double Morsure", }, text: { en: "This attack does 10 more damage for each damage counter on your opponent's Active Pokémon.", fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur le Pokémon Actif de votre adversaire.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "XY", code: "xy1" } } export default card