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: "smp-SM69", localId: "SM69", // Card informations name: { en: "Buzzwole-GX", }, hp: 190, type: [ Type.FIGHTING, ], dexId: 794, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM69/low", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM69/high", }, }, evolveFrom: {}, tags: [ Tag.GX, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Jet Punch", }, text: { en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING ], name: { en: "Knuckle Impact", }, text: { en: "This Pokémon can't attack during your next turn.", }, damage: 160 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING ], name: { en: "Absorption-GX", }, text: { en: "This attack does 40 damage for each of your remaining Prize cards. (You can't use more than 1 GX attack in a game.)", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card