import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Scyther", }, illustrator: "Hajime Kusajima", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 123, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Twin Play", }, effect: { en: "Search your deck for up to 2 in any combination of Scyther and Scyther ex and put them onto your Bench. Shuffle your deck afterward.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Agility", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Scyther during your opponent's next turn.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card