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: "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: { id: 60, name: "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