1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

72 lines
848 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Lairon",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
305,
],
hp: 80,
types: [
"Metal",
],
evolveFrom: {
en: "Aron",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Mend",
},
effect: {
en: "Search your discard pile for a Metal Energy card and attach it to Lairon. If you do, remove 2 damage counters from Lairon.",
},
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Confront",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card