import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Scyther ex", }, illustrator: "Ryo Ueda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 123, ], hp: 80, types: [ "Grass", ], suffix: "EX", attacks: [ { cost: [ "Grass", ], name: { en: "Agility", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Scyther ex during your opponent's next turn.", }, damage: 10, }, { cost: [ "Grass", "Grass", "Colorless", ], name: { en: "Slash", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card