import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Surskit", fr: "Arakdo" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 283, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Super Hypno Wave", fr: "Super hypnovague" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi." }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card