import { Card } from '../../../interfaces' import Set from '../Team Magma vs Team Aqua' const card: Card = { name: { en: "Team Magma's Lairon", }, illustrator: "Hiromichi Sugiyama", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 305, ], hp: 80, types: [ "Fighting", ], stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Body Slam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Tackle", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card