import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Aron" }, illustrator: "Shigenori Negishi", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Metal"], description: { en: "It eats iron ore—and sometimes railroad tracks—\nto build up the steel armor that protects its body." }, stage: "Basic", attacks: [{ name: { en: "Headbutt" }, damage: 40, cost: ["Metal", "Colorless"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 2 } export default card