import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Aron", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 304, ], hp: 50, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", "Colorless", ], name: { en: "Steel Headbutt", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card