1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

40 lines
596 B
TypeScript

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