import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Dark Scizor", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 212, ], hp: 70, types: [ "Metal", ], evolveFrom: { en: "Scyther", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Threaten", }, effect: { en: "Flip a coin. If heads, look at your opponent's hand. If he or she has any Trainer cards there, choose 1 of them. Your opponent shuffles that card into his or her deck.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Slash", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card