import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Scyther", }, illustrator: "Shin-ichi Yoshida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 123, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Agility", }, effect: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Scyther.", }, damage: 10, }, { cost: [ "Grass", "Grass", "Grass", ], name: { en: "Sharp Sickle", }, damage: 40, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card