import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Lairon", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 305, ], hp: 80, types: [ "Metal", ], evolveFrom: { en: "Aron", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Iron Head", }, effect: { en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card