import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Scyther" }, illustrator: "Narumi Sato", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Grass"], description: { en: "It slashes through grass with its sharp\nscythes, moving too fast for the human\neye to track." }, stage: "Basic", attacks: [{ name: { en: "Slash" }, damage: 20, cost: ["Colorless"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card