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: "basep-33", localId: 33, // Card informations name: { en: "Scizor", }, hp: 70, type: [ Type.METAL, ], dexId: 212, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/33/low", }, high: { en: "https://assets.tcgdex.net/en/base/basep/33/high", }, }, evolveFrom: { en: "Scyther", }, tags: [ Tag.STAGE1, ], illustrator: "Hironobu Yoshida", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Leer", }, text: { en: "Flip a coin. If heads, the Defending Pokémon can't attack Scizor during your opponent's next turn. (Benching either Pokémon ends this effect.)", }, },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Metal Pincer", }, text: { en: "Flip a coin until you get tails. This attack does 30 damage plus 10 more damage for each heads.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Wizards Black Star Promos", code: "basep" } } export default card