import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Scizor", }, illustrator: "Kimiya Masago", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 212, ], hp: 80, types: [ "Metal", ], evolveFrom: { en: "Scyther", }, stage: "Stage1", attacks: [ { cost: [ "Metal", ], name: { en: "False Swipe", }, effect: { en: "Does damage equal to half the Defending Pokémon's remaining HP (rounded down to the nearest 10).", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Double Claw", }, effect: { en: "Flip 2 coins. This attack does 20 times the number of heads.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card