import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Pawniard", }, illustrator: "Naoki Saito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 624, ], hp: 60, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Scratch", }, damage: 20, }, { cost: [ "Metal", "Metal", "Colorless", ], name: { en: "Metal Claw", }, damage: 40, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card