import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Aron", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 304, ], hp: 50, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Dig Deep", }, effect: { en: "Search your discard pile for an Energy card, show it to your opponent, and put it into your hand.", }, }, { cost: [ "Metal", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card