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-122", localId: 122, // Card informations name: { en: "Ursaring", fr: "Ursaring", }, hp: 130, type: [ Type.COLORLESS, ], dexId: 217, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/122/low", fr: "https://assets.tcgdex.net/fr/xy/xy8/122/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/122/high", fr: "https://assets.tcgdex.net/fr/xy/xy8/122/high", }, }, evolveFrom: { en: "Teddiursa", fr: "Teddiursa", }, tags: [ Tag.STAGE1, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Drag Off", fr: "Traîne", }, text: { en: "Switch 1 of your opponent's Benched Pokémon with his or her Active Pokémon. This attack does 50 damage to the new Active Pokémon.", fr: "Échangez l'un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Cette attaque inflige 50 dégâts au nouveau Pokémon Actif.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Swing Around", fr: "Balançoire", }, text: { en: "Flip 2 coins. This attack does 40 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 40 dégâts supplémentaires pour chaque côté face.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card