import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Scyther", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 123, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Slash", }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Swift", }, effect: { en: "This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card