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: "bw2-31", localId: 31, // Card informations name: { en: "Beartic", fr: "Polagriffe", }, hp: 130, type: [ Type.WATER, ], dexId: 614, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/31/low", fr: "https://assets.tcgdex.net/fr/bw/bw2/31/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/31/high", fr: "https://assets.tcgdex.net/fr/bw/bw2/31/high", }, }, evolveFrom: { en: "Cubchoo", fr: "Polarhume", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.WATER ], name: { en: "Icy Wind", fr: "Vent Glace", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Superpower", fr: "Surpuissance", }, text: { en: "You may do 20 more damage. If you do, this Pokémon does 20 damage to itself.", fr: "Vous pouvez infliger 20 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 20 dégâts.", }, damage: 60 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card