import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Lairon", }, illustrator: "Hajime Kusajima", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 305, ], hp: 80, types: [ "Metal", ], evolveFrom: { en: "Aron", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.", }, }, { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Metal Charge", }, effect: { en: "Put 1 damage counter on Lairon.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card