import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/122/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/122/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/122/high.png", }, }, evolveFrom: { en: "Teddiursa", fr: "Teddiursa", }, tags: [ Tag.STAGE1, ], illustrator: { id: 4, name: "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