import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Pawniard" }, illustrator: "Kouki Saitou", category: "Pokemon", hp: 50, types: ["Metal"], stage: "Basic", attacks: [{ cost: ["Metal"], name: { en: "Pierce" }, damage: "30" }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "Pawniard will fearlessly challenge even powerful foes. In a pinch, it will cling to opponents and pierce them with the blades all over its body.", } } export default card