import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Joltik", fr: "Statitik", }, illustrator: "Ayaka Yoshida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 595, ], hp: 30, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Attach", fr: "Accrochage", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 0 } export default card